/* Reset and Base Styles */
@font-face {
    font-family: 'Freight Sans';
    src: url('assets/fonts/FreightSansProBook-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Freight Sans';
    src: url('assets/fonts/FreightSansProMedium-Regular.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Freight Sans';
    src: url('assets/fonts/FreightSansProBold-Regular.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Utopia';
    src: url('assets/fonts/UtopiaStd-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Utopia';
    src: url('assets/fonts/UtopiaStd-Italic.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Utopia';
    src: url('assets/fonts/UtopiaStd-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #d4a574;
    --primary-dark: #b8935f;
    --primary-light: #e8d4b8;
    --secondary-color: #13501b;
    --secondary-dark: #0d3a12;
    --accent-color: #8b4513;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --text-lighter: #999;
    --bg-light: #f8f6f2;
    --bg-white: #ffffff;
    --bg-gradient: linear-gradient(135deg, #f8f6f2 0%, #ffffff 100%);
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --error-color: #dc3545;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 15px rgba(0,0,0,0.12);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.2);
    --gradient-primary: linear-gradient(135deg, #d4a574 0%, #b8935f 100%);
    --gradient-secondary: linear-gradient(135deg, #13501b 0%, #0d3a12 100%);
    --font-body: 'Freight Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Utopia', Georgia, 'Times New Roman', serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Account for fixed navbar when scrolling to hash links */
    -webkit-text-size-adjust: 100%; /* Prevent font scaling in iOS */
    font-size: 16px; /* Base font size */
    /* App-like feel */
    -webkit-tap-highlight-color: transparent;
    /* Let the document grow past the viewport so the page always scrolls (height: 100% alone can clip scroll on some viewports). */
    min-height: 100%;
    height: auto;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-width: 320px; /* Prevent horizontal scroll on small devices */
    /* App-like feel */
    -webkit-tap-highlight-color: transparent;
    touch-action: auto;
    overscroll-behavior-y: auto;
    min-height: 100%;
    height: auto;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    letter-spacing: -0.01em;
}

@media (max-width: 768px) {
    /* Override body fixed positioning for mobile app feel */
    body {
        position: relative;
        height: auto;
        min-height: 100vh;
        overflow-x: hidden;
        overflow-y: auto;
        /* Ensure mobile browsers allow native vertical scrolling gestures */
        touch-action: auto;
        overscroll-behavior-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    html {
        height: auto;
        overflow-x: hidden;
        overflow-y: auto;
    }
}

/* Prevent horizontal overflow */
* {
    box-sizing: border-box;
}

img, video, iframe, embed, object {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Prevent text overflow */
h1, h2, h3, h4, h5, h6, p, span, a, li {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Prevent table overflow */
table {
    width: 100%;
    table-layout: fixed;
    overflow-x: auto;
    display: block;
}

/* Prevent form overflow */
form, input, textarea, select {
    max-width: 100%;
}

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

/* Prevent container overflow */
.container * {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px); /* Safari support */
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100vw;
    border-bottom: 1px solid rgba(212, 165, 116, 0.1);
}

.navbar.scrolled {
    padding: 0.875rem 0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
    background: rgba(255, 255, 255, 0.99);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.nav-brand {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    flex-shrink: 0;
}

.nav-brand h1 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 0;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 0.7rem;
    color: var(--text-light);
    font-weight: 300;
    margin-top: -2px;
}

/* Navigation menu - visible on large screens by default */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: nowrap;
    flex-shrink: 1;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: inline-block;
    white-space: nowrap;
    cursor: pointer;
}

.nav-menu a:not(.btn-primary):not(.btn-secondary)::after {
    content: '';
    position: absolute;
    bottom: 0.375rem;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: calc(100% - 2rem);
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-menu a:not(.btn-primary):not(.btn-secondary):hover {
    color: var(--primary-color);
    background: rgba(212, 165, 116, 0.08);
    transform: translateY(-1px);
}

.nav-menu a:not(.btn-primary):not(.btn-secondary):hover::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-menu .btn-primary,
.nav-menu .btn-secondary {
    padding: 0.625rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    white-space: nowrap;
}

.nav-menu .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(212, 165, 116, 0.4);
}

.nav-menu .btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(44, 85, 48, 0.3);
}

/* Book Now button - make it pop with primary color */
.nav-menu .book-now-btn {
    background: var(--gradient-primary) !important;
    color: white !important;
    padding: 0.625rem 1.5rem !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.4) !important;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.nav-menu .book-now-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.nav-menu .book-now-btn:hover::before {
    left: 100%;
}

.nav-menu .book-now-btn:hover {
    transform: translateY(-2px) scale(1.05) !important;
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.6) !important;
    background: var(--gradient-primary) !important;
}

.nav-menu .book-now-btn:active {
    transform: translateY(0) scale(0.98) !important;
}

.nav-menu .book-now-btn::after {
    display: none !important;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
    display: block;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 100vh;
    overflow: hidden;
    margin-top: 80px;
    width: 100%;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.7));
    z-index: 1;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7), 0 0 20px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out;
    line-height: 1.2;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation for grid items */
.steps-grid .step-card:nth-child(1) { transition-delay: 0.1s; }
.steps-grid .step-card:nth-child(2) { transition-delay: 0.2s; }
.steps-grid .step-card:nth-child(3) { transition-delay: 0.3s; }
.steps-grid .step-card:nth-child(4) { transition-delay: 0.4s; }

.services-grid .service-card:nth-child(1) { transition-delay: 0.1s; }
.services-grid .service-card:nth-child(2) { transition-delay: 0.2s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.3s; }

.stats-grid .stat-card:nth-child(1) { transition-delay: 0.1s; }
.stats-grid .stat-card:nth-child(2) { transition-delay: 0.2s; }
.stats-grid .stat-card:nth-child(3) { transition-delay: 0.3s; }
.stats-grid .stat-card:nth-child(4) { transition-delay: 0.4s; }

.hero-subtitle {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease-out 0.2s both;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    padding: 0 1rem;
    animation: fadeInUp 1s ease-out 0.4s both;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.4);
    font-weight: 600;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.6);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}

@media (max-width: 768px) {
    .btn-primary:active,
    .btn-secondary:active,
    .btn:active {
        transform: scale(0.96);
        transition: transform 0.1s ease;
    }
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--text-dark);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Sections */
.section {
    padding: 3rem 0;
    scroll-margin-top: 80px; /* Account for fixed navbar when scrolling to hash links */
}

/* Ensure all sections with IDs have scroll margin */
section[id] {
    scroll-margin-top: 80px;
}

.section-title {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
    width: 100%;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1rem;
    line-height: 1.6;
}

/* How It Works */
.how-it-works {
    background: var(--bg-light);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    width: 100%;
}

@media (max-width: 400px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.step-card {
    background: transparent;
    padding: 2rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 2px solid transparent;
}

.step-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.step-card:hover::after {
    width: 60px;
}

.step-card:hover {
    transform: translateY(-4px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: transparent;
    color: var(--primary-color);
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover .step-number {
    transform: scale(1.05);
    background: var(--primary-color);
    color: white;
}

.step-card h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.transparency-box {
    background: transparent;
    padding: 2rem 0;
    margin-top: 2.5rem;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.transparency-box h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: white;
    font-weight: 600;
}

.transparency-intro {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}


.revenue-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    width: 100%;
}

@media (max-width: 400px) {
    .revenue-breakdown {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.revenue-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: transparent;
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 1px solid transparent;
}

.revenue-item:hover {
    transform: translateY(-2px);
    border-bottom-color: var(--primary-color);
}

.revenue-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.percentage {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.label {
    display: block;
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    width: 100%;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0;
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

.service-card {
    background: transparent;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 2px solid transparent;
}

.service-card.selectable-service {
    cursor: pointer;
    border: 3px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    background: #ffffff;
    padding: 0.75rem;
    overflow: hidden;
    margin: 0;
}

@media (min-width: 640px) {
    .service-card.selectable-service {
        padding: 1rem;
    }
}


.service-card.selectable-service:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    border-style: dashed;
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.2);
}

.service-card.selectable-service.selected {
    border-color: var(--primary-color);
    background: rgba(212, 165, 116, 0.05);
    box-shadow: 0 4px 16px rgba(212, 165, 116, 0.2);
}

.service-card.selectable-service.selected {
    background: rgba(212, 165, 116, 0.05);
    border-color: var(--primary-color);
    border-style: solid;
}

.service-selected-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: var(--primary-color);
    color: white;
    padding: 0.35rem 0.65rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 2;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

@media (min-width: 640px) {
    .service-selected-badge {
        top: 1rem;
        right: 1rem;
        padding: 0.4rem 0.75rem;
        font-size: 0.75rem;
    }
}

.service-card.selectable-service.selected .service-selected-badge {
    opacity: 1;
    transform: scale(1);
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.service-card:hover::after {
    width: 100%;
}

.service-card:hover {
    transform: translateY(-4px);
}

#completeSelectionBtn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: block;
    margin: 2rem auto 0;
    text-align: center;
}

#completeSelectionBtn:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.4);
}

#completeSelectionBtn:not(:disabled):active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    #completeSelectionBtn {
        width: 100%;
        max-width: 300px;
        margin: 2rem auto 0;
        display: block;
    }
}

@media (max-width: 480px) {
    #completeSelectionBtn {
        max-width: 280px;
        width: 100%;
    }
}

@media (max-width: 360px) {
    #completeSelectionBtn {
        max-width: 260px;
        width: 100%;
    }
}

.service-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    transition: transform 0.6s ease;
    position: relative;
    border-radius: 8px;
    z-index: 0;
}

@media (min-width: 640px) {
    .service-image {
        height: 220px;
    }
}

.service-content {
    padding: 0.75rem 0 0 0;
    position: relative;
    z-index: 1;
}

@media (min-width: 640px) {
    .service-content {
        padding: 1rem 0 0 0;
    }
}

.service-card:hover .service-image {
    transform: none;
}

.service-content {
    padding: 1.25rem 0;
}

.service-content h3 {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    font-size: 1.25rem;
}

.service-content p {
    margin-bottom: 0.75rem;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-content h3 {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.service-price {
    font-size: 1.25rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0.5rem 0 0.75rem 0;
    display: inline-block;
}

.service-click-hint {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 0.25rem;
    padding: 0.4rem 0.8rem;
    background: rgba(212, 165, 116, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(212, 165, 116, 0.3);
    transition: all 0.3s ease;
}

.service-card.selectable-service:hover .service-click-hint {
    background: rgba(212, 165, 116, 0.2);
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.service-card.selectable-service.selected .service-click-hint {
    display: none;
}

@media (min-width: 640px) {
    .service-click-hint {
        font-size: 0.8rem;
        padding: 0.45rem 0.9rem;
    }
}

.service-features {
    list-style: none;
    margin-top: 1rem;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

/* About Section */
.about {
    background: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    width: 100%;
}

@media (max-width: 400px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.about-image {
    width: 100%;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    display: block;
    transition: transform 0.6s;
}

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

.about-features {
    margin-top: 2rem;
}

.feature-item {
    margin-bottom: 1.5rem;
}

.feature-item strong {
    display: block;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

/* Statistics Section */
.stats-section {
    background: var(--gradient-secondary);
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.stats-section .section-title,
.stats-section .section-subtitle {
    color: white;
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.stat-card {
    background: transparent;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    display: block;
    opacity: 0.9;
}

.stat-number {
    font-size: 2.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* Gallery */
.gallery {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.gallery-see-more {
    text-align: center;
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.gallery-see-more button {
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .gallery-see-more {
        width: 100%;
        padding: 0 1rem;
    }

    .gallery-see-more button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .gallery-see-more button {
        max-width: 280px;
        width: 100%;
    }
}

@media (max-width: 360px) {
    .gallery-see-more button {
        max-width: 260px;
        width: 100%;
    }
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    width: 100%;
}

@media (max-width: 400px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: #f0f0f0;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.gallery-item::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 2.5rem;
    color: white;
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: block;
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

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

.gallery-item-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    z-index: 2;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.gallery-item:hover .gallery-item-title {
    transform: translateY(0);
}

/* Gallery Lightbox */
.gallery-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    cursor: pointer;
    animation: fadeIn 0.3s ease;
}

.gallery-lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    animation: zoomIn 0.3s ease;
}

.gallery-lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.gallery-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.gallery-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.gallery-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.gallery-lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.gallery-lightbox-prev {
    left: 20px;
}

.gallery-lightbox-next {
    right: 20px;
}

.gallery-lightbox-info {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 0.9375rem;
    z-index: 10001;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Booking Section */
.booking {
    background: linear-gradient(135deg, var(--bg-light) 0%, rgba(212, 165, 116, 0.05) 100%);
    padding: 3rem 0;
}

.booking-container {
    max-width: 600px;
    margin: 0 auto;
}

.booking-form {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(44, 85, 48, 0.08);
    border: 2px solid rgba(212, 165, 116, 0.2);
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.booking-form:hover {
    box-shadow: 0 6px 25px rgba(44, 85, 48, 0.12);
    border-color: rgba(212, 165, 116, 0.3);
}

.form-label-main {
    display: block;
    margin-bottom: 1rem;
    font-weight: 500;
    color: #1a1a1a;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group {
    margin-bottom: 1rem;
    position: relative;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 0.8rem;
    text-transform: none;
    letter-spacing: 0.3px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="number"] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid rgba(212, 165, 116, 0.3);
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--bg-white);
    max-width: 100%;
    box-sizing: border-box;
    color: var(--text-dark);
    font-weight: 400;
    height: 2.75rem;
}

textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid rgba(212, 165, 116, 0.3);
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--bg-white);
    resize: vertical;
    min-height: 80px;
    max-width: 100%;
    box-sizing: border-box;
    color: var(--text-dark);
    font-weight: 400;
}

input[type="text"]:hover,
input[type="email"]:hover,
input[type="tel"]:hover,
input[type="date"]:hover,
input[type="number"]:hover,
textarea:hover {
    border-color: var(--primary-color);
    background: rgba(212, 165, 116, 0.02);
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(212, 165, 116, 0.03);
    box-shadow: 0 0 0 4px rgba(212, 165, 116, 0.15);
}

input::placeholder,
textarea::placeholder {
    color: #999;
}

.services-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}


.booking-summary {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.08) 0%, rgba(212, 165, 116, 0.03) 100%);
    padding: 1.25rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    border: 2px solid rgba(212, 165, 116, 0.2);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.summary-row.total {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid rgba(212, 165, 116, 0.3);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.booking-info {
    background: rgba(212, 165, 116, 0.05);
    padding: 1.75rem;
    border-radius: 12px;
    border: 2px solid rgba(212, 165, 116, 0.15);
    margin-bottom: 0;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.booking-info h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-size: 1.25rem;
}

.booking-info p {
    color: var(--text-dark);
    line-height: 1.7;
}

.booking-info ol {
    margin-left: 1.5rem;
    margin-bottom: 2rem;
}

.booking-info li {
    margin-bottom: 0.5rem;
}

.booking-intro {
    max-width: 800px;
    margin: 0 auto 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.demo-disabled-note {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0.9rem 1rem;
    border-radius: 14px;
    border: 1px solid rgba(212, 165, 116, 0.35);
    border-left: 4px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.2) 0%, rgba(212, 165, 116, 0.08) 100%);
    color: var(--secondary-color);
    font-weight: 600;
    text-align: center;
    line-height: 1.45;
    min-height: 56px;
    box-shadow: 0 6px 18px rgba(44, 85, 48, 0.08);
}

.info-box {
    background: transparent;
    padding: 1.5rem 0;
    margin-top: 1.5rem;
    border-left: 3px solid var(--primary-color);
    padding-left: 1.5rem;
}

.info-box h4 {
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

.info-box ul {
    list-style: none;
    margin-left: 0;
}

.info-box li {
    padding: 0.25rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.info-box li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* Payment Method Selection */
.payment-method-section {
    margin: 1.5rem 0;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

@media (max-width: 900px) {
    .payment-methods {
        grid-template-columns: repeat(2, 1fr);
    }
}

.payment-method-option {
    position: relative;
    cursor: pointer;
}

.payment-method-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.payment-method-card {
    background: var(--bg-white);
    border: 2px solid rgba(212, 165, 116, 0.3);
    border-radius: 12px;
    padding: 1rem 0.75rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.payment-method-option:hover .payment-method-card {
    border-color: var(--primary-color);
    background: rgba(212, 165, 116, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.15);
}

.payment-method-option input[type="radio"]:checked + .payment-method-card {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.15) 0%, rgba(212, 165, 116, 0.08) 100%);
    box-shadow: 0 4px 16px rgba(212, 165, 116, 0.2);
}

.payment-icon {
    font-size: 1.75rem;
    margin-bottom: 0.4rem;
}

.payment-name {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.3rem;
    font-size: 0.85rem;
}

.payment-desc {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* Payment Info Boxes */
.payment-info-box {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, rgba(212, 165, 116, 0.05) 100%);
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    border-left: 4px solid var(--primary-color);
}

.payment-info-box p {
    margin: 0;
    color: var(--text-dark);
    font-size: 0.95rem;
}

/* Card Payment Form */
.payment-form-section {
    background: rgba(212, 165, 116, 0.03);
    padding: 1.75rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    border: 2px solid rgba(212, 165, 116, 0.2);
}

.card-brands {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.card-brand {
    padding: 0.5rem 1rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
}

.card-brand.visa {
    color: #1434CB;
    border-color: #1434CB;
}

.card-brand.mastercard {
    color: #EB001B;
    border-color: #EB001B;
}

.card-brand.amex {
    color: #006FCF;
    border-color: #006FCF;
}

/* PayPal Preview */
.paypal-button-preview {
    margin-top: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    text-align: center;
}

.paypal-logo {
    color: #0070ba;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 1px;
}

/* Enhanced Submit Button */
.btn-submit {
    width: 100%;
    margin-top: 2rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    text-transform: none;
    letter-spacing: 0.3px;
    background: var(--gradient-primary);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
    background: var(--gradient-primary);
}

.btn-loader {
    display: none;
}

.btn-submit.loading .btn-text {
    display: none;
}

.btn-submit.loading .btn-loader {
    display: inline-block;
}

.booking-demo-disabled-button,
.booking-demo-disabled-button:hover {
    opacity: 1;
    cursor: pointer;
    transform: none;
    background: linear-gradient(135deg, #8c8c8c 0%, #6f6f6f 100%);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.booking-form-demo {
    border-color: rgba(212, 165, 116, 0.35);
    box-shadow: 0 8px 28px rgba(44, 85, 48, 0.12);
}

.booking-form-demo::after {
    content: "Demo Preview";
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(44, 85, 48, 0.1);
    color: var(--secondary-color);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.3rem 0.55rem;
    border-radius: 999px;
    border: 1px solid rgba(44, 85, 48, 0.2);
}

.booking-form-demo .btn-submit .btn-loader {
    display: none !important;
}

/* Enhanced Form Styling */
.booking-form .form-group label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.625rem;
    display: block;
    font-size: 0.95rem;
}

.services-checkboxes {
    background: #f9fafb;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.checkbox-label {
    background: var(--bg-white);
    border: 2px solid rgba(212, 165, 116, 0.3);
    border-radius: 10px;
    padding: 0.875rem 1rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
    transform: scale(1);
}

.checkbox-label:hover {
    background: rgba(212, 165, 116, 0.05);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.2);
}

.checkbox-label.selecting {
    animation: selectPulse 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes selectPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1.02); }
}

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: translateY(0) scale(0); }
    50% { opacity: 1; transform: translateY(-20px) scale(1); }
}

@keyframes selectPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.01); }
    100% { transform: scale(1); }
}

.sparkle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    pointer-events: none;
    animation: sparkle 0.8s ease-out forwards;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-color);
    flex-shrink: 0;
    margin: 0;
}

.checkbox-label input[type="checkbox"]:checked + span {
    color: #1a1a1a;
    font-weight: 500;
}

.checkbox-label:has(input[type="checkbox"]:checked),
.checkbox-label.checked {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.15) 0%, rgba(212, 165, 116, 0.08) 100%);
    border-color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(212, 165, 116, 0.2);
}

.checkbox-label span {
    flex: 1;
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-dark);
    font-weight: 500;
}

/* Service selection cards (booking only) */
.services-checkboxes {
    background: transparent;
    padding: 0;
    border: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.7rem;
}

.services-checkboxes .checkbox-label {
    border: 1px solid rgba(44, 85, 48, 0.16);
    border-radius: 12px;
    padding: 0.95rem 1rem;
    background: #fff;
    box-shadow: 0 2px 10px rgba(44, 85, 48, 0.06);
    align-items: flex-start;
    gap: 0.85rem;
}

.services-checkboxes .checkbox-label:hover {
    border-color: rgba(212, 165, 116, 0.75);
    background: #fffdf9;
    box-shadow: 0 6px 18px rgba(212, 165, 116, 0.18);
}

.services-checkboxes .checkbox-label input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    margin-top: 0.1rem;
    width: 22px;
    height: 22px;
    border: 2px solid rgba(44, 85, 48, 0.35);
    border-radius: 6px;
    background: #fff;
    display: grid;
    place-content: center;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.services-checkboxes .checkbox-label input[type="checkbox"]::before {
    content: "";
    width: 11px;
    height: 11px;
    transform: scale(0);
    transform-origin: center;
    transition: transform 0.15s ease-in-out;
    clip-path: polygon(14% 44%, 0 60%, 44% 100%, 100% 24%, 84% 10%, 43% 62%);
    background: var(--secondary-color);
}

.services-checkboxes .checkbox-label input[type="checkbox"]:hover {
    border-color: var(--primary-color);
}

.services-checkboxes .checkbox-label input[type="checkbox"]:checked {
    border-color: var(--primary-color);
    background: rgba(212, 165, 116, 0.15);
}

.services-checkboxes .checkbox-label input[type="checkbox"]:checked::before {
    transform: scale(1);
}

.services-checkboxes .checkbox-label input[type="checkbox"]:focus-visible {
    outline: 2px solid rgba(212, 165, 116, 0.45);
    outline-offset: 2px;
}

.services-checkboxes .checkbox-label span {
    font-size: 0.92rem;
    line-height: 1.45;
}

.services-options-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
}

.services-options-grid .checkbox-label {
    display: grid;
    grid-template-columns: 24px 1fr;
    align-items: center;
    column-gap: 0.9rem;
    padding: 1rem 1rem;
}

.services-options-grid .checkbox-label > span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.9rem;
}

.services-options-grid .service-option-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--secondary-color);
    line-height: 1.35;
}

.services-options-grid .service-option-price {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--secondary-color);
    background: rgba(44, 85, 48, 0.08);
    border: 1px solid rgba(44, 85, 48, 0.18);
    border-radius: 999px;
    padding: 0.3rem 0.55rem;
    white-space: nowrap;
}

.services-checkboxes .checkbox-label:has(input[type="checkbox"]:checked),
.services-checkboxes .checkbox-label.checked {
    border-color: var(--primary-color);
    border-left-width: 4px;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.16) 0%, rgba(212, 165, 116, 0.06) 100%);
    box-shadow: 0 8px 18px rgba(212, 165, 116, 0.18);
}

@media (max-width: 768px) {
    .services-checkboxes .checkbox-label {
        padding: 0.85rem 0.9rem;
    }

    .services-options-grid .checkbox-label > span {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.45rem;
    }
}

/* Enhanced Terms Checkbox */
.checkbox-label a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Section Dividers */
.booking-form .form-group:not(:last-child) {
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
}

.payment-method-section {
    border-bottom: none !important;
    padding-bottom: 0 !important;
}

/* Responsive text sizing */
@media (max-width: 480px) {
    .booking-form .form-group:not(:last-child) {
        padding-bottom: 1.25rem;
        margin-bottom: 1.25rem;
    }
}

/* Card Input Styling */
#cardNumber,
#cardExpiry,
#cardCVC,
#cardName {
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
}

#cardNumber {
    font-size: 1.1rem;
}

#cardExpiry,
#cardCVC {
    text-align: center;
    font-weight: 600;
}

/* Marketplace Section */
.marketplace {
    background: var(--bg-light);
}

.marketplace-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #e5e7eb;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    color: #6b7280;
    transition: all 0.3s;
    margin-bottom: -2px;
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-btn:hover {
    color: var(--secondary-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.product-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    width: 100%;
}

.product-content {
    padding: 1.5rem;
}

.product-content h3 {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
}

/* Reviews Section */
.reviews {
    background: white;
}

.reviews-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.reviews-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review-card {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.reviewer-name {
    font-weight: 600;
    color: var(--secondary-color);
}

.review-rating {
    color: #fbbf24;
    font-size: 1rem;
}

.review-date {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.75rem;
}

.review-text {
    color: #4b5563;
    line-height: 1.6;
}

.review-form-section {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.review-form-section h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.review-form .form-group {
    margin-bottom: 1.5rem;
}

.review-form select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    background: white;
}

.review-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

@media (max-width: 768px) {
    .reviews-container {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .marketplace-tabs {
        flex-wrap: wrap;
    }
}

/* Footer */
.footer {
    background: var(--gradient-secondary);
    color: white;
    padding: 4rem 0 1.5rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><path d="M30 0l5 20-5 20-5-20z" fill="rgba(255,255,255,0.03)"/></svg>');
    opacity: 0.5;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    width: 100%;
}

@media (max-width: 400px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.footer-section {
    position: relative;
    z-index: 1;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--primary-light);
    font-weight: 600;
}

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
    line-height: 1.8;
    color: white;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    opacity: 0.9;
}

.footer-section a:hover {
    color: var(--primary-light);
    padding-left: 5px;
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    opacity: 0.8;
    position: relative;
    z-index: 1;
    margin-top: 2rem;
}

.footer-bottom p {
    color: white;
}

/* Marketplace footer - ensure all text is white except headings */
.marketplace-footer .footer-section p,
.marketplace-footer .footer-section a {
    color: white !important;
}

.marketplace-footer .footer-bottom p {
    color: white !important;
}

/* Modal */
.modal {
    display: none !important;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    animation: fadeIn 0.3s;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.modal.show,
.modal[style*="display: block"] {
    display: block !important;
}

@media (max-width: 768px) {
    .modal {
        background-color: rgba(0,0,0,0.6);
        padding: 0;
        display: flex;
        align-items: flex-end;
        justify-content: center;
    }

    .modal.show {
        display: flex;
    }
}

.modal-content {
    background: white;
    margin: 10% auto;
    padding: 2rem;
    border-radius: 10px;
    max-width: 600px;
    width: 90%;
    position: relative;
    animation: slideDown 0.3s;
    overflow-y: auto;
    max-height: 90vh;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .modal-content {
        margin: 0;
        width: 100%;
        max-width: 100%;
        border-radius: 20px 20px 0 0;
        max-height: 90vh;
        overflow-y: auto;
        animation: slideUpMobile 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        padding-bottom: calc(2rem + env(safe-area-inset-bottom, 0px));
        box-shadow: 0 -10px 40px rgba(0,0,0,0.2);
    }

    @keyframes slideUpMobile {
        from {
            transform: translateY(100%);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }
}

.modal-close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-light);
}

.modal-close:hover {
    color: var(--text-dark);
}

.booking-code {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 5px;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    color: var(--primary-color);
    margin: 1rem 0;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Design - Payment Methods */
@media (max-width: 768px) {
    .payment-methods {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .payment-method-card {
        padding: 1.25rem;
    }

    .payment-icon {
        font-size: 2rem;
    }
}

/* Large Tablets and Small Desktops */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.25rem;
    }

    .gallery-lightbox-content {
        max-width: 95%;
    }

    .gallery-lightbox-close,
    .gallery-lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .gallery-lightbox-close {
        top: 10px;
        right: 10px;
    }

    .gallery-lightbox-nav {
        width: 40px;
        height: 40px;
    }

    .gallery-lightbox-prev {
        left: 10px;
    }

    .gallery-lightbox-next {
        right: 10px;
    }

    .gallery-lightbox-info {
        bottom: 10px;
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }

    .payment-methods {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }

    .payment-method-card {
        padding: 1.25rem 0.75rem;
    }

    .payment-icon {
        font-size: 2rem;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    /* Mobile navigation - hamburger menu */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        display: none;
        z-index: 999;
        animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(212, 165, 116, 0.1);
        font-size: 1rem;
        transition: all 0.2s ease;
        width: 100%;
    }

    .nav-menu a:active {
        background: rgba(212, 165, 116, 0.1);
        transform: translateX(4px);
    }

    .nav-menu .book-now-btn {
        background: var(--gradient-primary) !important;
        color: white !important;
        box-shadow: 0 4px 12px rgba(212, 165, 116, 0.4) !important;
        margin: 0.5rem 0 !important;
        border-radius: 8px !important;
    }

    .nav-menu .book-now-btn:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 6px 20px rgba(212, 165, 116, 0.6) !important;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    /* Navigation menu items are hidden on mobile, shown via hamburger toggle */

    /* Hero Section */
    .hero {
        min-height: calc(100vh - 70px);
        min-height: calc(100vh - 70px - env(safe-area-inset-top, 0px));
        margin-top: 70px;
        margin-bottom: 0;
        width: 100%;
    }

    .hero-title {
        font-size: 2.5rem;
        padding: 0 1rem;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 1rem;
        align-items: center;
        justify-content: center;
        display: flex;
        margin: 0 auto;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin: 0.5rem auto;
        display: block;
        text-align: center;
    }

    /* Sections */
    .section {
        padding: 2.5rem 0;
        scroll-margin-top: 80px; /* Account for fixed navbar */
    }

    .section-title {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    /* Steps Grid */
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .step-card {
        padding: 1.5rem;
    }

    /* Revenue Breakdown */
    .revenue-breakdown {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-image {
        height: 200px;
    }

    /* About */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 0.75rem;
    }

    /* Booking */
    .booking-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .booking-form {
        padding: 1.5rem;
    }

    .payment-methods {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .payment-method-card {
        padding: 1.25rem;
    }

    .payment-icon {
        font-size: 2rem;
    }

    .payment-form-section {
        padding: 1.25rem;
    }

    .card-brands {
        flex-wrap: wrap;
        justify-content: center;
    }

    .card-brand {
        font-size: 0.75rem;
        padding: 0.4rem 0.75rem;
    }

    .booking-info {
        padding: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* Modal */
    .modal-content {
        margin: 15% auto;
        padding: 1.5rem;
        max-width: 90%;
    }
}

/* Large Mobile Devices */
@media (max-width: 600px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        align-items: center;
        justify-content: center;
        margin: 0 auto;
    }

    .hero-buttons .btn {
        margin: 0.5rem auto;
        max-width: 280px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .revenue-breakdown {
        grid-template-columns: repeat(2, 1fr);
    }

    .transparency-box {
        padding: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    /* Navigation */
    .nav-brand h1 {
        font-size: 1.25rem;
    }

    .tagline {
        font-size: 0.65rem;
    }

    /* Hero */
    .hero {
        min-height: 400px;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .hero-buttons {
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        padding: 0 0.75rem;
    }

    .hero-buttons .btn {
        margin: 0.5rem auto;
        max-width: 260px;
        width: 100%;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    /* Sections */
    .section {
        padding: 2.5rem 0;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    /* Steps */
    .step-card {
        padding: 1.25rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    /* Revenue */
    .revenue-breakdown {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .revenue-item {
        padding: 0.75rem;
    }

    .percentage {
        font-size: 1.5rem;
    }

    /* Services */
    .service-image {
        height: 180px;
    }

    .service-content {
        padding: 1.25rem;
    }

    .service-price {
        font-size: 1.1rem;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    /* Booking Form */
    .booking-form {
        padding: 1.25rem;
    }

    .booking-form::before {
        height: 3px;
    }

    .form-group {
        margin-bottom: 1.25rem;
    }

    .form-label-main {
        font-size: 1rem;
    }

    .payment-method-section {
        margin: 1.5rem 0;
    }

    .payment-info-box {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .paypal-button-preview {
        padding: 0.75rem;
    }

    .paypal-logo {
        font-size: 1.1rem;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="date"],
    input[type="number"],
    textarea {
        padding: 0.875rem;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .services-checkboxes {
        gap: 0.5rem;
        padding: 0.75rem;
    }

    .checkbox-label {
        padding: 0.75rem;
        font-size: 0.9rem;
        min-height: 44px;
    }

    .checkbox-label input[type="checkbox"] {
        width: 18px;
        height: 18px;
        margin-right: 0.5rem;
    }

    .checkbox-label span {
        line-height: 1.4;
    }

    .booking-summary {
        padding: 1.25rem;
    }

    .summary-row.total {
        font-size: 1.1rem;
    }

    .booking-info {
        padding: 1.25rem;
    }

    .info-box {
        padding: 1.25rem;
    }

    /* About */
    .about-features {
        margin-top: 1.5rem;
    }

    .feature-item {
        margin-bottom: 1.25rem;
    }

    /* Footer */
    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-section {
        margin-bottom: 1.5rem;
    }

    .footer-section h3,
    .footer-section h4 {
        font-size: 1rem;
    }

    /* Modal */
    .modal-content {
        margin: 5% auto;
        padding: 1.25rem;
        max-width: 95%;
    }

    .modal-content h2 {
        font-size: 1.25rem;
    }

    .booking-code {
        font-size: 1.25rem;
        padding: 0.875rem;
        word-break: break-all;
    }

    /* Payment method cards on small screens */
    .payment-method-card {
        padding: 1rem 0.75rem;
    }

    .payment-name {
        font-size: 0.95rem;
    }

    .payment-desc {
        font-size: 0.8rem;
    }

    /* Card form inputs */
    #cardNumber,
    #cardExpiry,
    #cardCVC,
    #cardName {
        font-size: 16px; /* Prevent zoom on iOS */
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }

    .hero-title {
        font-size: 1.5rem;
        padding: 0 0.5rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        padding: 0 0.5rem;
    }

    .hero-buttons {
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        padding: 0 0.5rem;
    }

    .hero-buttons .btn {
        margin: 0.5rem auto;
        max-width: 240px;
        width: 100%;
    }

    .section-title {
        font-size: 1.35rem;
        padding: 0 0.5rem;
    }

    .section-subtitle {
        font-size: 0.85rem;
        padding: 0 0.5rem;
    }

    .btn {
        padding: 0.625rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
    }

    .btn-large {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }

    .booking-form {
        padding: 1rem;
    }

    .payment-method-card {
        padding: 0.875rem 0.5rem;
    }

    .payment-icon {
        font-size: 1.75rem;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .step-card {
        padding: 1rem;
    }
}

/* Landscape Orientation on Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        margin-top: 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .navbar {
        padding: 0.75rem 0;
    }

    .section {
        padding: 2rem 0;
    }
}

/* Large screens - Navigation handled inline in index.html */

@media (min-width: 1024px) {
    /* Keep hamburger menu on all screen sizes */
    .nav-menu {
        gap: 0.75rem;
    }

    .nav-menu a:not(.btn-primary):not(.btn-secondary) {
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
    }

    .nav-menu .btn-primary,
    .nav-menu .btn-secondary {
        padding: 0.75rem 2rem;
        font-size: 0.9375rem;
    }

    .nav-brand h1 {
        font-size: 1.75rem;
    }
}

/* Very wide screens */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }

    .hero-title {
        font-size: 4rem;
    }

    .section-title {
        font-size: 3rem;
    }

    .nav-menu {
        gap: 1rem;
    }

    .nav-menu a:not(.btn-primary):not(.btn-secondary) {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }

    .nav-menu .btn-primary,
    .nav-menu .btn-secondary {
        padding: 0.875rem 2.25rem;
        font-size: 1rem;
    }
}

/* Tablet Portrait */
@media (min-width: 481px) and (max-width: 768px) {
    .payment-methods {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .revenue-breakdown {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet Landscape */
@media (min-width: 769px) and (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn,
    .nav-menu a,
    .checkbox-label,
    .payment-method-option {
        min-height: 44px; /* Apple's recommended touch target size */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .gallery-item {
        cursor: default;
    }

    .service-card:hover,
    .step-card:hover,
    .payment-method-card:hover {
        transform: none; /* Disable hover effects on touch devices */
    }

    /* Larger tap targets on mobile */
    input[type="checkbox"],
    input[type="radio"] {
        min-width: 24px;
        min-height: 24px;
    }

    /* Better spacing for touch */
    .form-group {
        margin-bottom: 1.5rem;
    }

    .btn {
        padding: 1rem 2rem;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-title,
    .section-title {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Mobile-only bottom bar (avoid duplicate nav / layout issues on wide viewports) */
.app-bottom-nav {
    display: none;
}

/* Feedback while navigating to another heavy page; can be slow on mobile networks */
a.page-nav-loading {
    cursor: wait !important;
    pointer-events: none;
}

.app-bottom-nav.page-nav-blocked a.app-bottom-nav-item:not(.page-nav-loading) {
    opacity: 0.45;
    pointer-events: none;
}

.app-bottom-nav a.app-bottom-nav-item.page-nav-loading {
    opacity: 1;
}

.community-cards.page-nav-cards-blocked a.community-card:not(.page-nav-loading) {
    opacity: 0.45;
    pointer-events: none;
}

a.page-nav-loading .page-nav-loading-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.92);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--secondary-color);
    z-index: 2;
    border-radius: inherit;
    text-align: center;
    padding: 0.5rem;
}

a.community-card.page-nav-loading {
    position: relative;
    overflow: hidden;
}

/* App-like Mobile Bottom Navigation */
@media (max-width: 768px) {
    .app-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: white;
        border-top: 1px solid rgba(212, 165, 116, 0.2);
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        z-index: 1000;
        justify-content: space-around;
        align-items: center;
        padding: 0.5rem 0;
        padding-bottom: env(safe-area-inset-bottom, 0.5rem);
    }

    .app-bottom-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0.75rem 0.5rem;
        text-decoration: none;
        color: var(--text-light);
        transition: all 0.2s ease;
        min-width: 50px;
        flex: 1;
        position: relative;
    }

    .app-bottom-nav-item svg {
        width: 26px;
        height: 26px;
        stroke: currentColor;
        fill: none;
        transition: all 0.2s ease;
    }

    .app-bottom-nav-item.active {
        color: var(--primary-color);
    }

    .app-bottom-nav-item.active svg {
        stroke: var(--primary-color);
        stroke-width: 2.5;
    }

    /* Marketplace bottom nav with text labels */
    .marketplace-bottom-nav .app-bottom-nav-item {
        padding: 0.5rem 0.5rem;
        gap: 0.25rem;
    }
    
    .marketplace-bottom-nav .app-bottom-nav-item svg {
        width: 22px;
        height: 22px;
        margin-bottom: 0.25rem;
    }
    
    .marketplace-bottom-nav .app-bottom-nav-item span {
        font-size: 0.7rem;
        margin-top: 0;
        display: block;
    }

    .app-bottom-nav-item span:last-child {
        font-size: 0.7rem;
        margin-top: 0;
    }

    .app-bottom-nav-item:active {
        transform: scale(0.95);
        opacity: 0.8;
    }

    .app-bottom-nav-item:active {
        transform: scale(0.95);
        opacity: 0.8;
    }

    /* Add padding to body to account for bottom nav */
    body {
        padding-bottom: 70px;
    }

    /* Ensure footer doesn't overlap bottom nav */
    .footer {
        margin-bottom: 70px;
    }

    /* App-like smooth scrolling */
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    /* App-like card shadows and interactions */
    .service-card,
    .step-card,
    .product-card {
        transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1),
                    box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        -webkit-tap-highlight-color: transparent;
    }

    .service-card:active,
    .step-card:active,
    .product-card:active {
        transform: scale(0.97);
        transition: transform 0.1s ease;
    }

    /* App-like service card interactions */
    .service-card.selectable-service:active {
        transform: scale(0.97);
        border-color: var(--primary-color);
    }

    /* App-like button feedback */
    .btn:active {
        transform: scale(0.96);
    }

    /* Remove text selection on mobile for app-like feel */
    * {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    /* Allow text selection in inputs and textareas */
    input,
    textarea,
    [contenteditable] {
        -webkit-user-select: text;
        -moz-user-select: text;
        -ms-user-select: text;
        user-select: text;
    }

    /* App-like modal animations - handled in modal styles above */

    /* App-like section transitions */
    .section {
        animation: fadeInUp 0.4s ease-out;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Better touch targets */
    .btn,
    .nav-menu a,
    .service-card,
    button {
        min-height: 44px;
        min-width: 44px;
    }

    /* App-like navbar */
    .navbar {
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        background: rgba(255, 255, 255, 0.95);
        border-bottom: none;
        box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    }

    /* Hide footer on mobile for app-like feel - already handled above */

    /* App-like form inputs */
    input,
    textarea,
    select {
        font-size: 16px !important; /* Prevent zoom on iOS */
        -webkit-appearance: none;
        appearance: none;
    }

    /* App-like smooth scrolling */
    * {
        -webkit-overflow-scrolling: touch;
    }

    /* App-like loading states */
    .btn:disabled {
        opacity: 0.6;
        cursor: not-allowed;
    }

    /* Better touch feedback for links */
    a:active {
        opacity: 0.7;
    }

    /* App-like pull-to-refresh feel (visual feedback) */
    .section:first-of-type {
        padding-top: 2rem;
    }

    /* App-like full-width hero on mobile */
    .hero {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }

    /* App-like card spacing */
    .service-card,
    .step-card {
        margin-bottom: 1rem;
    }

    /* App-like input focus */
    input:focus,
    textarea:focus,
    select:focus {
        transform: scale(1.01);
        transition: transform 0.2s ease;
    }

    /* App-like page transitions */
    body {
        animation: fadeIn 0.3s ease-in;
    }

    /* App-like scrollbar (iOS style) */
    ::-webkit-scrollbar {
        width: 4px;
    }

    ::-webkit-scrollbar-track {
        background: transparent;
    }

    ::-webkit-scrollbar-thumb {
        background: rgba(212, 165, 116, 0.3);
        border-radius: 2px;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: rgba(212, 165, 116, 0.5);
    }

    /* App-like safe area support */
    .app-bottom-nav {
        padding-bottom: calc(0.5rem + env(safe-area-inset-bottom, 0px));
    }

    /* App-like smooth momentum scrolling */
    * {
        -webkit-overflow-scrolling: touch;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hero,
    /* Cart Styles */
    .cart-badge {
        position: absolute;
        top: -6px;
        right: -6px;
        background: var(--primary-color);
        color: white;
        border-radius: 50%;
        min-width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.7rem;
        font-weight: 700;
        border: 2px solid white;
        padding: 0 4px;
        box-sizing: border-box;
        white-space: nowrap;
    }

    .cart-icon-link {
        text-decoration: none;
        font-size: 1rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.625rem 1rem;
        border-radius: 8px;
        background: rgba(212, 165, 116, 0.1);
        color: var(--primary-color);
        transition: all 0.3s ease;
        white-space: nowrap;
        position: relative;
    }

    .cart-icon-link:hover {
        background: rgba(212, 165, 116, 0.2);
        transform: translateY(-2px);
    }

    .cart-notification {
        position: fixed;
        bottom: 2rem;
        right: 2rem;
        background: white;
        padding: 1.25rem;
        border-radius: 16px;
        box-shadow: 0 8px 32px rgba(0,0,0,0.2);
        border: 2px solid var(--primary-color);
        z-index: 10000;
        transform: translateX(400px);
        opacity: 0;
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        max-width: 380px;
        min-width: 320px;
    }

    .cart-notification.show {
        transform: translateX(0);
        opacity: 1;
    }

    .cart-notification-content {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .cart-notification-icon {
        width: 48px;
        height: 48px;
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.5rem;
        font-weight: 700;
        flex-shrink: 0;
        animation: checkmarkPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    @keyframes checkmarkPop {
        0% { transform: scale(0); }
        50% { transform: scale(1.2); }
        100% { transform: scale(1); }
    }

    .cart-notification-info {
        flex: 1;
        min-width: 0;
    }

    .cart-notification-title {
        font-size: 1rem;
        font-weight: 700;
        color: var(--secondary-color);
        margin-bottom: 0.25rem;
    }

    .cart-notification-product {
        font-size: 0.9rem;
        color: var(--text-dark);
        font-weight: 600;
        margin-bottom: 0.25rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .cart-notification-price {
        font-size: 0.875rem;
        color: var(--primary-color);
        font-weight: 700;
    }

    .cart-notification-image {
        width: 60px;
        height: 60px;
        object-fit: cover;
        border-radius: 8px;
        border: 2px solid rgba(212, 165, 116, 0.2);
        flex-shrink: 0;
    }

    .cart-notification-actions {
        border-top: 1px solid rgba(212, 165, 116, 0.2);
        padding-top: 0.75rem;
        margin-top: 0.75rem;
    }

    .cart-notification-link {
        color: var(--primary-color);
        font-weight: 600;
        text-decoration: none;
        font-size: 0.9rem;
        display: inline-block;
        padding: 0.5rem 1rem;
        background: rgba(212, 165, 116, 0.1);
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .cart-notification-link:hover {
        background: rgba(212, 165, 116, 0.2);
        transform: translateY(-2px);
    }

    .cart-badge-bounce {
        animation: badgeBounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    @keyframes badgeBounce {
        0%, 100% { transform: scale(1); }
        25% { transform: scale(1.3) rotate(-5deg); }
        50% { transform: scale(1.2) rotate(5deg); }
        75% { transform: scale(1.1) rotate(-2deg); }
    }

    .cart-icon-pulse {
        animation: iconPulse 0.6s ease;
    }

    @keyframes iconPulse {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.1); }
    }

    @media (max-width: 768px) {
        .cart-notification {
            right: 1rem;
            left: 1rem;
            max-width: none;
            min-width: auto;
            transform: translateY(100px);
        }

        .cart-notification.show {
            transform: translateY(0);
        }
    }

    .cart-sidebar {
        position: fixed;
        top: 0;
        right: -400px;
        width: 400px;
        height: 100vh;
        background: white;
        box-shadow: -4px 0 20px rgba(0,0,0,0.15);
        z-index: 1000;
        transition: right 0.3s ease;
        overflow-y: auto;
    }

    .cart-sidebar.open {
        right: 0;
    }

    .cart-sidebar-header {
        padding: 1.5rem;
        border-bottom: 2px solid rgba(212, 165, 116, 0.2);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .cart-sidebar-header h3 {
        color: var(--secondary-color);
        margin: 0;
    }

    .cart-sidebar-close {
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--text-light);
    }

    .cart-item {
        display: flex;
        gap: 1rem;
        padding: 1rem;
        border-bottom: 1px solid rgba(212, 165, 116, 0.1);
    }

    .cart-item-image {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: 8px;
    }

    .cart-item-details {
        flex: 1;
    }

    .cart-item-name {
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--secondary-color);
        margin-bottom: 0.25rem;
    }

    .cart-item-price {
        font-size: 0.875rem;
        color: var(--text-dark);
        margin-bottom: 0.5rem;
    }

    .cart-item-quantity {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .qty-btn {
        width: 28px;
        height: 28px;
        border: 1px solid rgba(212, 165, 116, 0.3);
        background: white;
        border-radius: 6px;
        cursor: pointer;
        font-size: 1rem;
        color: var(--primary-color);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .qty-value {
        min-width: 30px;
        text-align: center;
        font-weight: 600;
    }

    .cart-item-remove {
        background: none;
        border: none;
        font-size: 1.5rem;
        color: #dc3545;
        cursor: pointer;
        padding: 0;
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .cart-total-row {
        display: flex;
        justify-content: space-between;
        padding: 0.5rem 0;
        font-size: 0.9rem;
    }

    .cart-total-row.total {
        border-top: 2px solid rgba(212, 165, 116, 0.3);
        margin-top: 0.5rem;
        padding-top: 0.5rem;
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--secondary-color);
    }

    @media (max-width: 768px) {
        .cart-sidebar {
            width: 100%;
            right: -100%;
        }
    }

    .booking,
    .footer,
    .mobile-menu-toggle {
        display: none;
    }

    .section {
        page-break-inside: avoid;
    }
}

/* Site-wide request: remove footers from all pages */
footer,
.footer {
    display: none !important;
}

.shop-scroll-top-btn {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: var(--secondary-color);
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(44, 85, 48, 0.28);
    cursor: pointer;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
    z-index: 1001;
}

.shop-scroll-top-btn:hover {
    background: var(--primary-color);
}

.shop-scroll-top-btn.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

@media (max-width: 768px) {
    .shop-scroll-top-btn {
        right: 0.9rem;
        bottom: 5.6rem;
    }
}

/* Homepage visual cleanup (keep hero untouched) */
.homepage .section {
    padding: 4.5rem 0;
}

.homepage .section .container {
    max-width: 1160px;
}

.homepage .section-title {
    font-size: clamp(1.9rem, 3.4vw, 2.6rem);
    margin-bottom: 0.9rem;
    letter-spacing: -0.025em;
}

.homepage .section-subtitle {
    max-width: 720px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #5e6c63;
    margin-bottom: 2.6rem;
}

.homepage .about {
    background: linear-gradient(180deg, #f8fbf8 0%, #ffffff 100%);
}

.homepage .about-content {
    gap: 3rem;
}

.homepage .about-text p {
    color: #49564d;
    line-height: 1.8;
}

.homepage .feature-item {
    margin-bottom: 1rem;
    padding: 0.95rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(44, 85, 48, 0.12);
    background: rgba(255, 255, 255, 0.88);
}

.homepage .services {
    background: #ffffff;
}

.homepage .services-grid {
    gap: 1.35rem;
}

.homepage .service-card.selectable-service {
    border: 1px solid rgba(44, 85, 48, 0.16);
    border-radius: 14px;
    box-shadow: 0 3px 14px rgba(44, 85, 48, 0.08);
}

.homepage .service-card.selectable-service:hover {
    border-style: solid;
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(44, 85, 48, 0.13);
}

.homepage .service-content h3 {
    font-size: 1.15rem;
}

.homepage .service-content p {
    color: #5c6a61;
}

.homepage .booking {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbf8 100%);
}

.homepage .reviews {
    background: #ffffff;
}

.homepage .review-card {
    border-radius: 12px;
    border: 1px solid rgba(44, 85, 48, 0.12);
    box-shadow: 0 4px 14px rgba(44, 85, 48, 0.07);
}

@media (max-width: 768px) {
    .homepage .section {
        padding: 3.3rem 0;
    }

    .homepage .section-subtitle {
        margin-bottom: 2rem;
    }

    .homepage .feature-item {
        padding: 0.85rem 0.9rem;
    }
}

