/* =========================
   1. SYSTEM VARIABLES
========================= */
:root {
  /* Palette */
  --navy: #020617;        /* Midnight */
  --navy-light: #0F172A;
  --slate: #64748B;       /* Muted Text */
  --ice: #F8FAFC;         /* Light Background */
  --white: #FFFFFF;
  --blue: #0057FF;        /* Electric Blue */
  
  /* Spacing */
  --container: 1240px;
  --radius-btn: 50px;
  
  /* Animation */
  --ease-out: cubic-bezier(0.165, 0.84, 0.44, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--white);
  color: var(--navy);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--navy);
}

a { text-decoration: none; color: inherit; transition: 0.3s ease; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* UTILITIES */
.text-small { 
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem; 
  font-weight: 700; 
  letter-spacing: 0.15em; 
  text-transform: uppercase; 
  display: inline-block;
  margin-bottom: 24px;
}

/* =========================
   2. NAVIGATION
========================= */
nav {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.05); padding: 16px 0;
}
.nav-inner { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.4rem; font-weight: 700; font-family: 'Outfit', sans-serif; letter-spacing: -0.03em; }
.logo span { color: var(--blue); }
.nav-links { display: flex; gap: 40px; align-items: center; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--slate); }
.nav-links a:hover { color: var(--navy); }
.btn-nav {
  background: var(--navy); color: var(--white); padding: 12px 24px; 
  border-radius: var(--radius-btn); font-size: 0.9rem; font-weight: 600;
}
.btn-nav:hover { background: var(--blue); transform: translateY(-2px); }
.menu-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; }

/* =========================
   3. HERO (Updated with Premium Image)
========================= */
.hero {
  position: relative;
  background-color: var(--navy);
  color: var(--white);
  padding: 180px 0 160px;
  overflow: hidden;
  display: flex;
  align-items: center;
  text-align: center;

  /* PREMIUM BACKGROUND IMAGE UPDATE */
  background-image: linear-gradient(to bottom, rgba(2, 6, 23, 0.85), rgba(2, 6, 23, 0.7)), 
                    url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=2000&q=80');
  
  background-size: cover;
  background-position: center;
  background-attachment: scroll; /* Keeps scrolling smooth on mobile */
}

/* Optional: Ambient Glow overlay remains for depth */
.hero::before {
  content: ''; position: absolute; top: -50%; left: 50%; transform: translateX(-50%);
  width: 1000px; height: 800px;
  background: radial-gradient(circle, rgba(0,87,255,0.15) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none; z-index: 0;
}

.hero-content {
  position: relative; z-index: 2; max-width: 900px; margin: 0 auto;
}

.hero-badge {
  display: inline-block; padding: 8px 16px; border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px; background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.8);
  font-size: 0.8rem; font-weight: 600; margin-bottom: 32px; letter-spacing: 0.05em;
  backdrop-filter: blur(10px);
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  margin-bottom: 32px;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.03em;
  /* Added Shadow for Readability against image */
  text-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.75); /* Slightly brighter for contrast */
  max-width: 600px;
  margin: 0 auto 48px;
  font-weight: 300;
  line-height: 1.6;
}

.btn-group { display: flex; gap: 16px; justify-content: center; }
.btn-hero {
  background: var(--white); color: var(--navy); padding: 18px 40px; border-radius: 50px; font-weight: 600; 
  display: inline-flex; align-items: center; gap: 8px; transition: transform 0.2s ease;
}
.btn-hero:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(255,255,255,0.15); }

.btn-transparent {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.15); color: var(--white); 
  padding: 18px 40px; border-radius: 50px; font-weight: 600; transition: background 0.2s ease;
}
.btn-transparent:hover { background: rgba(255,255,255,0.1); }

/* =========================
   4. INFINITE TICKER (Premium)
========================= */
.ticker-wrap {
  width: 100%;
  overflow: hidden;
  background-color: var(--navy);
  /* Added generous padding for breathing room */
  padding: 60px 0; 
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
  z-index: 2;
  
  
}

.ticker-track {
  display: flex;
  gap: 80px; /* Space between items */
  width: max-content;
  animation: scroll 60s linear infinite; /* Slowed down for elegance */
}

/* Pause animation on hover */
.ticker-wrap:hover .ticker-track {
  animation-play-state: paused;
}

.ticker-item {
  color: rgba(255,255,255,0.5); /* Slightly higher contrast */
  font-weight: 700;
  font-size: 1.5rem; /* Larger, more authoritative text */
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
  transition: color 0.3s ease;
  cursor: default;
}

/* Hover effect for individual items */
.ticker-item:hover {
  color: var(--white);
}

/* The Separator Dot */
.ticker-item::after {
  content: "•";
  position: absolute;
  right: -50px; /* Places dot in the middle of the gap */
  color: var(--blue);
  font-size: 1.5rem;
  opacity: 0.5;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 40px)); } /* Adjust for half width + half gap */
}

/* Mobile Ticker Adjustment */
@media (max-width: 768px) {
  .ticker-wrap { padding: 40px 0; }
  .ticker-item { font-size: 1.1rem; }
  .ticker-track { gap: 60px; animation-duration: 40s; }
  .ticker-item::after { right: -35px; }
}
/* =========================
   5. THE STANDARD (Stats)
========================= */
.standard-section { padding: 120px 0; background: var(--white); }
.split-text { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-bottom: 80px; }
.split-text h2 { font-size: 2.5rem; }
.split-text p { font-size: 1.1rem; color: var(--slate); }

.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.stat-card { padding: 40px 20px 0 0; border-top: 1px solid var(--ice); }
.stat-card h3 { font-size: 3.5rem; color: var(--blue); margin-bottom: 8px; font-weight: 700; letter-spacing: -0.04em;}
.stat-card p { font-size: 0.85rem; color: var(--navy); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }

/* =========================
   6. RISK SECTION (Cards)
========================= */
.risk-section { padding: 140px 0; background: var(--navy); color: var(--white); }
.risk-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; margin-top: 60px; }

.risk-card {
  background: rgba(255,255,255,0.03); padding: 40px; border-radius: 4px; border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.3s ease;
}
.risk-card:hover { transform: translateY(-5px); background: rgba(255,255,255,0.06); }
.risk-icon { font-size: 2rem; margin-bottom: 24px; color: var(--blue); }
.risk-card h3 { color: var(--white); margin-bottom: 16px; font-size: 1.25rem; }
.risk-card p { color: rgba(255,255,255,0.6); font-size: 0.95rem; line-height: 1.6; }

/* =========================
   7. EXPERTISE (List View)
========================= */
.expertise-section { padding: 140px 0; background: var(--white); }
.expertise-list { border-top: 1px solid rgba(0,0,0,0.1); }
.expertise-row {
  display: grid; grid-template-columns: 1.5fr 2fr auto; align-items: center; padding: 48px 24px;
  border-bottom: 1px solid rgba(0,0,0,0.1); cursor: pointer; transition: background-color 0.3s ease;
}
.expertise-row:hover { background-color: var(--ice); }
.expertise-row h3 { font-size: 2rem; margin: 0; font-weight: 500; color: var(--navy); }
.expertise-row p { font-size: 1.1rem; color: var(--slate); margin: 0; }
.arrow-btn {
  width: 60px; height: 60px; border-radius: 50%; border: 1px solid rgba(0,0,0,0.1); display: flex;
  align-items: center; justify-content: center; transition: all 0.3s ease; background: var(--white);
}
.expertise-row:hover .arrow-btn { background-color: var(--navy); border-color: var(--navy); transform: scale(1.1); }
.expertise-row:hover .arrow-btn svg { color: var(--white); transform: rotate(-45deg); }

/* =========================
   8. CASE STUDIES
========================= */
.cases-section { padding: 140px 0; background: var(--ice); }
.cases-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }

.case-card {
  background: var(--white); border-radius: 4px; overflow: hidden; transition: transform 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.case-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.case-img { height: 300px; background-color: #ddd; position: relative; }
.case-img img { width: 100%; height: 100%; object-fit: cover; }
.case-content { padding: 40px; }
.case-tag { font-size: 0.75rem; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; display: block; }
.case-card h3 { font-size: 1.5rem; margin-bottom: 16px; }
.case-metric { display: flex; gap: 24px; margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--ice); }
.metric strong { font-size: 1.5rem; color: var(--navy); display: block; line-height: 1; }
.metric span { font-size: 0.8rem; color: var(--slate); }

/* =========================
   9. INSIGHTS
========================= */
.insights-section { padding: 140px 0; background: var(--white); }
.insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.insight-card { border-top: 1px solid var(--navy); padding-top: 24px; transition: opacity 0.3s; }
.insight-card:hover { opacity: 0.7; }
.insight-date { font-size: 0.85rem; color: var(--slate); margin-bottom: 12px; display: block; }
.insight-card h4 { font-size: 1.25rem; line-height: 1.4; margin-bottom: 16px; }
.read-link { font-size: 0.9rem; font-weight: 600; color: var(--blue); }

/* =========================
   10. CTA & FOOTER
========================= */
.cta-section { background: var(--navy); color: var(--white); padding: 140px 0; text-align: center; }
.cta-content { max-width: 700px; margin: 0 auto; }
.cta-section h2 { font-size: 3.5rem; margin-bottom: 24px; color: var(--white); }
.cta-section p { font-size: 1.25rem; color: rgba(255,255,255,0.7); margin-bottom: 40px; }

footer { background: var(--white); padding: 100px 0 40px; border-top: 1px solid var(--ice); color: var(--slate); font-size: 0.95rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; }
.footer-logo { font-size: 1.5rem; color: var(--navy); font-weight: 700; font-family: 'Outfit', sans-serif; display: block; margin-bottom: 24px;}
.footer-col h4 { font-size: 0.8rem; margin-bottom: 24px; color: var(--navy); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col a:hover { color: var(--blue); }

/* =========================
   ANIMATIONS
========================= */
.fade-up { opacity: 0; transform: translateY(30px); transition: 0.8s var(--ease-out); }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* =========================
   RESPONSIVE (Mobile Optimization)
========================= */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; text-align: center; }
  .stats-row, .risk-grid, .insights-grid { grid-template-columns: 1fr; gap: 30px; }
  .expertise-row { grid-template-columns: 1fr; gap: 20px; text-align: left; }
  .arrow-btn { margin-left: auto; }
  .cases-grid { grid-template-columns: 1fr; }
  .split-text { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  
  /* --- Premium Mobile Navigation --- */
  .menu-toggle { 
    display: block; 
    color: var(--navy); 
    z-index: 1001; /* Ensure button sits above the menu overlay */
    position: relative;
  }

  .nav-links { 
    display: flex; /* Always flex, but hidden via visibility/opacity for animation */
    flex-direction: column; 
    justify-content: center;
    align-items: center;
    gap: 32px;
    
    /* Full Screen Overlay Positions */
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100vh; 
    
    /* Visuals */
    background: rgba(255, 255, 255, 0.98); 
    backdrop-filter: blur(20px); /* The Premium Glass Effect */
    padding: 40px; 
    
    /* Animation State: Hidden */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1000;
  }

  /* Animation State: Active */
  .nav-links.active { 
    opacity: 1; 
    visibility: visible; 
    transform: translateY(0);
  }

  /* Typography Upgrade */
  .nav-links a {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem; /* Large, cinematic text */
    font-weight: 600;
    color: var(--navy);
    letter-spacing: -0.02em;
  }
  
  .nav-links a:hover {
    color: var(--blue);
  }

  /* Button inside menu */
  .nav-links .btn-nav {
    margin-top: 20px;
    width: 100%;
    max-width: 300px;
    text-align: center;
    padding: 18px;
    font-size: 1.1rem;
    background: var(--blue); /* Make it pop */
    color: white;
    box-shadow: 0 10px 30px rgba(0, 87, 255, 0.2);
  }

  /* Hero */
  .hero { padding: 140px 0 100px; }
  .hero h1 { font-size: 2.8rem; }
  .btn-group { flex-direction: column; width: 100%; }
  .btn-hero, .btn-transparent { width: 100%; justify-content: center; }

  /* Sections */
  .standard-section, .risk-section, .expertise-section, .cases-section, .insights-section, .cta-section {
    padding: 80px 0;
  }
  .stats-row { grid-template-columns: 1fr 1fr; } 
  .stat-card h3 { font-size: 2.5rem; }
  
  .cta-section h2 { font-size: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  
  /* Expertise List */
  .expertise-row { padding: 32px 0; }
  .expertise-row h3 { font-size: 1.5rem; }
}

/* =========================================
   INTERNAL PAGES (Add to bottom of style.css)
   ========================================= */

/* --- Page Headers (Light Theme) --- */
.page-hero {
  padding: 140px 0 80px;
  text-align: center;
  background: linear-gradient(to bottom, var(--ice), var(--white));
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); margin-bottom: 24px; color: var(--navy); }
.page-hero p { font-size: 1.15rem; color: var(--slate); max-width: 640px; margin: 0 auto; line-height: 1.6; }

/* --- Sticky Sub-Navigation --- */
.sub-nav {
  position: sticky; top: 73px; z-index: 90;
  background: rgba(255,255,255,0.9); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.05); padding: 16px 0;
  overflow-x: auto; /* Scrollable on mobile */
}
.sub-nav ul {
  display: flex; justify-content: center; gap: 32px;
  min-width: max-content; padding: 0 24px;
}
.sub-nav a {
  font-size: 0.9rem; font-weight: 600; color: var(--slate);
  padding-bottom: 4px; border-bottom: 2px solid transparent; transition: 0.3s;
}
.sub-nav a:hover { color: var(--blue); border-color: var(--blue); }

/* --- Service Layouts --- */
.service-section { padding: 100px 0; border-bottom: 1px solid var(--ice); }

.service-layout {
  display: grid; grid-template-columns: 0.4fr 0.6fr; gap: 80px; align-items: start;
}

.service-info { position: sticky; top: 140px; }
.service-info h2 { font-size: 2.5rem; margin-bottom: 24px; }
.service-info p { font-size: 1.1rem; color: var(--slate); margin-bottom: 32px; }

.service-details {
  background: var(--ice); padding: 48px; border-radius: var(--radius-card);
  border: 1px solid rgba(0,0,0,0.03);
}

.detail-block h3 {
  font-size: 0.9rem; margin-bottom: 20px; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--navy); font-weight: 700;
}

/* Checkmark List */
.check-list li {
  display: flex; gap: 16px; margin-bottom: 16px; font-size: 1rem; color: var(--navy-light);
}
.check-list li::before {
  content: "✓"; color: var(--blue); font-weight: 800;
}

/* --- Mobile Adjustments for Internal Pages --- */
@media (max-width: 900px) {
  .service-layout { grid-template-columns: 1fr; gap: 40px; }
  .service-info { position: static; margin-bottom: 40px; }
  .page-hero { padding: 120px 0 60px; }
  .sub-nav { top: 70px; justify-content: flex-start; }
  .sub-nav ul { padding: 0 24px; justify-content: flex-start; }
}

/* =========================================
   ABOUT PAGE STYLES (Add to bottom of style.css)
   ========================================= */

/* --- Story Section --- */
.story-section { padding: 120px 0; }
.story-layout { 
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; 
}
.story-text h2 { font-size: 2.5rem; margin-bottom: 24px; }
.story-text p { font-size: 1.1rem; color: var(--slate); margin-bottom: 24px; line-height: 1.7; }

.story-visual {
  height: 500px; background: var(--ice); border-radius: var(--radius-card);
  overflow: hidden; position: relative;
  /* Use a high-quality office image */
  background-image: url('https://images.unsplash.com/photo-1497215728101-856f4ea42174?auto=format&fit=crop&w=1200&q=80');
  background-size: cover; background-position: center;
  filter: grayscale(100%); transition: 0.5s ease;
}
.story-visual:hover { filter: grayscale(0%); }

/* --- Values Section (Dark) --- */
.values-section { padding: 140px 0; background: var(--navy); color: var(--white); }
.values-header { text-align: center; max-width: 600px; margin: 0 auto 80px; }
.values-header h2 { color: var(--white); font-size: 2.5rem; }

.values-grid { 
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; 
}
.value-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1);
  padding: 40px; border-radius: var(--radius-card); transition: 0.3s ease;
}
.value-card:hover { transform: translateY(-5px); background: rgba(255,255,255,0.05); }
.value-card h3 { color: var(--white); margin-bottom: 16px; font-size: 1.25rem; }
.value-card p { color: rgba(255,255,255,0.6); font-size: 0.95rem; line-height: 1.6; }

/* --- Mobile Adjustments for About --- */
@media (max-width: 900px) {
  .story-layout { grid-template-columns: 1fr; gap: 40px; }
  .story-visual { height: 350px; order: -1; } /* Image moves to top on mobile */
  .values-grid { grid-template-columns: 1fr; }
}

/* =========================================
   CONTACT PAGE STYLES (Add to bottom of style.css)
   ========================================= */

/* --- Contact Layout --- */
.contact-section { padding: 100px 0; }
.contact-grid { 
  display: grid; grid-template-columns: 1fr 400px; gap: 80px; align-items: start; 
}

/* --- Form Card --- */
.contact-form-card {
  background: var(--white); border: 1px solid rgba(0,0,0,0.05);
  padding: 48px; border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.form-group { margin-bottom: 24px; }
.form-label {
  display: block; font-size: 0.9rem; font-weight: 600; 
  color: var(--navy); margin-bottom: 8px;
}

.form-input, .form-textarea {
  width: 100%; padding: 16px; 
  border: 1px solid rgba(0,0,0,0.1); border-radius: 8px;
  font-family: 'Inter', sans-serif; font-size: 1rem;
  background: var(--ice); transition: 0.2s ease;
  color: var(--navy);
}

.form-input:focus, .form-textarea:focus {
  outline: none; border-color: var(--blue); background: var(--white);
  box-shadow: 0 0 0 4px rgba(0, 87, 255, 0.1);
}

/* Button overrides for form */
.btn-submit {
  width: 100%; justify-content: center; border: none; cursor: pointer; font-size: 1rem;
}

/* --- Sidebar --- */
.sidebar { position: sticky; top: 140px; }

.info-card {
  background: var(--white); border: 1px solid var(--ice);
  padding: 32px; border-radius: var(--radius-card); margin-bottom: 24px;
}
.info-card h3 { font-size: 1.1rem; margin-bottom: 20px; color: var(--navy); }

.contact-item { margin-bottom: 20px; }
.contact-item:last-child { margin-bottom: 0; }
.contact-item .label {
  font-size: 0.75rem; text-transform: uppercase; color: var(--slate);
  font-weight: 700; letter-spacing: 0.1em; margin-bottom: 4px; display: block;
}
.contact-item .value { font-size: 1.05rem; font-weight: 500; color: var(--navy); }
.contact-item a:hover { color: var(--blue); }

/* --- Mobile Adjustments for Contact --- */
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .sidebar { position: static; order: -1; margin-bottom: 40px; } /* Info moves to top */
  .contact-form-card { padding: 24px; }
}

/* =========================================
   BOOKING PAGE STYLES (Add to bottom of style.css)
   ========================================= */

/* --- Booking Layout --- */
.booking-section { padding: 80px 0 120px; }
.booking-grid { 
  display: grid; grid-template-columns: 380px 1fr; gap: 80px; align-items: start; 
}

/* --- Context Column (Left) --- */
.context-card { position: sticky; top: 140px; }

.service-selector {
  background: var(--ice); padding: 6px; border-radius: 12px;
  display: flex; margin-bottom: 40px;
}
.service-option {
  flex: 1; text-align: center; padding: 12px; font-size: 0.9rem;
  font-weight: 600; color: var(--slate); cursor: pointer;
  border-radius: 8px; transition: 0.2s ease; user-select: none;
}
.service-option.active {
  background: var(--white); color: var(--blue);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05); font-weight: 700;
}

/* Dynamic Content Animation */
#dynamic-content { transition: opacity 0.3s ease, transform 0.3s ease; }
#dynamic-content.fade-out { opacity: 0; transform: translateY(10px); }

.info-block h1 { font-size: 2.2rem; margin-bottom: 16px; }
.price-tag {
  font-size: 2rem; font-weight: 700; color: var(--navy);
  font-family: 'Outfit', sans-serif; margin-bottom: 32px;
  display: flex; align-items: baseline; gap: 8px;
}
.price-tag span { font-size: 1rem; color: var(--slate); font-weight: 500; }

.checklist li {
  margin-bottom: 16px; display: flex; gap: 16px; font-size: 0.95rem; color: var(--navy);
}
.checklist li svg { color: var(--blue); flex-shrink: 0; margin-top: 4px; }

/* --- Calendar UI (Right) --- */
.calendar-wrapper {
  background: var(--white); border: 1px solid var(--ice);
  border-radius: var(--radius-card); padding: 48px;
  box-shadow: var(--shadow-card);
}

.cal-header {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px;
}
.month-label { font-size: 1.25rem; font-weight: 700; color: var(--navy); }
.cal-nav button {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--ice);
  background: white; cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: var(--navy); transition: 0.2s; margin-left: 8px;
}
.cal-nav button:hover { border-color: var(--navy); }

.cal-grid {
  display: grid; grid-template-columns: repeat(7, 1fr); text-align: center; gap: 12px; margin-bottom: 48px;
}
.day-name {
  font-size: 0.75rem; color: var(--slate); font-weight: 700; text-transform: uppercase; margin-bottom: 16px;
}
.date {
  height: 48px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; font-weight: 500; color: var(--navy); cursor: pointer;
  transition: 0.2s; font-size: 0.95rem;
}
.date:hover:not(.disabled):not(.active) { background: var(--ice); }
.date.active { background: var(--blue); color: white; font-weight: 700; box-shadow: 0 4px 12px rgba(0, 87, 255, 0.4); }
.date.disabled { color: #E2E8F0; cursor: default; }

/* Time Slots */
.time-slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.time-btn {
  padding: 14px; border: 1px solid var(--blue); border-radius: 8px;
  background: white; color: var(--blue); font-weight: 600; cursor: pointer;
  transition: 0.2s; font-size: 0.95rem;
}
.time-btn:hover { background: var(--blue); color: white; box-shadow: 0 4px 12px rgba(0, 87, 255, 0.2); }

/* --- Modal (Agency Intercept) --- */
#agency-modal {
  display: none; position: fixed; inset: 0; z-index: 9999;
  align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s ease;
}
#modal-backdrop {
  position: absolute; inset: 0; background: rgba(5, 10, 20, 0.6); backdrop-filter: blur(8px);
}
#modal-card {
  position: relative; background: #fff; width: 90%; max-width: 480px; padding: 48px;
  border-radius: 24px; text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: scale(0.95); transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* --- Mobile Adjustments for Booking --- */
@media (max-width: 900px) {
  .booking-grid { grid-template-columns: 1fr; gap: 60px; }
  
  /* Fix spacing for the Context Card on mobile */
  .context-card { 
    position: static; 
    margin-bottom: 60px; 
    padding: 0 8px; /* Adds subtle breathing room from screen edges */
  }
  
  /* Give the content inside more room */
  .info-block {
    margin-top: 40px; /* Pushes text away from the tabs */
  }
  
  /* Make tabs touch-friendly */
  .service-selector {
    padding: 8px;
    gap: 8px;
  }
  .service-option {
    padding: 14px 10px; /* Larger touch targets */
    font-size: 0.95rem;
  }
}

@media (max-width: 600px) {
  .cal-grid { gap: 6px; }
  .date { height: 44px; font-size: 1rem; }
  .time-slots { grid-template-columns: 1fr; }
  
  /* Fix calendar padding on small screens */
  .calendar-wrapper { 
    padding: 32px 24px; 
  }
}