/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #FF6B35;
    --dark-black: #000000;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --text-dark: #1A1A1A;
    --text-gray: #666666;
    --whatsapp-green: #25D366;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Montserrat', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.3;
    overflow-x: hidden;
    background-color: #000000;
    padding-top: 72px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================= */
/* Header */
/* ============================= */
.header {
    background-color: var(--dark-black);
    padding: 10px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header .container {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-img {
    height: 250px;
    width: auto;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.whatsapp-icon {
    background-color: var(--whatsapp-green);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.whatsapp-icon:hover {
    transform: scale(1.1);
}

.whatsapp-icon img {
    width: 24px;
    height: 24px;
}

.call-btn {
    background-color: var(--primary-orange);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.call-btn:hover {
    background-color: #ff5520;
    transform: translateY(-2px);
}

.call-btn img {
    width: 20px;
    height: 20px;
}

/* ============================= */
/* Hero Section */
/* ============================= */
.hero {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.75),
        rgba(0, 0, 0, 0.35)
    );
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hero-content,
.hero-left {
    color: white;
    max-width: 640px;
    margin-top: 0px;
    margin-left: -500px;
    margin-bottom: 0;
    padding-top: 0;
    transform: translateY(-40px);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.hero h1,
.hero-left h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 14px;
    color: #ffffff;
}

.hero p,
.hero-left p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 24px;
    opacity: 0.95;
    color: rgba(255, 255, 255, 0.85);
}

.cta-btn,
.hero-left .cta-btn {
    background-color: var(--primary-orange);
    color: white;
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

.cta-btn:hover,
.hero-left .cta-btn:hover {
    background-color: #ff5520;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
}

/* ============================= */
/* Services Section */
/* ============================= */
.services {
    padding: 80px 0;
    background-color: var(--white);
}

.services h2,
.results h2,
.why-choose h2,
.faq h2,
.booking h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    align-items: stretch;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.service-content p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-gray);
}

.section-cta {
    text-align: center;
}

/* ============================= */
/* Results/Gallery Section */
/* ============================= */
.results {
    padding: 40px 0 80px;
    background-color: var(--light-gray);
}

.results h2 {
    margin-top: 0;
}

.gallery-slider {
    position: relative;
    overflow: hidden;
}

.gallery-track {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease;
}

.gallery-item {
    min-width: calc(33.333% - 16.7px);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background: rgba(0, 0, 0, 0.9);
}

.slider-btn.prev {
    left: 0;
}

.slider-btn.next {
    right: 0;
}

.pagination-text {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

/* ============================= */
/* Why Choose Section */
/* ============================= */
.why-choose {
    padding: 80px 0;
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 50px;
}

.feature-card {
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: #FFF3EF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon img {
    width: 45px;
    height: 45px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.feature-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-gray);
}

/* ============================= */
/* Location Section */
/* ============================= */
.location {
    background: #ffffff;
    padding: 0;
}

.map-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border: 0;
    display: block;
}

.location-wrapper {
    padding: 48px 0 64px;
}

.location-info {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 48px;
    align-items: start;
}

.location-info > div:first-child {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.location-info h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 8px;
}

.location-info > p {
    margin: 10px 0 16px;
    color: #666;
    line-height: 1.6;
    max-width: 520px;
}

.contact-info {
    margin: 20px 0 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    margin-bottom: 12px;
}

.contact-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
}

.contact-link:hover {
    text-decoration: none;
    color: var(--text-dark);
}

.location-buttons {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 24px;
}

.location-buttons .cta-btn {
    padding: 16px 40px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 600;
}

.location-buttons .secondary-btn {
    padding: 16px 40px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 600;
    background: transparent;
    color: var(--text-dark);
    border: 2px solid #000000;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.location-buttons .secondary-btn {
    background-color: #000000;
    color: #ffffff;
    transform: translateY(-2px);
}

.business-hours {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px 28px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row .day {
    font-weight: 600;
}

.hours-row .time {
    color: #666;
}

/* ============================= */
/* Reviews Section */
/* ============================= */
.reviews,
.google-reviews {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 50%, #f5f5f5 100%);
    position: relative;
    overflow: hidden;
}

.reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-orange), #ff5520, var(--primary-orange));
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.reviews::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.reviews-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.reviews-header-content {
    display: inline-block;
    background: var(--white);
    padding: 40px 60px;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.1);
    position: relative;
    overflow: hidden;
}

.reviews-header-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), #ff5520);
}

.google-branding {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.google-logo {
    height: 32px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.rating-display {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.rating-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
    background: linear-gradient(135deg, var(--primary-orange), #ff5520);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rating-display .stars {
    color: #FFB800;
    font-size: 24px;
    letter-spacing: 3px;
    filter: drop-shadow(0 2px 4px rgba(255, 184, 0, 0.4));
    line-height: 1;
}

.rating-label {
    font-weight: 700;
    font-size: 20px;
    color: var(--text-dark);
    letter-spacing: 0.5px;
}

.reviews-subtitle {
    font-size: 16px;
    color: var(--text-gray);
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.reviews-slider {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px; /* Space for navigation arrows */
}

@media (max-width: 768px) {
    .reviews-slider {
        padding: 0 50px;
    }
}

.reviews-viewport {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.reviews-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;
    transition: transform 0.5s ease;
    align-items: stretch;
    width: max-content;
}

.review-card {
    flex: 0 0 calc(33.333% - 16px);
    max-width: calc(33.333% - 16px);
    min-width: calc(33.333% - 16px);
    width: calc(33.333% - 16px);
    background: var(--white);
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 320px;
    height: auto;
    display: flex;
    flex-direction: column;
    border: 2px solid rgba(255, 107, 53, 0.08);
    align-items: stretch;
    flex-shrink: 0;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-orange), #ff5520);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left;
}

.review-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

@media (min-width: 769px) {
    .review-card {
        flex: 0 0 calc((100% - 48px) / 3);
        max-width: calc((100% - 48px) / 3);
        min-width: calc((100% - 48px) / 3);
        width: calc((100% - 48px) / 3);
    }
    
    .reviews-track {
        gap: 24px;
    }
}

.review-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 16px 48px rgba(255, 107, 53, 0.2), 0 4px 16px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 107, 53, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #fffaf8 100%);
}

.review-card:hover::before {
    transform: scaleX(1);
}

.review-card:hover::after {
    opacity: 1;
}

.reviewer-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    flex-shrink: 0;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.reviewer-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15), 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.reviewer-avatar::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary-orange), #ff5520);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.review-card:hover .reviewer-avatar {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3), 0 4px 12px rgba(0, 0, 0, 0.15);
}

.review-card:hover .reviewer-avatar::before {
    opacity: 1;
}

.reviewer-details {
    flex: 1;
    min-width: 0;
}

.reviewer-details h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
    line-height: 1.3;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.review-card:hover .reviewer-details h4 {
    color: var(--primary-orange);
}

.review-date {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.5;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

.review-stars {
    color: #FFB800;
    font-size: 18px;
    margin-bottom: 20px;
    letter-spacing: 3px;
    flex-shrink: 0;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(255, 184, 0, 0.4));
    transition: transform 0.3s ease;
}

.review-card:hover .review-stars {
    transform: scale(1.1);
}

.review-text {
    font-size: 15px;
    line-height: 1.8;
    color: #3c4043;
    flex-grow: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    min-height: 130px;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.2px;
    position: relative;
}

.review-card:hover .review-text {
    color: var(--text-dark);
}

.review-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid rgba(255, 107, 53, 0.2);
    background: var(--white);
    color: var(--primary-orange);
    font-size: 28px;
    font-weight: 300;
    cursor: pointer;
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    line-height: 1;
}

.review-nav:hover {
    background: linear-gradient(135deg, var(--primary-orange), #ff5520);
    color: var(--white);
    border-color: var(--primary-orange);
    box-shadow: 0 8px 28px rgba(255, 107, 53, 0.4), 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-50%) scale(1.15);
}

.review-nav:active {
    transform: translateY(-50%) scale(0.9);
}

.review-nav:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.review-nav.prev {
    left: 10px;
}

.review-nav.next {
    right: 10px;
}

@media (min-width: 769px) {
    .review-nav.prev {
        left: 0;
    }
    
    .review-nav.next {
        right: 0;
    }
}

/* ============================= */
/* FAQ Section */
/* ============================= */
.faq {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.faq h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 12px;
    padding: 12px 32px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.faq-item {
    border-bottom: 1px solid #E6E6E6;
    padding: 20px 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
    max-width: 90%;
}

.faq-icon {
    font-size: 22px;
    font-weight: 400;
    color: #000;
    transition: transform 0.2s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-top: 12px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* ============================= */
/* Booking Section */
/* ============================= */
.booking {
    padding: 80px 0;
    background-color: var(--white);
}

.booking-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    width: 100%;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.booking-form input,
.form-group select {
    width: 100%;
    padding: 18px 25px;
    border: 1px solid #D5D5D5;
    border-radius: 30px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group select {
    height: 58px;
    padding: 0 48px 0 22px;
    background-color: #ffffff;
    color: var(--text-dark);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23666' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 14px;
}

.booking-form input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15);
}

.form-group select option {
    font-size: 14px;
    padding: 12px;
}

.submit-btn {
    width: 100%;
    background-color: var(--primary-orange);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.submit-btn:hover {
    background-color: #ff5520;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
}

/* ============================= */
/* Footer */
/* ============================= */
.footer {
    background-color: #ffffff;
    padding: 28px 0 24px;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-text {
    color: rgba(0, 0, 0, 0.8);
    font-size: 14px;
    font-weight: 400;
}

.footer-credit {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.8);
}

.footer-credit span {
    color: var(--primary-orange);
    font-weight: 600;
}

.profitcast-link {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
}

/* ============================= */
/* Floating Action Buttons */
/* ============================= */
.floating-actions {
    position: fixed;
    bottom: 30px;
    width: 100%;
    pointer-events: none;
    z-index: 999;
}

.call-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    pointer-events: auto;
    background-color: var(--primary-orange);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    pointer-events: auto;
    background-color: var(--whatsapp-green);
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.float-btn:hover {
    transform: scale(1.1);
}

.float-btn svg {
    width: 28px;
    height: 28px;
}

/* ============================= */
/* Page Indicator */
/* ============================= */
.page-indicator {
    position: fixed;
    bottom: 30px;
    right: 50%;
    transform: translateX(50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    z-index: 998;
}

/* ============================= */
/* Responsive Design - Tablet */
/* ============================= */
@media (max-width: 1024px) {
    .services-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Review cards for tablet - 3 per view (same as desktop) */
    .review-card {
        flex: 0 0 calc(33.333% - 16px);
        max-width: calc(33.333% - 16px);
        min-width: calc(33.333% - 16px);
        min-height: 260px;
    }
    
    .review-text {
        -webkit-line-clamp: 7;
    }
    
    .location-info {
        grid-template-columns: 1fr;
    }
}

/* ============================= */
/* Responsive Design - Mobile */
/* ============================= */
@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }
    
    /* ============================= */
    /* Header - Logo Only on Mobile */
    /* ============================= */
    .header-actions {
        display: none !important; /* Hide WhatsApp and Call buttons */
    }
    
    .header .container {
        height: 64px;
        justify-content: center; /* Center the logo */
    }
    
    .logo-img {
        height: 300px !important; /* Use desktop logo size */
        width: auto;
    }
    
    /* ============================= */
    /* Hero Section */
    /* ============================= */
    .hero {
        min-height: 85vh;
        text-align: center;
    }
    
    .hero-content,
    .hero-left {
        margin: 0 auto;
        padding: 0 20px;
        max-width: 100%;
    }
    
    .hero h1,
    .hero-left h1 {
        font-size: 36px;
        line-height: 1.25;
        text-align: center;
    }
    
    .hero p,
    .hero-left p {
        font-size: 15px;
        text-align: center;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
        
    }
    
    .hero .cta-btn,
    .hero-left .cta-btn {
        display: block;
        margin: 0 auto;
        text-align: center;
        width: fit-content;
    }
    
    /* ============================= */
    /* Services Section */
    /* ============================= */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .service-content p {
        text-align: left;
    }
    
    /* Section subtitle alignment */
    .section-subtitle {
        text-align:center;
        padding: 0 20px;
    }
    
    /* ============================= */
    /* Gallery - Swipeable on Mobile */
    /* ============================= */
    .gallery-slider {
        overflow-x: auto; /* Enable horizontal scroll/swipe */
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch; /* Smooth iOS scrolling */
    }
    
    .gallery-track {
        gap: 16px;
    }
    
    .gallery-item {
        min-width: 85%; /* One image per swipe */
        scroll-snap-align: center;
    }
    
    .gallery-item img {
        height: 240px;
    }
    
    /* Hide desktop navigation arrows */
    .slider-btn {
        display: none;
    }
    
    /* Hide scrollbar for cleaner look */
    .gallery-slider::-webkit-scrollbar {
        display: none;
    }
    
    /* ============================= */
    /* Features Section */
    /* ============================= */
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    /* ============================= */
    /* Reviews Section */
    /* ============================= */
    .google-reviews,
    .reviews {
        padding: 40px 0;
    }
    
    .reviews-header {
        margin-bottom: 40px;
    }
    
    .reviews-header-content {
        padding: 28px 24px;
        border-radius: 20px;
    }
    
    .google-branding {
        gap: 16px;
        margin-bottom: 12px;
    }
    
    .google-logo {
        height: 26px;
        width: auto;
    }
    
    .rating-display {
        gap: 10px;
    }
    
    .rating-number {
        font-size: 28px;
    }
    
    .rating-display .stars {
        font-size: 20px;
        letter-spacing: 2px;
    }
    
    .rating-label {
        font-size: 16px;
    }
    
    .reviews-subtitle {
        font-size: 14px;
    }
    
    .review-card {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        min-width: 100% !important;
        width: 100% !important;
        min-height: 280px;
        padding: 24px;
        box-sizing: border-box;
        border-radius: 12px;
    }
    
    .review-text {
        -webkit-line-clamp: 8;
        min-height: auto;
        font-size: 14px;
    }
    
    .reviewer-header {
        margin-bottom: 14px;
        gap: 12px;
    }
    
    .reviewer-avatar {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }
    
    .reviewer-details h4 {
        font-size: 15px;
    }
    
    .review-date {
        font-size: 12px;
    }
    
    .review-stars {
        margin-bottom: 14px;
        font-size: 15px;
    }
    
    .reviews-slider {
        padding: 0 50px;
        max-width: 100%;
        width: 100%;
    }
    
    .reviews-viewport {
        width: 100%;
        overflow: hidden;
        -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
        touch-action: pan-x; /* Enable horizontal swipe */
    }
    
    .reviews-track {
        width: max-content;
        gap: 20px;
    }
    
    .review-nav.prev {
        left: 5px;
    }
    
    .review-nav.next {
        right: 5px;
    }
    
    .review-nav {
        width: 40px;
        height: 40px;
        font-size: 20px;
        z-index: 20; /* Ensure arrows are above cards */
    }
    
    /* ============================= */
    /* Location Section - Improved Mobile Layout */
    /* ============================= */
    .location-info {
        grid-template-columns: 1fr;
    }
    
    .business-hours {
       width: 88%; /* 🔥 reduce width */ 
      max-width: 360px; /* prevents too wide on large phones */
       margin: 0 auto; /* center the card */
       }
    /* Reduce text width and add breathing space */
    .location-info > div:first-child,
    .location-left {
        padding: 0 16px; /* Side spacing for better readability */
        max-width: 100%;
    }
    
    /* Ensure text doesn't touch edges */
    .location-info h2,
    .location-info > p,
    .location-info .contact-info,
    .location-left h2,
    .location-left p,
    .location-left .contact-info {
        max-width: 92%; /* Prevents text from touching screen edges */
    }
    
    /* Map container adjustments */
    .map-container {
        max-width: 95%;
        padding-right: 10px;
    }
    
    .map-container iframe {
        height: 250px;
    }
    
    /* Location buttons - centered and responsive */
    .location-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .location-buttons .cta-btn,
    .location-buttons .secondary-btn {
        width: 85%; /* Not full width for better appearance */
        max-width: 320px; /* Keeps buttons neat */
        margin: 0 auto;
        padding: 14px 20px;
         text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* ============================= */
    /* FAQ Section */
    /* ============================= */
    .faq {
        padding: 60px 20px;
    }
    
    .faq-container {
        padding: 10px 20px;
    }
    
    .faq-question h3 {
        font-size: 15px;
    }
    
    /* ============================= */
    /* Booking Section */
    /* ============================= */
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    /* ============================= */
    /* Footer */
    /* ============================= */
    .footer {
        padding: 24px 16px;
    }
    
    .footer-text,
    .footer-credit {
        font-size: 12px;
    }
    
    /* ============================= */
    /* Floating Action Buttons */
    /* ============================= */
    .floating-actions {
        left: 20px;
        bottom: 20px;
        right: 20px;
    }
    
    /* ============================= */
    /* Typography */
    /* ============================= */
    h2 {
        font-size: 28px !important;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
}

/* ============================= */
/* Responsive Design - Small Mobile */
/* ============================= */
@media (max-width: 480px) {
    .hero h1,
    .hero-left h1 {
        font-size: 28px;
    }
    
    .hero p,
    .hero-left p {
        font-size: 16px;
    }
    
    /* Reviews header for small mobile */
    .reviews-header-content {
        padding: 24px 20px;
        border-radius: 16px;
    }
    
    .google-branding {
        gap: 12px;
        margin-bottom: 10px;
    }
    
    .google-logo {
        height: 24px;
    }
    
    .rating-number {
        font-size: 24px;
    }
    
    .rating-display .stars {
        font-size: 18px;
        letter-spacing: 1.5px;
    }
    
    .rating-label {
        font-size: 14px;
    }
    
    .reviews-subtitle {
        font-size: 13px;
    }
    
    /* Review cards for small mobile */
    .review-card {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        min-width: 100% !important;
        width: 100% !important;
        min-height: 260px;
        padding: 20px;
        box-sizing: border-box;
        border-radius: 12px;
    }
    
    .reviewer-avatar {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
    
    .reviewer-details h4 {
        font-size: 14px;
    }
    
    .review-text {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .reviews-slider {
        padding: 0 45px;
        max-width: 100%;
        width: 100%;
    }
    
    .reviews-viewport {
        width: 100%;
        overflow: hidden;
    }
    
    .review-nav {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
    
    .reviews-track {
        gap: 16px;
    }
    
    .review-text {
        -webkit-line-clamp: 6;
        font-size: 13px;
    }
    
    .reviewer-header {
        gap: 10px;
        margin-bottom: 8px;
    }
    
    .reviewer-avatar {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .reviewer-details h4 {
        font-size: 14px;
    }
    
    .review-date {
        font-size: 11px;
    }
    
    .review-stars {
        font-size: 13px;
        margin-bottom: 8px;
    }
}
