/* ===== 1. ROOT VARIABLES & RESET ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --deep-navy: #0a1628;
  --midnight: #0f1f3a;
  --dark-slate: #1a2d4a;
  --steel: #2a3f5f;
  --warm-gold: #c8a45e;
  --soft-gold: #d4b87a;
  --pale-gold: #e8d5a8;
  --cream: #f5f0e8;
  --off-white: #faf8f4;
  --maroon: #6b2d3e;
  --sage: #5a7a5a;
  --text-dark: #1a1a2e;
  --text-medium: #3a3a5a;
  --text-light: #6a6a8a;
  --text-muted: #8a8aaa;
}

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body { font-family: 'Inter', sans-serif; color: var(--text-dark); background: var(--off-white); overflow-x: hidden; line-height: 1.6; }

/* Custom Desktop Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--deep-navy); }
::-webkit-scrollbar-thumb { background: var(--warm-gold); border-radius: 4px; }

/* ===== 2. ANIMATIONS & REVEALS ===== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-10px); } }
@keyframes pulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 0.8; } }

.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-60px); transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.reveal-left.active { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(60px); transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.reveal-right.active { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.92); transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.reveal-scale.active { opacity: 1; transform: scale(1); }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }

/* ===== 3. NAVIGATION ===== */
.navbar { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; padding: 0.75rem 0; transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.navbar.scrolled { background: rgba(10, 22, 40, 0.97); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); padding: 0.5rem 0; box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3); border-bottom: 1px solid rgba(255,255,255,0.05); }
.navbar.scrolled .nav-logo img { height: 50px; }

.nav-container { max-width: 1400px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; position: relative; }
.nav-logo { display: flex; align-items: center; gap: 0; text-decoration: none; color: var(--cream); }
.nav-logo img { height: 60px; width: auto; transition: all 0.3s ease; }
.nav-logo-text { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; margin-left: 0.5rem; letter-spacing: 0.5px; white-space: nowrap; }

.nav-right { display: flex; align-items: center; gap: 2rem; }

.nav-links { display: flex; align-items: center; gap: 1.5rem; list-style: none; margin: 0; margin-right: 1rem; }
.nav-links a { color: var(--cream); text-decoration: none; font-size: 0.85rem; font-weight: 500; letter-spacing: 0.5px; text-transform: uppercase; position: relative; padding: 0.25rem 0; transition: color 0.3s ease; border-bottom: 2px solid transparent; }
.nav-links a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: var(--warm-gold); transition: width 0.3s ease; }
.nav-links a:hover { color: var(--warm-gold); }
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 1.25rem; }
.nav-phone { display: flex; align-items: center; gap: 0.4rem; color: var(--cream); text-decoration: none; font-weight: 600; font-size: 0.95rem; transition: color 0.3s ease; }
.nav-phone:hover { color: var(--warm-gold); }
.nav-phone svg { color: var(--warm-gold); }
.nav-cta { background: linear-gradient(135deg, var(--warm-gold), var(--soft-gold)); color: var(--deep-navy); padding: 0.6rem 1.4rem; border-radius: 50px; font-weight: 700; font-size: 0.85rem; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(200, 164, 94, 0.2); border: none; text-decoration: none; text-transform: uppercase; letter-spacing: 0.5px; white-space: nowrap; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(200, 164, 94, 0.4); color: var(--deep-navy); }

.mobile-toggle { display: none; flex-direction: column; justify-content: center; align-items: center; width: 44px; height: 44px; background: transparent; border: none; cursor: pointer; z-index: 1001; padding: 0; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--cream); transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); position: absolute; border-radius: 2px; }
.mobile-toggle span:nth-child(1) { transform: translateY(-7px); }
.mobile-toggle span:nth-child(2) { transform: translateY(0); }
.mobile-toggle span:nth-child(3) { transform: translateY(7px); }
.mobile-toggle.active span:nth-child(1) { transform: translateY(0) rotate(45deg); background: var(--warm-gold); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-toggle.active span:nth-child(3) { transform: translateY(0) rotate(-45deg); background: var(--warm-gold); }

/* ===== 4. HERO SECTION ===== */
.hero { min-height: 90vh; display: flex; align-items: center; position: relative; overflow: hidden; background: linear-gradient(170deg, var(--deep-navy) 0%, var(--midnight) 40%, var(--dark-slate) 100%); padding: 8rem 2rem 4rem; }
.hero-bg-blur { position: absolute; top: -20%; right: -10%; width: 60%; height: 60%; background: radial-gradient(circle, rgba(200, 164, 94, 0.12) 0%, transparent 60%); filter: blur(80px); z-index: 0; }
.hero-container { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 2; width: 100%; }

.hero-content { text-align: left; display: flex; flex-direction: column; align-items: flex-start; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(200, 164, 94, 0.3); padding: 0.4rem 1rem; border-radius: 50px; margin-bottom: 2rem; backdrop-filter: blur(10px); animation: fadeInDown 1s ease 0.2s both; }
.hero-badge .badge-icon { font-size: 0.9rem; }
.hero-badge span:not(.badge-icon) { color: var(--pale-gold); font-size: 0.85rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }

.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.6rem, 4.5vw, 4rem); font-weight: 700; color: var(--cream); line-height: 1.15; margin-bottom: 1.5rem; animation: fadeInUp 1s ease 0.4s both; letter-spacing: -0.5px; }
.hero h1 .text-gold { color: var(--warm-gold); font-style: italic; font-family: 'Cormorant Garamond', serif; font-weight: 500; padding-right: 0.2rem; }
.hero-subtitle { font-family: 'Inter', sans-serif; font-size: clamp(1rem, 1.5vw, 1.15rem); color: rgba(255, 255, 255, 0.75); line-height: 1.7; max-width: 550px; margin: 0 0 2.5rem; animation: fadeInUp 1s ease 0.6s both; }

.hero-buttons { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; margin-bottom: 3rem; animation: fadeInUp 1s ease 0.8s both; }
.btn-primary { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; background: linear-gradient(135deg, var(--warm-gold), var(--soft-gold)); color: var(--deep-navy); padding: 1rem 2.2rem; border-radius: 50px; font-size: 0.95rem; font-weight: 700; text-decoration: none; text-transform: uppercase; letter-spacing: 0.5px; transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); border: none; box-shadow: 0 10px 25px rgba(200, 164, 94, 0.3); cursor: pointer; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 35px rgba(200, 164, 94, 0.45); }
.btn-secondary { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; background: transparent; color: var(--cream); padding: 1rem 2.2rem; border-radius: 50px; font-size: 0.95rem; font-weight: 600; text-decoration: none; text-transform: uppercase; letter-spacing: 0.5px; border: 1px solid rgba(255, 255, 255, 0.25); transition: all 0.4s ease; cursor: pointer; }
.btn-secondary:hover { background: rgba(255, 255, 255, 0.05); border-color: var(--warm-gold); color: var(--warm-gold); transform: translateY(-3px); }

.hero-trust { display: flex; align-items: center; gap: 1.25rem; animation: fadeInUp 1s ease 1s both; border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 1.5rem; }
.trust-avatars { display: flex; align-items: center; }
.trust-avatars .avatar { width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--deep-navy); background: var(--warm-gold); display: flex; align-items: center; justify-content: center; color: var(--deep-navy); font-family: 'Playfair Display', serif; font-size: 0.8rem; font-weight: 700; margin-left: -12px; }
.trust-avatars .avatar:first-child { margin-left: 0; background: var(--maroon); color: white; }
.trust-avatars .avatar:last-child { background: var(--pale-gold); }
.trust-text { display: flex; flex-direction: column; gap: 0.2rem; }
.trust-text span { font-size: 0.85rem; color: rgba(255,255,255,0.8); }
.trust-text .stars { color: var(--warm-gold); font-size: 0.8rem; font-weight: 600; }

.hero-visual { position: relative; width: 100%; max-width: 420px; margin: 0 auto; display: flex; justify-content: center; align-items: center; animation: fadeInUp 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both; }
.hero-image-split { --pos: 50%; width: 100%; aspect-ratio: 3/4; border-radius: 20px; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.4); border: 2px solid rgba(255,255,255,0.1); position: relative; z-index: 1; }
.gallery-image-split { --pos: 50%; width: 100%; height: 100%; position: relative; z-index: 1; overflow: hidden; }
.split-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: 1 !important; pointer-events: none; }
.before-img { clip-path: polygon(0 0, var(--pos) 0, var(--pos) 100%, 0 100%); filter: contrast(0.95); z-index: 2; }
.after-img { filter: contrast(1.05) saturate(1.1); z-index: 1; }
.split-slider { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; z-index: 10; margin: 0; touch-action: pan-y; }
.split-slider-line { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 4px; background: linear-gradient(to bottom, var(--warm-gold), var(--soft-gold)); transform: translateX(-50%); z-index: 5; box-shadow: 0 0 15px rgba(0,0,0,0.6); pointer-events: none; }
.split-slider-thumb { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 50px; height: 50px; background: white; border: 3px solid var(--warm-gold); border-radius: 50%; box-shadow: 0 4px 15px rgba(0,0,0,0.4); display: flex; align-items: center; justify-content: center; color: var(--deep-navy); gap: 2px; }
.split-slider-thumb svg { width: 22px; height: 22px; }
.split-label { position: absolute; bottom: 1rem; background: rgba(10, 22, 40, 0.85); border: 1px solid rgba(200, 164, 94, 0.4); color: var(--cream); padding: 0.4rem 1rem; border-radius: 20px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); z-index: 6; pointer-events: none; box-shadow: 0 4px 10px rgba(0,0,0,0.3); }
.label-before { left: 1rem; }
.label-after { right: 1rem; }

.hero-floating-card { position: absolute; z-index: 20; background: rgba(255, 255, 255, 0.96); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); padding: 1.1rem 1.4rem; border-radius: 16px; display: flex; align-items: center; gap: 1rem; box-shadow: 0 20px 40px rgba(0,0,0,0.25); border: 1px solid rgba(255,255,255,0.4); animation: float 6s ease-in-out infinite; }
.hero-floating-card .icon { width: 48px; height: 48px; background: rgba(200, 164, 94, 0.15); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; }
.hero-floating-card .details { display: flex; flex-direction: column; }
.hero-floating-card .title { font-family: 'Playfair Display', serif; font-weight: 700; color: var(--text-dark); font-size: 1.1rem; line-height: 1.2; }
.hero-floating-card .desc { font-size: 0.85rem; color: var(--text-medium); margin-top: 0.1rem; }
.hero-floating-card.top-right { top: 8%; right: -40px; animation-delay: 1s; }
.hero-floating-card.bottom-left { bottom: 12%; left: -40px; animation-delay: 2.5s; }

/* ===== 5. SHARED SECTION STYLES ===== */
.section-container { max-width: 1200px; margin: 0 auto; }
.section-label { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--warm-gold); margin-bottom: 0.5rem; }
.section-label::before { content: ''; width: 30px; height: 2px; background: var(--warm-gold); }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--text-dark); line-height: 1.2; margin-bottom: 1.5rem; }
.section-title span { color: var(--maroon); }

.hero-bottom-curve { position: absolute; bottom: -1px; left: 0; width: 100%; overflow: hidden; line-height: 0; z-index: 10; height: clamp(40px, 8vw, 90px); }
.hero-bottom-curve svg { display: block; width: 100%; height: 100%; }

/* ===== 7. ABOUT SECTION ===== */
.about-section { padding: 4rem 2rem; background: var(--off-white); position: relative; }
/* The muddy linear-gradient transition overlay was removed in favor of a crisp SVG slant */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 2; }
.about-image-wrapper { position: relative; width: 100%; max-width: 500px; margin: 0 auto; height: 500px; }
.about-img-1 { position: absolute; top: 0; left: 0; width: 70%; height: 80%; object-fit: cover; border-radius: 24px; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15); z-index: 1; }
.about-img-2 { position: absolute; bottom: 0; right: 0; width: 60%; height: 60%; object-fit: cover; border-radius: 20px; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25); border: 8px solid var(--off-white); z-index: 2; transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.about-img-2:hover { transform: scale(1.05) translateY(-5px); z-index: 3; }

.about-content { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; }
.about-text { font-size: 1.05rem; color: var(--text-medium); line-height: 1.8; margin-bottom: 1.25rem; }
.about-quote { background: linear-gradient(135deg, var(--deep-navy), var(--midnight)); padding: 2.2rem 2.5rem; border-radius: 16px; position: relative; margin-top: 1.5rem; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.about-quote::before { content: ''; position: absolute; top: 0; left: 0; width: 6px; height: 100%; background: linear-gradient(to bottom, var(--warm-gold), var(--maroon)); }
.about-quote p { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-style: italic; color: var(--cream); line-height: 1.6; position: relative; z-index: 1; }
.about-quote .quote-icon { font-size: 5rem; color: var(--warm-gold); opacity: 0.15; position: absolute; top: -0.5rem; left: 1rem; font-family: 'Playfair Display', serif; line-height: 1; }

/* ===== 8. SERVICES SECTION ===== */
/* COMPACTED: Slashed padding from 8rem to 4rem, reduced header margin */
.services-section { padding: 4rem 2rem; background: linear-gradient(180deg, var(--off-white) 0%, var(--cream) 100%); }
.services-header { text-align: center; max-width: 700px; margin: 0 auto 3rem; }
.services-header .section-title { margin-bottom: 1rem; }
.services-subtitle { font-size: 1.1rem; color: var(--text-light); line-height: 1.7; }

.services-grid { display: flex; flex-wrap: nowrap; justify-content: center; gap: 1.5rem; max-width: 1300px; margin: 0 auto; }
.service-card { background: white; border-radius: 20px; padding: 1.5rem 1.25rem; position: relative; overflow: hidden; transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06); border: 1px solid rgba(0, 0, 0, 0.05); text-align: left; flex: 1; min-width: 0; }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12); }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--warm-gold), var(--maroon)); opacity: 0; transition: opacity 0.3s ease; }
.service-card:hover::before { opacity: 1; }

.service-icon { width: 60px; height: 60px; background: linear-gradient(135deg, rgba(200, 164, 94, 0.1), rgba(200, 164, 94, 0.05)); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; transition: all 0.3s ease; margin-bottom: 1rem; }
.service-card .service-icon { margin: 0 auto 1rem; }
.service-card h3 { text-align: center; font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.5rem; }
.service-card p { text-align: center; font-size: 0.95rem; color: var(--text-light); line-height: 1.5; margin-bottom: 1rem; }

.service-features { list-style: none; display: flex; flex-direction: column; gap: 0.35rem; }
.service-features li { display: flex; align-items: flex-start; gap: 0.4rem; font-size: 0.9rem; color: var(--text-medium); line-height: 1.4; }
.service-features li::before { content: '✓'; color: var(--warm-gold); font-weight: 700; font-size: 0.85rem; line-height: 1.4; }
.service-features li.bonus { color: var(--warm-gold); font-size: 0.85rem; font-weight: 600; margin-top: 0.75rem; padding-top: 0.75rem; border-top: 1px solid #eee; justify-content: center; text-align: center; }
.service-features li.bonus::before { content: '★'; color: var(--warm-gold); }

/* ===== 9. PROCESS SECTION ===== */
/* COMPACTED: Slashed padding, reduced header margin, converted to horizontal desktop row */
.process-section { padding: 4rem 2rem; background: linear-gradient(170deg, var(--deep-navy) 0%, var(--midnight) 100%); position: relative; overflow: hidden; }
.process-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%, rgba(200, 164, 94, 0.06) 0%, transparent 50%), radial-gradient(ellipse at 70% 50%, rgba(107, 45, 62, 0.06) 0%, transparent 50%); }

.process-header { text-align: center; max-width: 700px; margin: 0 auto 3rem; position: relative; z-index: 2; }
.process-header .section-title { color: var(--cream); }
.process-header .section-subtitle { color: var(--text-muted); font-size: 1.1rem; line-height: 1.7; }

/* Desktop Horizontal Grid Force */
.process-timeline { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.process-timeline::before { display: none; } /* Deleted vertical line */

.process-step { display: flex; flex-direction: column; align-items: center; text-align: center; margin-bottom: 0; }
.step-empty { display: none; } /* Hides zig-zag empty boxes */

.step-content { text-align: center; order: 2; }
.process-step:nth-child(even) .step-content { order: 2; text-align: center; } /* Overrides zig-zag logic */

.step-dot { order: 1; width: 50px; height: 50px; background: linear-gradient(135deg, var(--warm-gold), var(--soft-gold)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 800; color: var(--deep-navy); box-shadow: 0 0 0 8px rgba(200, 164, 94, 0.15); margin: 0 auto 1.5rem; }
.step-number { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 800; color: var(--warm-gold); opacity: 0.3; line-height: 1; margin-bottom: 0.5rem; }
.step-content h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--cream); margin-bottom: 0.5rem; }
.step-content p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }

/* ===== 10. SAFETY BANNER ===== */
.safety-banner { padding: 4rem 2rem; background: linear-gradient(135deg, var(--sage) 0%, #3a5a3a 100%); position: relative; overflow: hidden; border-radius: 24px; margin: 0 1rem; box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.safety-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.05) 0%, transparent 50%), radial-gradient(ellipse at 80% 50%, rgba(255,255,255,0.03) 0%, transparent 50%); }

.safety-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; position: relative; z-index: 2; }
.safety-content h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3.5vw, 2.8rem); color: white; line-height: 1.25; margin-bottom: 1.25rem; }
.safety-content h2 span { color: var(--pale-gold); }
.safety-content p { color: rgba(255, 255, 255, 0.9); font-size: 1.1rem; line-height: 1.8; margin-bottom: 2rem; text-align: justify; }

.safety-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
.safety-feature { display: flex; align-items: center; gap: 0.75rem; background: rgba(255, 255, 255, 0.08); padding: 1rem 1.25rem; border-radius: 14px; backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.1); transition: transform 0.3s ease, background 0.3s ease; }
.safety-feature:hover { transform: translateY(-3px); background: rgba(255, 255, 255, 0.12); }
.safety-feature-icon { width: 44px; height: 44px; background: rgba(255, 255, 255, 0.15); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.safety-feature span { color: white; font-size: 0.9rem; font-weight: 600; letter-spacing: 0.2px; }

.safety-image { border-radius: 24px; overflow: hidden; box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25); position: relative; }
.safety-image img { width: 100%; aspect-ratio: 4/3; height: auto; max-height: 600px; object-fit: cover; display: block; transition: transform 0.5s ease; }
.safety-image:hover img { transform: scale(1.05); }

/* ===== 11. GALLERY SECTION ===== */
/* COMPACTED: Slashed padding from 8rem to 4rem */
.gallery-section { padding: 4rem 2rem; background: var(--cream); }
.gallery-header { text-align: center; max-width: 700px; margin: 0 auto 3rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; max-width: 1200px; margin: 0 auto; }
.gallery-item { border-radius: 16px; overflow: hidden; position: relative; cursor: pointer; background: white; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); height: 100%; min-height: 240px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); display: block; }
.gallery-item:hover img { transform: scale(1.03); }
.gallery-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 1rem 1.25rem; background: linear-gradient(to top, rgba(10, 22, 40, 0.85), transparent); color: white; font-size: 0.85rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.gallery-label span { color: var(--warm-gold); }

.gallery-label-top { position: absolute; top: 1rem; left: 1rem; padding: 0.35rem 0.85rem; background: rgba(10, 22, 40, 0.85); color: white; font-size: 0.75rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; border-radius: 20px; border: 1px solid rgba(200, 164, 94, 0.4); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); z-index: 5; pointer-events: none; }

/* ===== 12. TESTIMONIALS ===== */
/* COMPACTED: Slashed padding from 8rem to 4rem */
.testimonials-section { padding: 4rem 2rem; background: var(--off-white); }
.testimonials-header { text-align: center; max-width: 700px; margin: 0 auto 3rem; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 1200px; margin: 0 auto; }
.testimonial-card { background: white; border-radius: 20px; padding: 2.5rem; position: relative; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06); border: 1px solid rgba(0, 0, 0, 0.05); transition: all 0.4s ease; }
.testimonial-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1); }
.testimonial-stars { display: flex; gap: 0.25rem; margin-bottom: 1.25rem; color: var(--warm-gold); font-size: 1rem; }
.testimonial-text { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-style: italic; color: var(--text-medium); line-height: 1.7; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--warm-gold), var(--maroon)); display: flex; align-items: center; justify-content: center; color: white; font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; }
.testimonial-info h4 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--text-dark); }
.testimonial-info span { font-size: 0.8rem; color: var(--text-muted); }

/* ===== 13. CTA & CONTACT (SEAMLESSLY MERGED) ===== */
/* COMPACTED: Removing bottom padding on CTA, matching background gradients, and hiding redundant text */
.cta-section { padding: 4rem 2rem 2rem; background: linear-gradient(170deg, var(--deep-navy) 0%, var(--midnight) 100%); position: relative; overflow: hidden; text-align: center; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, rgba(200, 164, 94, 0.1) 0%, transparent 60%); }
.cta-content { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.cta-content h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3.2rem); color: var(--cream); line-height: 1.3; margin-bottom: 1.5rem; }
.cta-content h2 span { color: var(--warm-gold); }
.cta-content p { color: var(--text-muted); font-size: 1.15rem; line-height: 1.7; margin-bottom: 2.5rem; }
.cta-buttons { display: flex; align-items: center; justify-content: center; gap: 1.25rem; flex-wrap: wrap; }

/* Contact Section now acts as the bottom half of the CTA section */
.contact-section { padding: 0 2rem 4rem; background: var(--midnight); }
.contact-info { display: none; } /* Hides redundant header/text */

.contact-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; max-width: 800px; margin: 0 auto; }
.contact-details { display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; padding-top: 1rem; }
.contact-detail { display: flex; align-items: center; gap: 1rem; }
.contact-detail-icon { width: 56px; height: 56px; background: rgba(200, 164, 94, 0.1); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; color: var(--warm-gold); }
.contact-detail-text h4 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--cream); margin-bottom: 0.2rem; }
.contact-detail-text p, .contact-detail-text a { color: var(--text-muted); font-size: 0.95rem; text-decoration: none; transition: color 0.3s ease; }
.contact-detail-text a:hover { color: var(--warm-gold); }

/* Form perfectly pops on the dark background now */
.form-wrapper { background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); padding: 3rem; border-radius: 24px; border: 1px solid rgba(200, 164, 94, 0.2); box-shadow: 0 20px 40px rgba(0,0,0,0.1); text-align: left; margin-top: 1rem; }
.form-grid-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
.input-group { display: flex; flex-direction: column; gap: 0.5rem; }
.input-group label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; color: var(--text-light); letter-spacing: 1px; margin-left: 4px; }
.input-group input, .input-group textarea { width: 100%; padding: 1rem; background: #ffffff; border: 1px solid #e0e0e0; border-radius: 12px; font-family: 'Inter', sans-serif; font-size: 1rem; transition: all 0.3s ease; }
.input-group textarea { resize: vertical; min-height: 120px; }
.input-group input:focus, .input-group textarea:focus { outline: none; border-color: var(--warm-gold); box-shadow: 0 0 0 4px rgba(200, 164, 94, 0.1); }

.file-upload { border: 2px dashed #ddd; border-radius: 12px; padding: 2rem; text-align: center; background: #ffffff; position: relative; transition: all 0.3s ease; }
.file-upload:hover { border-color: var(--warm-gold); background: rgba(200, 164, 94, 0.02); }
.file-upload input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }

.services-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 0.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  border: 1px solid #eee;
}

.checkbox-container {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-medium);
  user-select: none;
  transition: color 0.3s ease;
}

.checkbox-container:hover {
  color: var(--warm-gold);
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 22px;
  width: 22px;
  background-color: #fff;
  border: 2px solid #ddd;
  border-radius: 6px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.checkbox-container:hover input ~ .checkmark {
  border-color: var(--warm-gold);
}

.checkbox-container input:checked ~ .checkmark {
  background-color: var(--warm-gold);
  border-color: var(--warm-gold);
  box-shadow: 0 4px 10px rgba(200, 164, 94, 0.3);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}

#form-success { display: none; text-align: center; padding: 4rem 2rem; background: rgba(90, 122, 90, 0.05); border: 1px solid var(--sage); border-radius: 24px; animation: fadeInUp 0.6s ease; max-width: 800px; margin: 3rem auto 0; }

/* ===== MOBILE ACTION BAR (Hidden on Desktop) ===== */
.mobile-action-bar { display: none; }

/* ===== 14. FOOTER ===== */
/* Compact & Professional */
.footer { background: var(--deep-navy); padding: 3rem 2rem 1.5rem; color: var(--cream); border-top: 4px solid var(--warm-gold); }
.footer-top { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.footer-col h4 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--warm-gold); margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 1px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a, .footer-col ul li { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; transition: color 0.3s ease; }
.footer-col ul a:hover { color: var(--warm-gold); }
.brand-col p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; margin: 1rem 0; max-width: 350px; }
.footer-brand { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.footer-brand img { height: 45px; width: auto; }
.footer-brand-text { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--cream); }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: rgba(255, 255, 255, 0.05); color: var(--cream); transition: all 0.3s ease; border: 1px solid rgba(255,255,255,0.1); }
.footer-social a:hover { background: var(--warm-gold); color: var(--deep-navy); transform: translateY(-2px); border-color: var(--warm-gold); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 1.5rem; text-align: center; }
.footer-bottom p { color: var(--text-muted); font-size: 0.85rem; }

/* ===== UTILS ===== */
.float-btn { display: none; }
.mobile-overlay { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.5); z-index: 999; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.mobile-overlay.active { opacity: 1; pointer-events: all; }
img { opacity: 0; transition: opacity 0.5s ease; }
img.loaded { opacity: 1; }
.lightbox { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.92); z-index: 10000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; cursor: zoom-out; }
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 8px; opacity: 1 !important; }
.lightbox-close { position: absolute; top: 1.5rem; right: 1.5rem; width: 44px; height: 44px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; color: white; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s ease; }
.lightbox-close:hover { background: rgba(255,255,255,0.2); }


/* =========================================
   15. TABLET OPTIMIZATIONS (769px - 1024px)
   ========================================= */
@media (max-width: 1024px) and (min-width: 769px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .safety-container { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { flex-wrap: wrap !important; justify-content: center !important; }
  .service-card { flex: 0 0 calc(50% - 1rem) !important; min-width: 0 !important; }
  
  /* Compact tablet process grid */
  .process-timeline { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
}


/* =========================================
   16. MOBILE OPTIMIZATIONS (768px and below)
   ========================================= */
@media (max-width: 768px) {
  /* COMPACTED PADDING: Slashed from 4rem to 2.5rem */
  .about-section, .process-section, .safety-banner, .cta-section { padding: 2.5rem 1.5rem; }
  .contact-section { padding: 0 1.5rem 2.5rem; }
  .services-section, .gallery-section, .testimonials-section { padding: 2.5rem 0; }
  .services-header, .gallery-header, .testimonials-header, .process-header { padding: 0 1.5rem; margin-bottom: 2rem; }

/* Hero */
  .hero { min-height: 100svh; padding: 6rem 1.5rem 4rem; } 
  .hero-container { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .hero-content { align-items: center; text-align: center; padding: 0; }
  .hero h1 { font-size: 2.2rem; text-align: center; }
  .hero-subtitle { margin: 0 auto 2rem; max-width: 100%; text-align: center; }
  .hero-buttons { flex-direction: column; width: 100%; gap: 1rem; justify-content: center; margin-bottom: 2rem; }
  .btn-primary, .btn-secondary { width: 100%; }
  
  .hero-trust { justify-content: center; flex-direction: column; text-align: center; gap: 1rem; }
  .trust-avatars { justify-content: center; }
  
  .hero-visual { max-width: 330px; margin: 1rem auto 0; }
  .hero-floating-card { z-index: 20; padding: 0.75rem 1rem; }
  .hero-floating-card.top-right { right: -15px; top: -15px; transform: scale(0.9); }
  .hero-floating-card.bottom-left { left: -15px; bottom: -15px; transform: scale(0.9); }
  
  .hero-badge { flex-wrap: wrap; justify-content: center; text-align: center; margin-top: 1rem; }
  .hero-badge span { line-height: 1.4; }
  

  /* Force 1-Column Grids */
  .about-grid, .safety-container, .form-grid-inner { grid-template-columns: 1fr !important; gap: 2rem; }
  .about-image-wrapper { height: 400px; max-width: 400px; margin-top: 1rem; }
  
  /* Compact 2x2 App Grid for Safety Features */
  .safety-banner { margin: 0; border-radius: 0; }
  .safety-features { grid-template-columns: 1fr 1fr !important; gap: 0.75rem; }
  .safety-feature { flex-direction: column; text-align: center; padding: 1.25rem 0.5rem; justify-content: center; }
  .safety-feature-icon { margin: 0 auto 0.75rem auto; width: 36px; height: 36px; font-size: 1.1rem; }
  .safety-feature span { font-size: 0.8rem; line-height: 1.3; }

  /* THE SWIPE CAROUSELS (Process Added!) */
  .services-grid, .gallery-grid, .testimonials-grid, .process-timeline {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 1.5rem;
    gap: 1rem;
    padding: 0.5rem 1.5rem 2rem 1.5rem;
    margin: 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--warm-gold) rgba(200, 164, 94, 0.1);
  }

  /* Force padding on right edge of carousel */
  .services-grid::after, .gallery-grid::after, .testimonials-grid::after, .process-timeline::after {
    content: ''; flex: 0 0 1px;
  }

  /* The Cards - FORCED to 85vw */
  .service-card, .testimonial-card, .gallery-item, .process-step {
    flex: 0 0 85vw !important;
    width: 85vw !important;
    max-width: none !important;
    min-width: 0 !important;
    scroll-snap-align: start;
  }
  
  .service-card { padding: 1.5rem 1.25rem; }
  .testimonial-card { padding: 2rem 1.5rem; }
  
  /* Process Step Mobile Styling */
  .process-step { background: rgba(255,255,255,0.03); padding: 2.5rem 1.5rem; border-radius: 16px; border: 1px solid rgba(255,255,255,0.05); margin-bottom: 0; }
  
  /* Reset Gallery Image Desktop Overrides */
  .gallery-item { height: 260px; min-height: 260px; }
  .gallery-item img { height: 100%; min-height: auto; }

  /* Swipe Text Indicator */
  .services-header .services-subtitle::after,
  .gallery-header .services-subtitle::after,
  .testimonials-header .services-subtitle::after,
  .process-header .section-subtitle::after {
    content: '← Swipe to explore →';
    display: block; margin-top: 1.5rem; font-size: 0.8rem; color: var(--warm-gold); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; animation: pulse 2s infinite;
  }

  /* Custom Mobile Scrollbars */
  .services-grid::-webkit-scrollbar, .gallery-grid::-webkit-scrollbar, .testimonials-grid::-webkit-scrollbar, .process-timeline::-webkit-scrollbar { height: 6px; display: block !important; }
  .services-grid::-webkit-scrollbar-track, .gallery-grid::-webkit-scrollbar-track, .testimonials-grid::-webkit-scrollbar-track, .process-timeline::-webkit-scrollbar-track { background: rgba(200, 164, 94, 0.1); border-radius: 6px; }
  .services-grid::-webkit-scrollbar-thumb, .gallery-grid::-webkit-scrollbar-thumb, .testimonials-grid::-webkit-scrollbar-thumb, .process-timeline::-webkit-scrollbar-thumb { background: var(--warm-gold); border-radius: 6px; }

  /* Nav & Form */
  .nav-right { gap: 1rem; }
  
  .nav-links { position: fixed; top: 0; right: -100%; width: 80%; max-width: 350px; height: 100dvh; background: var(--deep-navy); flex-direction: column; justify-content: center; padding: 5rem 2rem; transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); box-shadow: -10px 0 40px rgba(0,0,0,0.5); z-index: 1000; margin: 0; }
  .nav-links.open { right: 0; }
  
  .nav-actions .nav-cta { display: none; } /* Relies on floating button instead */
  .nav-phone-text { display: none; } /* Shrinks to icon-only on mobile top bar */
  .nav-phone { margin-right: 0.5rem; font-size: 1.1rem; }
  .nav-actions { margin: 0; gap: 0; }

  .mobile-toggle { display: flex; }
  
  .nav-logo img { height: 45px; }
  .navbar.scrolled .nav-logo img { height: 40px; }
  .nav-logo-text { font-size: 1.15rem; }
  
  .form-wrapper { padding: 2rem 1.25rem; margin-top: 2rem; }
  .services-checkbox-grid {
    grid-template-columns: 1fr !important;
    padding: 1rem;
    gap: 0.75rem;
  }
  .input-group input { font-size: 16px !important; padding: 0.8rem; }
  .contact-details { flex-direction: column; text-align: left; align-items: flex-start; gap: 1.5rem; padding-top: 0; }
  .cta-buttons { flex-direction: column; width: 100%; }
  .cta-buttons .btn-primary, .cta-buttons .btn-secondary { width: 100%; justify-content: center; }

  /* Footer */
  .footer { padding: 2.5rem 1.5rem 1.5rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .footer-brand { justify-content: center; }
  .brand-col p { margin: 1rem auto; }
  .footer-col ul { align-items: center; }
  .footer-social { justify-content: center; }

  /* =========================================
     FLOATING ACTION BUTTONS
     ========================================= */
  .footer { padding-bottom: calc(75px + env(safe-area-inset-bottom, 10px)) !important; }
  
  .float-btn {
    display: flex;
    position: fixed;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    z-index: 9999;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    bottom: calc(1.5rem + env(safe-area-inset-bottom, 10px));
  }
  .float-btn:active { transform: scale(0.9); }
  
  .float-btn svg { width: 24px; height: 24px; }

  .call-float {
    left: 1.5rem;
    background: linear-gradient(135deg, var(--deep-navy), var(--midnight));
    color: var(--cream);
    border: 2px solid rgba(255,255,255,0.15);
  }
  
  .quote-float {
    right: 1.5rem;
    background: linear-gradient(135deg, var(--warm-gold), var(--soft-gold));
    color: var(--deep-navy);
  }
}

@media (max-width: 480px) {
  .hero h1, .section-title { font-size: 1.8rem; }
  .about-quote { padding: 1.5rem; }
  .nav-logo img { height: 46px; }
  .hero-logo { width: 200px; }
}