/* ==================== */
/* RESET & BASE STYLES */
/* ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1e63c6;
    --primary-dark: #174a93;
    --primary-light: #5b92e5;
    --secondary: #7b55d9;
    --accent: #f5a623;
    --text-dark: #1f2f46;
    --text-light: #63748b;
    --bg-light: #f4f8fd;
    --bg-white: #ffffff;
    --border: #d9e4f2;
    --success: #2f9e6f;
    --warning: #ed8936;
    
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Nunito', sans-serif;
    
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--bg-white);
    overflow-x: hidden;
}

body.page-has-topbar .navbar {
    top: 44px;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* ==================== */
/* TOP BAR + NAVIGATION */
/* ==================== */
.topbar {
    background: var(--primary-dark);
    color: white;
    padding: 0.7rem 0;
    font-size: 0.95rem;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.topbar strong {
    color: #fff4bf;
}

.topbar a {
    font-weight: 700;
}

.topbar-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.navbar {
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 30px rgba(23, 59, 134, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(217, 228, 242, 0.9);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.15rem;
    line-height: 1.1;
    color: var(--primary-dark);
}

.logo img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.logo-mark {
    display: flex;
    flex-direction: column;
}

.logo-mark small {
    font-family: var(--font-body);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    font-weight: 700;
    color: var(--text-dark);
    position: relative;
}

.nav-menu .nav-cta {
    margin-left: 0.25rem;
}

.nav-menu a:not(.btn-primary):hover,
.nav-menu a.active {
    color: var(--primary);
}

.nav-menu a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-menu a:not(.btn-primary):hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* ==================== */
/* BUTTONS */
/* ==================== */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-family: var(--font-heading);
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    box-shadow: 0 6px 18px rgba(30, 99, 198, 0.24);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(30, 99, 198, 0.28);
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border-color: var(--primary);
}

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

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

/* ==================== */
/* SHARED UTILITY */
/* ==================== */
.surface-card {
    background: white;
    border: 1px solid rgba(217, 228, 242, 0.9);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.section-band {
    background: linear-gradient(180deg, rgba(30,99,198,0.04), rgba(255,255,255,0));
}

.highlight-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 1rem;
    margin-top: -42px;
    position: relative;
    z-index: 20;
}

.highlight-pill {
    background: white;
    border-radius: 18px;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(217, 228, 242, 0.95);
    box-shadow: var(--shadow-md);
}

.highlight-pill strong {
    display: block;
    color: var(--primary-dark);
    font-family: var(--font-heading);
    margin-bottom: 0.25rem;
}

.highlight-pill span {
    color: var(--text-light);
    font-size: 0.95rem;
}

section {
    padding: 80px 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.eyebrow,
.summary-kicker {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.text-center {
    text-align: center;
    margin-top: 2rem;
}

.detail-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.detail-card h2,
.detail-card h3 {
    font-family: var(--font-heading);
    color: var(--primary);
    margin-bottom: 1rem;
}

.detail-list {
    list-style: none;
    display: grid;
    gap: 0.85rem;
}

.detail-list li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-dark);
}

.detail-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

.detail-list.ordered {
    counter-reset: detail-counter;
}

.detail-list.ordered li::before {
    counter-increment: detail-counter;
    content: counter(detail-counter) '.';
    color: var(--primary);
}

.quick-facts-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.quick-fact-pill {
    background: rgba(119, 55, 189, 0.08);
    color: var(--primary-dark);
    border-radius: 999px;
    padding: 0.75rem 1rem;
    font-weight: 700;
}

.sticky-card {
    position: sticky;
    top: 110px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--border);
}

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

.summary-grid {
    display: grid;
    gap: 0.2rem;
}

.summary-price {
    font-family: var(--font-heading);
    font-size: 2.35rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.summary-note {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.micro-copy,
.small {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ==================== */
/* HERO SECTION */
/* ==================== */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 48%, var(--secondary) 100%);
    color: white;
    padding: 122px 0 118px;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
    background-size: 50px 50px;
    animation: slide 20s linear infinite;
}

@keyframes slide {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(50px) translateY(50px); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.7rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-badge {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 1.1rem;
    font-weight: 600;
}

.hero-badge span {
    background: rgba(255,255,255,0.14);
    padding: 10px 20px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.18);
}

/* ==================== */
/* SERVICE BANNER */
/* ==================== */
.service-banner {
    background: linear-gradient(90deg, rgba(30,99,198,0.08), rgba(123,85,217,0.08));
    padding: 20px 0;
    text-align: center;
    border-bottom: 2px solid rgba(30,99,198,0.16);
}

.service-banner p {
    font-size: 1.05rem;
    color: var(--text-dark);
}

.service-banner strong {
    color: var(--primary);
    font-weight: 700;
}

/* ==================== */
/* HOME PAGE SECTIONS */
/* ==================== */
.how-it-works {
    background: var(--bg-light);
}

.steps-grid,
.products-grid,
.features-grid,
.testimonials-grid,
.footer-grid,
.product-detail-grid,
.reassurance-grid,
.faq-grid-upgraded {
    display: grid;
    gap: 2rem;
}

.steps-grid,
.features-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.products-grid,
.testimonials-grid,
.product-detail-grid,
.reassurance-grid,
.faq-grid-upgraded {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.step,
.product-card,
.testimonial,
.area-card,
.catalog-item {
    background: white;
    border: 1px solid rgba(217, 228, 242, 0.92);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.step {
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.step:hover,
.product-card:hover,
.catalog-item:hover,
.area-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.step-icon,
.feature-icon {
    font-size: 3rem;
    margin: 1.2rem 0 1rem;
}

.step h3,
.feature h3,
.product-info h3,
.catalog-details h3,
.area-card h3,
.contact-info h3 {
    font-family: var(--font-heading);
    color: var(--primary);
}

.step p,
.feature p,
.product-info p,
.catalog-details p,
.area-card p,
.contact-item p,
.testimonial-author {
    color: var(--text-light);
}

.product-card,
.catalog-item {
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--bg-light);
}

.product-image img,
.product-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card:hover .product-image img,
.catalog-item:hover .product-image img,
.gallery-item:hover img {
    transform: scale(1.06);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.product-info,
.catalog-details {
    padding: 1.8rem;
}

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

.feature {
    text-align: center;
    padding: 2rem 1.5rem;
}

.testimonials {
    background: var(--bg-light);
}

.testimonial {
    padding: 2rem;
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    margin-bottom: 1rem;
}

.cta-section > p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-note {
    margin-top: 1.5rem;
}

.cta-note a {
    text-decoration: underline;
    font-weight: 700;
}

.footer {
    background: linear-gradient(180deg, #17345f 0%, #112744 100%);
    color: white;
    padding: 64px 0 30px;
}

.footer-kicker {
    color: rgba(255,255,255,0.72);
    font-size: 0.92rem;
    margin-bottom: 0.75rem;
}

.footer-contact-list a {
    color: #fff;
}

.footer-col h4 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    color: var(--primary-light);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col a:hover,
.powered-by a {
    color: var(--primary-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.75);
    margin-top: 2rem;
}

/* ==================== */
/* CATALOG + GALLERY + CONTACT */
/* ==================== */
.catalog-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.catalog-header h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.catalog-grid,
.gallery-grid,
.areas-grid {
    display: grid;
    gap: 2rem;
    padding: 60px 0;
}

.catalog-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

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

.areas-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.catalog-features {
    list-style: none;
    display: grid;
    gap: 0.6rem;
    margin: 1.2rem 0;
}

.catalog-features li::before {
    content: '✓ ';
    color: var(--success);
    font-weight: 700;
    margin-right: 6px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 400px;
    background: var(--bg-light);
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    aspect-ratio: 1;
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.2rem;
    color: white;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.area-card {
    padding: 2rem;
    text-align: center;
}

.area-card:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
}

/* ==================== */
/* PRODUCT DETAIL PAGE */
/* ==================== */
.product-hero-section,
.booking-page-hero {
    background: linear-gradient(180deg, rgba(119,55,189,0.08), rgba(74,144,226,0.08));
}

.product-hero-grid,
.booking-page-hero-grid,
.booking-flow-grid {
    display: grid;
    gap: 2rem;
}

.product-hero-grid {
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
}

.product-hero-media {
    padding: 0;
    overflow: hidden;
    min-height: 420px;
}

.product-hero-copy h1,
.booking-page-hero h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.product-lead,
.booking-page-hero p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.product-pricing-band {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.pricing-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    margin-bottom: 0.4rem;
}

.product-pricing-band strong {
    font-size: 1.15rem;
}

.product-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0 1rem;
}

.booking-reassurance-section {
    padding-top: 0;
}

.accent-card {
    border: 2px solid rgba(119,55,189,0.12);
}

/* ==================== */
/* BOOKING PAGE */
/* ==================== */
.booking-page-hero-grid {
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: start;
}

.booking-sidebar-card .summary-meta {
    display: grid;
    gap: 1rem;
    margin: 1.5rem 0;
}

.booking-sidebar-card .summary-meta span {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
}

.booking-flow-grid {
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: start;
}

.booking-side-rail {
    display: grid;
    gap: 1.5rem;
}

.booking-steps-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.step-pill {
    background: white;
    border: 1px solid rgba(119,55,189,0.14);
    color: var(--primary-dark);
    border-radius: 999px;
    padding: 0.8rem 1rem;
    font-weight: 700;
}

.step-pill.active {
    background: rgba(119,55,189,0.08);
}

.booking-form {
    max-width: 100%;
    background: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.booking-form-upgraded {
    display: grid;
    gap: 2rem;
}

.booking-section-block {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.section-header-inline {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    align-items: start;
    margin-bottom: 1.5rem;
}

.section-helper {
    max-width: 340px;
    color: var(--text-light);
}

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

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 0.45rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(119,55,189,0.08);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-row,
.dynamic-fields-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
}

.highlighted-field {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 1rem;
}

.inline-readout {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.inline-readout-copy span {
    color: var(--text-light);
}

.review-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-top: 1rem;
}

.review-card-top {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.review-total span {
    display: block;
    color: var(--text-light);
    font-size: 0.85rem;
}

.review-total strong {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    color: var(--primary);
}

.payment-info {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--radius);
}

.payment-info ol {
    padding-left: 1.2rem;
    display: grid;
    gap: 0.5rem;
}

.booking-faq-section {
    background: var(--bg-light);
}

/* ==================== */
/* MODAL */
/* ==================== */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    z-index: 9998;
}

.confirmation-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    width: min(92vw, 520px);
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 2rem;
}

.confirmation-modal h2 {
    font-family: var(--font-heading);
    color: var(--primary);
    margin-bottom: 1rem;
}

.confirmation-modal ul {
    padding-left: 1.25rem;
    margin: 1rem 0 1.5rem;
}

.confirmation-modal .small a {
    color: var(--primary);
    text-decoration: underline;
}

/* ==================== */
/* RESPONSIVE */
/* ==================== */
@media (max-width: 980px) {
    .product-hero-grid,
    .booking-page-hero-grid,
    .booking-flow-grid,
    .contact-grid,
    .product-pricing-band {
        grid-template-columns: 1fr;
    }

    .sticky-card {
        position: static;
    }

    .section-header-inline,
    .review-card-top {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .topbar-inner {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .nav-menu {
        position: fixed;
        top: 120px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        background: white;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title,
    .catalog-header h1,
    .product-hero-copy h1,
    .booking-page-hero h1 {
        font-size: 2.3rem;
    }

    .hero-subtitle,
    .product-lead,
    .booking-page-hero p {
        font-size: 1.05rem;
    }

    .hero-buttons,
    .hero-badge,
    .product-cta-group,
    .steps-grid,
    .products-grid,
    .features-grid,
    .testimonials-grid,
    .footer-grid,
    .product-detail-grid,
    .reassurance-grid,
    .faq-grid-upgraded,
    .catalog-grid,
    .gallery-grid,
    .areas-grid,
    .form-row,
    .dynamic-fields-grid {
        grid-template-columns: 1fr;
    }

    .hero-badge,
    .hero-buttons {
        flex-direction: column;
    }

    .section-title,
    .cta-section h2 {
        font-size: 2rem;
    }

    .booking-form {
        padding: 1.5rem;
    }

    .booking-section-block,
    .detail-card {
        padding: 1.4rem;
    }

    .btn-large {
        padding: 14px 24px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title,
    .catalog-header h1,
    .product-hero-copy h1,
    .booking-page-hero h1 {
        font-size: 2rem;
    }

    .summary-price {
        font-size: 2rem;
    }
}

.contact-item {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

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

.service-area-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1rem;
}

.service-area-pills span {
    background: rgba(30, 99, 198, 0.08);
    color: var(--primary-dark);
    border-radius: 999px;
    padding: 0.65rem 0.9rem;
    font-weight: 700;
}

.page-section-intro {
    max-width: 760px;
    margin: 0 auto 2.2rem;
    text-align: center;
    color: var(--text-light);
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10, 20, 40, 0.82);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 1.5rem;
}

.gallery-lightbox-inner {
    width: min(94vw, 980px);
    background: white;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.gallery-lightbox figure {
    margin: 0;
}

.gallery-lightbox img {
    width: 100%;
    max-height: 78vh;
    object-fit: contain;
    background: #0d1b34;
}

.gallery-lightbox figcaption {
    padding: 1rem 1.25rem 1.25rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
}

.gallery-lightbox button {
    border: none;
    background: var(--primary);
    color: white;
    border-radius: 999px;
    padding: 0.8rem 1rem;
    font-weight: 700;
    cursor: pointer;
}
