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

:root {
    --primary-orange: #ee3434;
    --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: 'Outfit', -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 */
/* ============================= */
h1, h2, h3 {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
}

.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: 350px;
    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: #f32d2d;
    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: inherit
}

.hero h1,
.hero-left h1 {
    font-size: 48px;
    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: #f32d2d;
    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;
}

.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: #0d0d0d;
    padding: 0;
}

.map-container {
    width: 100%;
    max-width: none;
    margin: 0;
    overflow: hidden;
    border-radius: 0;
}

.map-container iframe {
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
    vertical-align: bottom;
}

.location-wrapper {
    padding: 56px 0 72px;
    background: #1a1a1a;
}

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

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

.location-left {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.location-info h2 {
    font-size: clamp(26px, 4vw, 34px);
    font-weight: 700;
    margin: 0 0 12px;
    color: #ffffff;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.location-desc,
.location-info .location-desc {
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.65;
    max-width: 520px;
    font-size: 1rem;
}

.contact-info {
    margin: 0 0 28px;
}

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

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    font-size: 1.1rem;
    line-height: 1;
    flex-shrink: 0;
}

.contact-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: var(--primary-orange);
}

.location-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 0;
}

.location-buttons .cta-btn {
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.location-buttons .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(238, 52, 52, 0.35);
}

.location-buttons .secondary-btn {
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

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

.business-hours {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 32px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.hours-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #eee;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9375rem;
}

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

.hours-row span:first-child {
    font-weight: 600;
    color: var(--text-dark);
}

.hours-row span:last-child {
    color: var(--text-gray);
    font-weight: 500;
}

/* ============================= */
/* Reviews Section */
/* ============================= */
.reviews,
.google-reviews {
    padding: 80px 0;
    background-color: #ffffff;
}

.google-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.google-logo {
    height: 24px;
}

.rating-badge {
    font-weight: 700;
    font-size: 18px;
}

.stars {
    color: #FBBC04;
    font-size: 20px;
    letter-spacing: 2px;
}

.rating-text {
    color: #666;
    font-size: 16px;
}

.write-review-btn {
    background-color: #4285F4;
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.write-review-btn:hover {
    background-color: #357AE8;
}

.reviews-slider {
    position: relative;
    width: 100%;
}

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

.reviews-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;
    transition: transform 0.5s ease;
}

.review-card {
    flex: 0 0 calc(33.333% - 16px);
    max-width: calc(33.333% - 16px);
    background: #ffffff;
    padding: 24px;
    border-radius: 14px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.reviewer-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.reviewer-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
}

.reviewer-details h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 2px;
}

.review-date {
    font-size: 12px;
    color: #666;
}

.review-stars {
    color: #FBBC04;
    font-size: 16px;
    margin-bottom: 10px;
}

.review-text {
    font-size: 14px;
    line-height: 1.6;
    color: #1A1A1A;
}

.review-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.12);
    color: #333;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
}

.review-nav:hover {
    background: rgba(0, 0, 0, 0.25);
}

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

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

/* ============================= */
/* 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: #f32d2d;
    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: #f32d2d;
    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);
    }

    .location-info {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .business-hours {
        max-width: 420px;
        margin: 0 auto;
        width: 100%;
    }
}

/* ============================= */
/* 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: 52px;
        width: auto;
        max-height: 52px;
    }
    
    /* ============================= */
    /* 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: inline-flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        text-align: center;
        width: fit-content;
        min-height: 48px;
        padding: 14px 28px;
    }
    
    /* ============================= */
    /* 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 */
    /* ============================= */

    .reviews {
        padding: 60px 0;
    }

    /* Native swipe container */
    .reviews-viewport {
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
    }

    /* Track layout only (NO !important) */
    .reviews-track {
        display: flex;
        gap: 16px;
    }

    /* One card per view */
    .review-card {
        flex: 0 0 92%;
        max-width: 92%;
        scroll-snap-align: center;
    }

    /* Hide arrows on mobile */
    .review-nav {
        display: none;
    }

    /* Hide scrollbar */
    .reviews-viewport::-webkit-scrollbar {
        display: none;
    }


    /* ============================= */
    /* Location Section - Improved Mobile Layout */
    /* ============================= */
    .location-info {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .location-wrapper {
        padding: 40px 0 56px;
    }

    .location-inner {
        padding: 0 16px;
    }

    .business-hours {
        width: 100%;
        max-width: 100%;
        margin: 0;
        order: -1;
    }

    .location-left {
        max-width: 100%;
    }

    .location-info h2 {
        font-size: 24px;
    }

    .location-desc,
    .location-info .location-desc {
        max-width: 100%;
    }

    .map-container {
        border-radius: 0;
    }

    .map-container iframe {
        height: 260px;
    }

    .location-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .location-buttons .cta-btn,
    .location-buttons .secondary-btn {
        width: 100%;
        max-width: 100%;
        padding: 14px 24px;
        min-height: 48px;
        text-align: 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;
    }
}
