/* ============================================
   SAINT WASH - Premium Stylesheet v2
   Modern UI + Mobile-First Responsive
   ============================================ */

:root {
    --navy: #0B1F33;
    --navy-light: #152a40;
    --navy-dark: #06121f;
    --gold: #C8A951;
    --gold-light: #e0c674;
    --gold-dark: #a68a3a;
    --gold-glow: rgba(200, 169, 81, 0.18);
    --white: #FFFFFF;
    --light-grey: #F7F8FA;
    --charcoal: #2D3748;
    --mid-grey: #718096;
    --light-border: #E2E8F0;
    --success: #28a745;
    --error: #dc3545;
    --font-primary: 'Ubuntu', 'Helvetica Neue', Arial, sans-serif;
    --font-accent: 'Ubuntu', Georgia, serif;
    --max-width: 1200px;
    --gutter: 24px;
    --section-padding: 100px;
    --border-radius: 8px;
    --border-radius-lg: 16px;
    --shadow-sm: 0 1px 3px rgba(11, 31, 51, 0.06);
    --shadow-md: 0 4px 16px rgba(11, 31, 51, 0.08);
    --shadow-lg: 0 12px 40px rgba(11, 31, 51, 0.12);
    --shadow-gold: 0 4px 24px rgba(200, 169, 81, 0.2);
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --header-height: 72px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--charcoal);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition-fast); }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-accent);
    color: var(--navy);
    line-height: 1.2;
    font-weight: 700;
}
h1 { font-size: clamp(2.2rem, 5.5vw, 3.6rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.4rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1rem; }

.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }
.text-muted { color: var(--mid-grey); }
.font-accent { font-family: var(--font-accent); }
.text-center { text-align: center; }

/* ============================================
   LAYOUT
   ============================================ */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--gutter);
    width: 100%;
}
.section { padding: var(--section-padding) 0; }
.section-alt { background-color: var(--light-grey); }
.section-navy { background-color: var(--navy); color: var(--white); }
.section-navy h1, .section-navy h2, .section-navy h3 { color: var(--white); }

.section-header { text-align: center; margin-bottom: 64px; }
.section-label {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    padding: 8px 20px;
    border: 1.5px solid var(--gold-glow);
    border-radius: 100px;
    background: var(--gold-glow);
}
.section-title { margin-bottom: 20px; }
.section-subtitle {
    font-size: 1.1rem;
    color: var(--mid-grey);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Gold accent line */
.gold-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
    margin: 0 auto 24px;
}
.gold-line-left { margin: 0 0 24px; }

/* Grid */
.grid { display: grid; gap: 32px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

/* Flex */
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.03em;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all var(--transition-base);
    border: 2px solid transparent;
    white-space: nowrap;
    min-height: 48px;
    line-height: 1.2;
}
.btn-primary {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    border-color: transparent;
    box-shadow: var(--shadow-md);
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--navy);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}
.btn-secondary {
    background: transparent;
    color: var(--navy);
    border-color: var(--gold);
}
.btn-secondary:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}
.btn-cta {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--navy);
    border-color: transparent;
    padding: 16px 36px;
    font-weight: 700;
    box-shadow: var(--shadow-gold);
}
.btn-cta:hover {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.btn-large { padding: 18px 44px; font-size: 16px; }
.btn-small { padding: 8px 18px; font-size: 13px; }
.btn-header { padding: 10px 24px; font-size: 13px; }
.btn-block { width: 100%; }

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    border-color: transparent;
}
.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #0d7058 100%);
    color: var(--white);
    transform: translateY(-2px);
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
.skip-link {
    position: absolute;
    top: -50px;
    left: 0;
    background: var(--navy);
    color: var(--white);
    padding: 10px 18px;
    z-index: 10000;
    font-weight: 600;
    transition: top var(--transition-fast);
    border-radius: 0 0 var(--border-radius) 0;
}
.skip-link:focus { top: 0; }

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
    background-color: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    transition: box-shadow var(--transition-base);
}
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo-link { display: flex; align-items: center; gap: 12px; }
.logo-img { width: 44px; height: 44px; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; }
.logo-name {
    font-family: var(--font-accent);
    font-size: 19px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.1;
    letter-spacing: 0.5px;
}
.logo-tagline {
    font-family: var(--font-primary);
    font-size: 9px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.main-nav { display: none; }
.nav-list { display: flex; align-items: center; gap: 6px; }
.nav-link {
    display: block;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
    border-radius: var(--border-radius);
    transition: all var(--transition-fast);
    position: relative;
}
.nav-link:hover { color: var(--gold); }
.nav-item.active .nav-link { color: var(--gold); background: var(--gold-glow); font-weight: 600; }

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    border-radius: var(--border-radius);
    transition: background var(--transition-fast);
}
.mobile-menu-toggle:hover { background: var(--gold-glow); }
.hamburger-line {
    display: block;
    width: 24px;
    height: 2.5px;
    background-color: var(--navy);
    transition: all var(--transition-base);
    border-radius: 2px;
}
.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5.5px, 5.5px);
}
.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0; transform: scaleX(0);
}
.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5.5px, -5.5px);
}

/* Mobile Navigation - Slide from right */
.mobile-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    background: var(--white);
    box-shadow: -8px 0 40px rgba(11, 31, 51, 0.15);
    z-index: 1000;
    padding: 100px 32px 32px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}
.mobile-nav.open {
    transform: translateX(0);
}
.mobile-nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(11, 31, 51, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-nav-backdrop.active {
    opacity: 1;
    visibility: visible;
}
.mobile-nav-link {
    display: block;
    padding: 16px 0;
    font-size: 17px;
    font-weight: 600;
    color: var(--navy);
    border-bottom: 1px solid var(--light-border);
    transition: all var(--transition-fast);
}
.mobile-nav-link:hover { color: var(--gold); padding-left: 8px; }
.mobile-nav-cta {
    color: var(--navy);
    font-weight: 700;
    border-bottom: none;
    margin-top: 16px;
    padding: 16px;
    text-align: center;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: var(--border-radius);
}
.mobile-nav-cta:hover { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); color: var(--gold); padding-left: 16px; }

/* ============================================
   FLASH MESSAGES
   ============================================ */
.flash-message { padding: 16px 0; font-size: 14px; font-weight: 600; }
.flash-message .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.flash-success { background-color: #ecfdf5; color: #065f46; border-bottom: 1px solid #a7f3d0; }
.flash-error { background-color: #fef2f2; color: #991b1b; border-bottom: 1px solid #fecaca; }
.flash-info { background-color: #eff6ff; color: #1e40af; border-bottom: 1px solid #bfdbfe; }
.flash-close {
    background: none;
    border: none;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    color: inherit;
    opacity: 0.5;
    padding: 4px;
    min-width: 36px;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition-fast);
}
.flash-close:hover { opacity: 1; background: rgba(0,0,0,0.05); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, #1a3a5c 100%);
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 169, 81, 0.08) 0%, transparent 70%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(200, 169, 81, 0.05) 0%, transparent 70%);
    pointer-events: none;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11, 31, 51, 0.9) 0%, rgba(11, 31, 51, 0.7) 100%);
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
    max-width: 640px;
}
.hero-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    padding: 8px 18px;
    border: 1.5px solid rgba(200, 169, 81, 0.35);
    border-radius: 100px;
    background: rgba(200, 169, 81, 0.08);
    backdrop-filter: blur(4px);
}
.hero-title {
    font-size: clamp(2rem, 5.5vw, 3.4rem);
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.1;
    font-weight: 700;
}
.hero-title .accent {
    color: var(--gold);
    position: relative;
}
.hero-title .accent::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), transparent);
    border-radius: 2px;
    opacity: 0.6;
}
.hero-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 36px;
    line-height: 1.7;
    max-width: 520px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero split variant */
.hero-split {
    display: grid;
    grid-template-columns: 1fr;
    min-height: auto;
}
.hero-split .hero-content { padding: 60px var(--gutter); max-width: 100%; }
.hero-split .hero-image-side {
    position: relative;
    min-height: 320px;
    overflow: hidden;
}
.hero-split .hero-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    transition: transform 8s ease;
}
.hero-split:hover .hero-image-side img { transform: scale(1.05); }

/* Page hero (smaller) */
.page-hero { min-height: auto; padding: 60px 0; }
.page-hero .hero-content { padding: 0; }
.page-hero .hero-title { font-size: clamp(1.8rem, 4vw, 2.8rem); }

/* ============================================
   CARDS
   ============================================ */
.card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all var(--transition-base);
    border: 1px solid var(--light-border);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(200, 169, 81, 0.2);
}
.card-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
}
.card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(11,31,51,0.15), transparent);
    pointer-events: none;
}
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.card:hover .card-image img { transform: scale(1.08); }
.card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.card-title { font-size: 1.2rem; margin-bottom: 10px; color: var(--navy); font-weight: 700; }
.card-text { font-size: 14px; color: var(--mid-grey); line-height: 1.65; margin-bottom: 20px; flex: 1; }
.card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 16px;
}

.service-card .card-image { aspect-ratio: 16 / 9; }
.service-category-label {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
    padding: 4px 12px;
    background: var(--gold-glow);
    border-radius: 100px;
}

/* Feature Card */
.feature-card {
    padding: 36px 28px;
    text-align: center;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--light-border);
    transition: all var(--transition-base);
    height: 100%;
}
.feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: rgba(200, 169, 81, 0.25);
}
.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold-glow) 0%, rgba(200, 169, 81, 0.08) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    border: 1.5px solid rgba(200, 169, 81, 0.15);
}
.feature-icon svg, .feature-icon img {
    width: 28px;
    height: 28px;
    stroke: var(--gold);
    stroke-width: 2;
    fill: none;
}
.feature-title { font-size: 1.1rem; margin-bottom: 10px; color: var(--navy); font-weight: 700; }
.feature-text { font-size: 14px; color: var(--mid-grey); line-height: 1.65; }

/* ============================================
   FORMS
   ============================================ */
.form-group { margin-bottom: 24px; }
.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}
.form-label-required::after { content: ' *'; color: var(--error); }

.form-input, .form-textarea, .form-select {
    width: 100%;
    padding: 14px 18px;
    font-size: 16px; /* Prevents iOS zoom */
    border: 2px solid var(--light-border);
    border-radius: var(--border-radius);
    background: var(--white);
    color: var(--charcoal);
    transition: all var(--transition-fast);
    -webkit-appearance: none;
    appearance: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px var(--gold-glow);
}
.form-textarea { min-height: 130px; resize: vertical; }
.form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23718096' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 44px;
}
.form-hint { font-size: 13px; color: var(--mid-grey); margin-top: 6px; }
.form-error {
    font-size: 13px;
    color: var(--error);
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}
.form-card {
    max-width: 720px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--light-border);
}

/* ============================================
   TRUST SECTION
   ============================================ */
.trust-section { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); padding: 60px 0; }
.trust-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
.trust-item { display: flex; align-items: flex-start; gap: 16px; }
.trust-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(200, 169, 81, 0.12);
    border: 1.5px solid rgba(200, 169, 81, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.trust-icon svg { width: 22px; height: 22px; stroke: var(--gold); stroke-width: 2; fill: none; }
.trust-item-title { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.trust-item-text { font-size: 13px; color: rgba(255, 255, 255, 0.65); line-height: 1.55; margin: 0; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-card {
    background: var(--white);
    padding: 36px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    border: 1px solid var(--light-border);
    height: 100%;
    transition: all var(--transition-base);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 24px;
    font-family: var(--font-accent);
    font-size: 5rem;
    color: var(--gold);
    opacity: 0.2;
    line-height: 1;
}
.stars { display: flex; gap: 4px; margin-bottom: 16px; }
.stars svg { width: 16px; height: 16px; fill: var(--gold); stroke: none; }
.testimonial-text { font-size: 15px; color: var(--charcoal); line-height: 1.7; margin-bottom: 20px; position: relative; z-index: 1; }
.testimonial-author { font-weight: 700; color: var(--navy); font-size: 14px; }
.testimonial-role { font-size: 13px; color: var(--mid-grey); }

/* ============================================
   PRICING TABLES
   ============================================ */
.pricing-hero {
    text-align: center;
    padding: 60px 24px 48px;
    border-bottom: 1px solid rgba(200, 169, 81, 0.15);
    position: relative;
    overflow: hidden;
}
.pricing-hero .brand-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1.5px solid rgba(200, 169, 81, 0.25);
    padding: 6px 18px;
    border-radius: 100px;
    margin-bottom: 1.5rem;
    background: rgba(200, 169, 81, 0.06);
}
.pricing-hero h1 {
    font-family: var(--font-accent);
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 0.8rem;
}
.pricing-hero h1 span { color: var(--gold); }
.pricing-hero p { font-size: 15px; color: var(--mid-grey); letter-spacing: 0.03em; }

.trust-strip {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 1.5rem 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
}
.t-item { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--mid-grey); letter-spacing: 0.04em; }
.t-item .dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

.price-section { max-width: 900px; margin: 3rem auto 0; padding: 0 24px; }
.price-section-header { display: flex; align-items: center; gap: 16px; margin-bottom: 1.5rem; }
.price-section-icon {
    font-size: 22px;
    width: 48px; height: 48px;
    background: rgba(200, 169, 81, 0.1);
    border: 1.5px solid rgba(200, 169, 81, 0.2);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.price-section-title { font-family: var(--font-accent); font-size: 1.4rem; font-weight: 700; color: var(--white); }
.price-section-title .price-section-label {
    font-family: var(--font-primary);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 4px;
}
.price-table { width: 100%; border-collapse: collapse; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: var(--border-radius-lg); overflow: hidden; }
.price-table thead tr { background: rgba(255, 255, 255, 0.05); border-bottom: 1.5px solid rgba(200, 169, 81, 0.2); }
.price-table thead th { font-family: var(--font-primary); font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); padding: 16px 20px; text-align: left; }
.price-table thead th:last-child { text-align: right; }
.price-table tbody tr { border-bottom: 1px solid rgba(255, 255, 255, 0.05); transition: background var(--transition-fast); }
.price-table tbody tr:hover { background: rgba(255, 255, 255, 0.04); }
.price-table tbody td { padding: 16px 20px; font-size: 14px; color: #CBD2DC; line-height: 1.5; vertical-align: middle; }
.price-table tbody td:first-child { color: var(--white); font-weight: 500; }
.price-table tbody td:last-child { text-align: right; white-space: nowrap; font-weight: 700; font-size: 15px; color: var(--gold); font-family: var(--font-accent); }
.luxury-note { display: flex; align-items: flex-start; gap: 10px; margin-top: 1rem; padding: 14px 18px; background: rgba(200, 169, 81, 0.05); border: 1px solid rgba(200, 169, 81, 0.2); border-radius: var(--border-radius); font-size: 13px; color: var(--mid-grey); line-height: 1.6; }
.luxury-note strong { color: var(--gold); font-weight: 600; }
.price-divider { max-width: 900px; margin: 3rem auto 0; padding: 0 24px; border: none; border-top: 1px solid rgba(255, 255, 255, 0.06); }
.price-cta-footer { max-width: 900px; margin: 3rem auto 0; padding: 0 24px 3rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; }
.price-cta-footer p { font-size: 14px; color: var(--mid-grey); line-height: 1.6; }
.price-cta-footer p strong { color: var(--white); font-weight: 500; }
.cta-btn { display: inline-block; padding: 14px 32px; background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%); color: var(--navy); font-family: var(--font-primary); font-size: 14px; font-weight: 600; letter-spacing: 0.04em; border-radius: var(--border-radius); border: none; cursor: pointer; text-decoration: none; transition: all var(--transition-fast); white-space: nowrap; }
.cta-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }

/* ============================================
   FAQ
   ============================================ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--light-border); }
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    transition: color var(--transition-fast);
    gap: 16px;
}
.faq-question:hover { color: var(--gold); }
.faq-icon { width: 22px; height: 22px; flex-shrink: 0; transition: transform var(--transition-base); color: var(--gold); stroke-width: 2.5; }
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height var(--transition-slow), padding var(--transition-slow); }
.faq-item.open .faq-answer { max-height: 500px; padding-bottom: 22px; }
.faq-answer p { color: var(--mid-grey); font-size: 15px; line-height: 1.7; margin: 0; }

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.gallery-item {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    cursor: pointer;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}
.gallery-item:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 31, 51, 0.85) 0%, rgba(11, 31, 51, 0.2) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity var(--transition-base);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-caption { color: var(--white); font-size: 15px; font-weight: 600; }

.lightbox { display: none; position: fixed; inset: 0; z-index: 10000; background: rgba(11, 31, 51, 0.95); align-items: center; justify-content: center; padding: 24px; }
.lightbox.active { display: flex; }
.lightbox-img { max-width: 92vw; max-height: 88vh; object-fit: contain; border-radius: var(--border-radius); box-shadow: var(--shadow-lg); }
.lightbox-close { position: absolute; top: 20px; right: 20px; color: var(--white); font-size: 40px; background: rgba(255,255,255,0.1); border: none; cursor: pointer; padding: 8px 16px; border-radius: 50%; width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; transition: all var(--transition-fast); }
.lightbox-close:hover { background: rgba(255,255,255,0.2); }

/* ============================================
   CONTACT
   ============================================ */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start; }
.contact-info-card { background: var(--white); padding: 36px; border-radius: var(--border-radius-lg); box-shadow: var(--shadow-md); border: 1px solid var(--light-border); }
.contact-info-heading { font-size: 1.3rem; margin-bottom: 24px; color: var(--navy); font-weight: 700; }
.contact-info-list { display: flex; flex-direction: column; gap: 18px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-info-item img { width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; }
.contact-info-item span, .contact-info-item a { font-size: 15px; color: var(--charcoal); line-height: 1.5; }
.contact-info-item a:hover { color: var(--gold); }
.contact-map { width: 100%; height: 380px; border-radius: var(--border-radius-lg); overflow: hidden; background: var(--light-grey); margin-top: 24px; box-shadow: var(--shadow-sm); }
.contact-map iframe, .contact-map img { width: 100%; height: 100%; border: none; object-fit: cover; }

/* ============================================
   ABOUT
   ============================================ */
.about-section { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
.about-image { border-radius: var(--border-radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; }
.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid rgba(200, 169, 81, 0.2);
    border-radius: var(--border-radius-lg);
    pointer-events: none;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.about-image:hover img { transform: scale(1.03); }
.about-text h2 { margin-bottom: 20px; }
.about-text p { margin-bottom: 18px; color: var(--charcoal); line-height: 1.7; }
.values-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 32px; }
.value-item { display: flex; align-items: flex-start; gap: 12px; padding: 16px; background: var(--white); border-radius: var(--border-radius); border: 1px solid var(--light-border); transition: all var(--transition-fast); }
.value-item:hover { border-color: rgba(200, 169, 81, 0.3); box-shadow: var(--shadow-sm); }
.value-icon { width: 28px; height: 28px; flex-shrink: 0; color: var(--gold); }
.value-title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.value-desc { font-size: 13px; color: var(--mid-grey); margin: 0; line-height: 1.5; }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, #1a3a5c 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(200, 169, 81, 0.1) 0%, transparent 70%);
    pointer-events: none;
}
.cta-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(200, 169, 81, 0.06) 0%, transparent 70%);
    pointer-events: none;
}
.cta-title { font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--white); margin-bottom: 20px; position: relative; z-index: 1; }
.cta-text { color: rgba(255, 255, 255, 0.75); font-size: 1.1rem; max-width: 540px; margin: 0 auto 36px; position: relative; z-index: 1; line-height: 1.7; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer { background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy) 100%); color: var(--white); }
.footer-cta-band {
    background: linear-gradient(135deg, rgba(200, 169, 81, 0.12) 0%, rgba(200, 169, 81, 0.04) 100%);
    border-bottom: 1px solid rgba(200, 169, 81, 0.12);
    padding: 56px 0;
    position: relative;
}
.footer-cta-container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.footer-cta-heading { font-size: 1.8rem; color: var(--white); margin-bottom: 8px; }
.footer-cta-subtext { color: rgba(255, 255, 255, 0.65); margin: 0; font-size: 15px; }
.footer-main { padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }

.footer-logo-link { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo { width: 40px; height: 40px; }
.footer-logo-text { font-family: var(--font-accent); font-size: 20px; font-weight: 700; color: var(--white); }
.footer-tagline { color: var(--gold); font-size: 13px; font-weight: 600; margin-bottom: 14px; letter-spacing: 0.05em; }
.footer-description { font-size: 14px; color: rgba(255, 255, 255, 0.6); line-height: 1.7; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.65);
    transition: all var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.social-link:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

.footer-heading {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 14px; color: rgba(255, 255, 255, 0.6); transition: all var(--transition-fast); }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item { display: flex; align-items: center; gap: 12px; font-size: 14px; color: rgba(255, 255, 255, 0.6); }
.footer-contact-item a { color: rgba(255, 255, 255, 0.6); transition: all var(--transition-fast); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-icon { filter: brightness(0) invert(1); opacity: 0.6; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.06); padding: 24px 0; }
.footer-bottom-container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-copyright, .footer-credit { font-size: 13px; color: rgba(255, 255, 255, 0.4); margin: 0; }

/* ============================================
   ADMIN PANEL
   ============================================ */
.admin-body { background-color: #f0f2f5; min-height: 100vh; }
.admin-header { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); color: var(--white); padding: 16px 0; box-shadow: var(--shadow-md); }
.admin-header-container { display: flex; align-items: center; justify-content: space-between; }
.admin-logo { font-family: var(--font-accent); font-size: 1.3rem; font-weight: 700; color: var(--gold); }
.admin-nav-links { display: flex; gap: 8px; align-items: center; }
.admin-nav-link { color: rgba(255, 255, 255, 0.8); font-size: 14px; padding: 8px 14px; border-radius: var(--border-radius); transition: all var(--transition-fast); }
.admin-nav-link:hover { color: var(--white); background: rgba(255, 255, 255, 0.1); }
.admin-main { padding: 32px 0; }
.admin-card { background: var(--white); border-radius: var(--border-radius-lg); box-shadow: var(--shadow-sm); padding: 32px; margin-bottom: 24px; border: 1px solid var(--light-border); }
.admin-card-title { font-size: 1.3rem; margin-bottom: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }

/* Stats */
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 32px; }
.stat-card { background: var(--white); padding: 28px 20px; border-radius: var(--border-radius-lg); box-shadow: var(--shadow-sm); text-align: center; border: 1px solid var(--light-border); transition: all var(--transition-fast); }
.stat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.stat-value { font-family: var(--font-accent); font-size: 2.2rem; font-weight: 700; color: var(--navy); }
.stat-value.gold { color: var(--gold); }
.stat-value.success { color: var(--success); }
.stat-label { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mid-grey); margin-top: 6px; }

/* Filters */
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.filter-link { padding: 8px 16px; font-size: 13px; font-weight: 600; border-radius: var(--border-radius); background: var(--white); color: var(--charcoal); border: 1.5px solid var(--light-border); transition: all var(--transition-fast); }
.filter-link:hover { border-color: var(--gold); color: var(--gold); }
.filter-link.active { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* Data Table */
.data-table-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--border-radius-lg); border: 1px solid var(--light-border); }
.data-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.data-table thead th { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); color: var(--white); font-weight: 600; font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; padding: 16px; text-align: left; white-space: nowrap; }
.data-table tbody tr { border-bottom: 1px solid var(--light-border); transition: background var(--transition-fast); }
.data-table tbody tr:hover { background: #f8fafc; }
.data-table tbody td { padding: 16px; vertical-align: middle; color: var(--charcoal); }
.data-table .cell-name { font-weight: 700; color: var(--navy); }

/* Status badges */
.status-badge { display: inline-block; padding: 5px 14px; font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; border-radius: 100px; }
.status-pending { background: #fef3c7; color: #92400e; }
.status-confirmed { background: #dbeafe; color: #1e40af; }
.status-completed { background: #d1fae5; color: #065f46; }
.status-cancelled { background: #fee2e2; color: #991b1b; }

/* Table Actions */
.table-actions { display: flex; gap: 6px; flex-wrap: wrap; }
.btn-action { padding: 7px 14px; font-size: 12px; font-weight: 600; border-radius: var(--border-radius); transition: all var(--transition-fast); border: none; cursor: pointer; min-height: 32px; }
.btn-action-view { background: #eff6ff; color: #1e40af; }
.btn-action-view:hover { background: #1e40af; color: var(--white); }
.btn-action-complete { background: #ecfdf5; color: #065f46; }
.btn-action-complete:hover { background: #065f46; color: var(--white); }
.btn-action-confirm { background: #dbeafe; color: #1e40af; }
.btn-action-confirm:hover { background: #1e40af; color: var(--white); }
.btn-action-delete { background: #fef2f2; color: #991b1b; }
.btn-action-delete:hover { background: #991b1b; color: var(--white); }

/* Pagination */
.pagination { display: flex; justify-content: center; align-items: center; gap: 6px; margin-top: 28px; }
.page-link {
    display: flex; align-items: center; justify-content: center;
    min-width: 40px; height: 40px;
    padding: 0 12px;
    font-size: 14px; font-weight: 600;
    border-radius: var(--border-radius);
    background: var(--white);
    color: var(--charcoal);
    border: 1.5px solid var(--light-border);
    transition: all var(--transition-fast);
}
.page-link:hover, .page-link.active { background: var(--navy); color: var(--white); border-color: var(--navy); }
.page-link.disabled { opacity: 0.4; cursor: not-allowed; pointer-events: none; }

/* Modal */
.modal-overlay { display: none; position: fixed; inset: 0; z-index: 10000; background: rgba(11, 31, 51, 0.6); align-items: center; justify-content: center; padding: 20px; backdrop-filter: blur(4px); }
.modal-overlay.active { display: flex; }
.modal { background: var(--white); border-radius: var(--border-radius-lg); max-width: 600px; width: 100%; max-height: 90vh; overflow-y: auto; box-shadow: var(--shadow-lg); border: 1px solid var(--light-border); }
.modal-header { display: flex; align-items: center; justify-content: space-between; padding: 24px 28px; border-bottom: 1px solid var(--light-border); }
.modal-title { font-size: 1.2rem; color: var(--navy); font-weight: 700; }
.modal-close { background: none; border: none; font-size: 24px; color: var(--mid-grey); cursor: pointer; padding: 4px; line-height: 1; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: all var(--transition-fast); }
.modal-close:hover { background: var(--light-grey); color: var(--navy); }
.modal-body { padding: 28px; }
.modal-footer { padding: 20px 28px; border-top: 1px solid var(--light-border); display: flex; justify-content: flex-end; gap: 8px; flex-wrap: wrap; }

/* Admin Login */
.admin-login-wrapper { display: flex; align-items: center; justify-content: center; min-height: 100vh; padding: 24px; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); position: relative; }
.admin-login-wrapper::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(200, 169, 81, 0.1) 0%, transparent 70%); pointer-events: none; }
.admin-login-card { width: 100%; max-width: 420px; background: var(--white); padding: 48px; border-radius: var(--border-radius-lg); box-shadow: var(--shadow-lg); border: 1px solid var(--light-border); position: relative; z-index: 1; }
.admin-login-logo { text-align: center; margin-bottom: 40px; }
.admin-login-logo img { width: 64px; height: 64px; margin: 0 auto 16px; }
.admin-login-logo h1 { font-size: 1.6rem; color: var(--navy); font-family: var(--font-accent); font-weight: 700; }
.admin-login-logo p { color: var(--mid-grey); font-size: 14px; margin: 6px 0 0; }
.login-error { background: #fef2f2; color: #991b1b; padding: 14px 18px; border-radius: var(--border-radius); font-size: 14px; font-weight: 600; margin-bottom: 24px; border: 1px solid #fee2e2; }
.login-footer { text-align: center; margin-top: 28px; font-size: 13px; color: var(--mid-grey); }
.login-footer a { color: var(--gold); font-weight: 600; }
.input-icon-wrapper { position: relative; }
.input-icon-wrapper .form-input { padding-left: 48px; }
.input-icon-wrapper .input-icon { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; opacity: 0.4; }

/* Empty State */
.empty-state { text-align: center; padding: 60px 24px; }
.empty-state-icon { font-size: 52px; margin-bottom: 20px; opacity: 0.4; }
.empty-state-title { font-size: 1.3rem; color: var(--navy); margin-bottom: 10px; font-weight: 700; }
.empty-state-text { color: var(--mid-grey); font-size: 14px; }

/* ============================================
   SERVICES HOW IT WORKS
   ============================================ */
.step-circle {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    color: var(--navy);
    font-family: var(--font-accent);
    font-size: 1.6rem;
    font-weight: 700;
    box-shadow: var(--shadow-gold);
}

/* ============================================
   RESPONSIVE - TABLET (768px+)
   ============================================ */
@media (min-width: 768px) {
    :root { --section-padding: 120px; --gutter: 32px; }
    .grid-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr 1fr; gap: 16px; }
    .main-nav { display: block; }
    .mobile-menu-toggle { display: none; }
    .mobile-nav, .mobile-nav-backdrop { display: none !important; }
    .hero-split { grid-template-columns: 1fr 1fr; min-height: 600px; }
    .hero-split .hero-content { padding: 80px var(--gutter); max-width: 100%; }
    .hero-split .hero-image-side { min-height: auto; }
    .about-section { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; }
    .stats-grid { grid-template-columns: repeat(4, 1fr); }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-cta-container { flex-direction: row; }
    .page-hero { padding: 80px 0; }
    .page-hero .hero-title { font-size: clamp(2rem, 4vw, 2.8rem); }
}

/* ============================================
   RESPONSIVE - DESKTOP (1024px+)
   ============================================ */
@media (min-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .trust-grid { grid-template-columns: repeat(4, 1fr); }
    .nav-link { padding: 10px 18px; }
}

/* ============================================
   MOBILE SPECIFIC (max 767px)
   ============================================ */
@media (max-width: 767px) {
    .section { padding: 60px 0; }
    .hero { min-height: auto; padding: 60px 0; }
    .hero-content { padding: 0; }
    .hero-title { font-size: 2rem; }
    .hero-title .accent::after { height: 3px; bottom: -2px; }
    .hero-description { font-size: 1rem; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; }
    .hero-split .hero-image-side { min-height: 260px; }
    .form-card { padding: 28px 20px; }
    .card-body { padding: 22px; }
    .testimonial-card { padding: 28px 24px; }
    .feature-card { padding: 28px 20px; }
    .section-header { margin-bottom: 40px; }
    .section-label { font-size: 10px; padding: 6px 14px; }
    .pricing-hero { padding: 40px 16px 32px; }
    .trust-strip { gap: 0.8rem; padding: 1.2rem 16px; }
    .price-section { margin-top: 2.5rem; padding: 0 16px; }
    .price-table tbody td { padding: 12px 14px; font-size: 13px; }
    .price-table thead th { padding: 12px 14px; }
    .price-cta-footer { flex-direction: column; text-align: center; padding: 0 16px 2.5rem; }
    .footer-cta-container { flex-direction: column; text-align: center; }
    .footer-cta-heading { font-size: 1.5rem; }
    .footer-grid { gap: 40px; text-align: center; }
    .footer-logo-link { justify-content: center; }
    .footer-social { justify-content: center; }
    .footer-contact-item { justify-content: center; }
    .footer-main { padding: 48px 0 24px; }
    .admin-card { padding: 24px 16px; }
    .admin-login-card { padding: 32px 24px; }
    .modal-footer { justify-content: center; }
    .contact-info-card { padding: 28px 20px; }
    .contact-map { height: 280px; }
    .about-image::after { display: none; }
    .cta-section { padding: 72px 0; }
    .page-hero { padding: 48px 0; }
    .page-hero .hero-title { font-size: 1.8rem; }
}

/* ============================================
   PRINT
   ============================================ */
@media print {
    .site-header, .site-footer, .mobile-menu-toggle, .btn, .flash-message { display: none !important; }
    body { color: #000; background: #fff; }
    .section { padding: 20px 0; }
}
