/* Reset and base styles */
:root {
  /* Blueprint Media Group Brand Colors */
  --brand-black: #030303;
  --brand-white: #ffffff;
  --brand-gray: #737373;
  
  /* Primary Colors */
  --black: var(--brand-black);
  --white: var(--brand-white);
  
  /* Neutral Grays */
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-300: #d4d4d4;
  --gray-400: #a3a3a3;
  --gray-500: var(--brand-gray);
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;
  
  /* Brand Accents */
  --accent: var(--brand-black);
  --accent-light: var(--gray-100);
  --text-muted: var(--brand-gray);
  
  /* Shadows using brand black */
  --border-light: rgba(3,3,3,0.06);
  --shadow-sm: 0 1px 2px rgba(3,3,3,0.05);
  --shadow-md: 0 4px 6px rgba(3,3,3,0.07);
  --shadow-lg: 0 10px 15px rgba(3,3,3,0.1);
  --shadow-xl: 0 20px 25px rgba(3,3,3,0.1);
}
html {
  font-size: 16px;
  background: var(--white);
  scroll-behavior: smooth;
}
body {
  font-family: 'Montserrat', 'Inter', 'Helvetica Neue', Helvetica, Arial, 'system-ui', sans-serif;
  font-size: 1rem;
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* All text now uses Montserrat as primary font */

/* Logo styling */
.logo-image {
  height: 40px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.banner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  padding: 1rem;
}

.banner-logo-image {
  max-width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(3, 3, 3, 0.1));
  opacity: 0;
  transform: scale(0.8) translateY(30px);
  animation: logoSlideIn 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards;
}

@keyframes logoSlideIn {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(30px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Inter', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-top: 0;
  line-height: 1.2;
}
h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
h3 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}
h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.brand-banner {
  width: 100%;
  background: #030303;
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 8rem 0 6rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}
.brand-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  opacity: 0.03;
  pointer-events: none;
  background-image: 
    linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
}
@keyframes gridMove {
  0% { 
    background-position: 0 0, 0 0;
  }
  100% { 
    background-position: 50px 50px, 50px 50px;
  }
}
.banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem 1rem;
  max-width: 900px;
}

.banner-title {
  font-size: 4.5rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  margin: 0 0 1.5rem 0;
  color: #fff;
  text-shadow: none;
  line-height: 1.1;
}
.banner-tagline {
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 0;
  margin: 0;
  color: rgba(255,255,255,0.7);
  opacity: 0;
  transform: translateY(30px);
  animation: taglineIn 1.2s cubic-bezier(.77,0,.18,1) 0.3s forwards;
  transition: color 0.3s, opacity 0.5s, transform 0.5s;
  max-width: 700px;
  line-height: 1.6;
}
@keyframes taglineIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.banner-cta {
  display: inline-block;
  margin-top: 2rem;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 0;
  text-decoration: none;
  box-shadow: none;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
.banner-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.1);
  transition: left 0.3s ease;
  z-index: -1;
}
.banner-cta:hover, .banner-cta:focus {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}
.banner-cta:hover::before {
  left: 0;
}
.tiktok-link {
  display: inline-block;
  margin-left: 0.5em;
  vertical-align: middle;
  transition: opacity 0.2s, transform 0.2s;
  opacity: 0.7;
}
.tiktok-link:hover, .tiktok-link:focus {
  opacity: 1;
  transform: scale(1.15);
}
header {
  background: var(--white);
  color: var(--black);
  padding: 1.5rem 0 1.2rem 0;
  border-bottom: 1.5px solid var(--gray);
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  position: sticky;
  top: 0;
  z-index: 10;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
}
header h1 {
  font-size: 2rem;
  letter-spacing: 2px;
  margin: 0;
}
nav a {
  color: var(--text-muted);
  font-family: 'Montserrat', 'Inter', Arial, sans-serif;
  font-weight: 500;
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  transition: all 0.2s ease;
  position: relative;
}
nav a:hover {
  background: var(--gray-100);
  color: var(--black);
}
.hero {
  background: var(--gray-light);
  padding: 4rem 0 3rem 0;
  text-align: center;
  border-bottom: 1px solid var(--gray);
}
section {
  padding: 5rem 0;
  border-bottom: 1px solid var(--border-light);
  background: var(--white);
}
section:last-child {
  border-bottom: none;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.service {
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--gray);
  border-radius: 16px;
  margin-bottom: 2.5rem;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s, border-color 0.3s;
}
.service:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  border-color: var(--gray-dark);
}
.price {
  font-weight: bold;
  color: var(--black);
  background: var(--gray-light);
  border-radius: 4px;
  padding: 0.2em 0.7em;
  font-size: 1.18rem;
  margin-left: 1em;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.intake-btn {
  display: inline-block;
  margin: 2rem auto 0 auto;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  background: var(--black);
  border: 1px solid var(--black);
  border-radius: 0;
  text-decoration: none;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.intake-btn:hover, .intake-btn:focus {
  background: var(--gray-800);
  border-color: var(--gray-800);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
footer {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 2.2rem 0;
  font-size: 1.05rem;
  margin-top: 2rem;
  border-top: 2px solid var(--gray);
  letter-spacing: 0.5px;
}
.faq-item {
  margin-bottom: 1.5rem;
}
.faq-item strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--black);
}
.faq-item p {
  margin: 0 0 0.5rem 0;
  color: var(--gray-dark);
}
/* Sticky Navigation Bar */
.sticky-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}
.nav-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.7rem 1.5rem;
  flex-wrap: nowrap;
  gap: 2rem;
}
.nav-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--black);
  white-space: nowrap;
  flex-shrink: 0;
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
  padding: 1rem 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.nav-logo::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--black);
  transition: width 0.3s ease;
}
.nav-logo:hover {
  color: var(--black);
  transform: translateY(-1px);
}
.nav-logo:hover::before {
  width: 100%;
}
nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-shrink: 0;
}
nav a {
  color: var(--text-muted);
  font-weight: 500;
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  letter-spacing: 0;
  font-size: 0.95rem;
  text-transform: none;
  white-space: nowrap;
  position: relative;
}
nav a:hover, .nav-cta:hover {
  background: var(--gray-100);
  color: var(--black);
}
.nav-cta {
  background: #111;
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.6rem 1.5rem;
  margin-left: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.nav-cta:active {
  transform: scale(0.97);
}
.dropdown {
  position: relative;
  display: inline-block;
  z-index: 1000;
}
.dropdown-content {
  display: none;
  position: absolute;
  background: #fff;
  min-width: 180px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border-radius: 8px;
  top: 2.5rem;
  left: 0;
  z-index: 1001;
  border: 1px solid var(--border-light);
}
.dropdown:hover .dropdown-content {
  display: block;
}
.dropdown-content a {
  display: block;
  padding: 0.8rem 1.2rem;
  color: #111;
  border-radius: 0;
  transition: background 0.2s;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border-light);
}
.dropdown-content a:last-child {
  border-bottom: none;
}
.dropdown-content a:hover {
  background: #f7f7f7;
}

/* Video Hero */
.video-hero {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 400px;
  max-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
}
.hero-video {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%; object-fit: cover;
  z-index: 1;
  filter: grayscale(0.1) brightness(0.7);
}
.hero-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-headline {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 1.2rem;
  letter-spacing: 2px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.18);
}
.hero-subheadline {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: #eaeaea;
}
.hero-cta-group {
  display: flex;
  gap: 1.2rem;
}
.hero-cta {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  border-radius: 999px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}
.hero-cta.primary {
  background: #fff;
  color: #111;
}
.hero-cta.secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.hero-cta:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 18px rgba(0,0,0,0.13);
}

/* Social Proof Bar */
.social-proof {
  background: #f7f7f7;
  border-bottom: 1px solid #e5e5e5;
  padding: 1.2rem 0;
  font-size: 1.1rem;
  text-align: center;
}
.social-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.client-logos img {
  height: 32px;
  margin-right: 1.2rem;
  opacity: 0.7;
  filter: grayscale(1);
  transition: opacity 0.2s;
}
.client-logos img:last-child { margin-right: 0; }
.client-logos img:hover { opacity: 1; }

/* Case Studies Slider */
.case-studies {
  background: #fff;
  padding: 4rem 0 3rem 0;
  border-bottom: 1px solid #e5e5e5;
}
.case-slider {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
}
.case-slide {
  min-width: 320px;
  background: #f7f7f7;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  padding: 2rem 1.2rem;
  text-align: center;
  scroll-snap-align: start;
  opacity: 0.7;
  transition: opacity 0.3s, transform 0.3s;
}
.case-slide.active, .case-slide:hover {
  opacity: 1;
  transform: scale(1.04);
}
.case-slide img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}
.case-meta h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.slider-controls {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}
.slider-controls button {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.3rem;
  cursor: pointer;
  transition: background 0.2s, border 0.2s;
}
.slider-controls button:hover {
  background: #f7f7f7;
  border: 1px solid #bbb;
}

/* Premium Services */
.services {
  background: var(--gray-50);
  padding: 6rem 0;
  border-bottom: 1px solid var(--border-light);
}
.services-intro {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.services-intro h2 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 1rem;
  color: var(--black);
  letter-spacing: -0.02em;
}
.services-subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}
/* Signature Service */
.premium-services {
  max-width: 1000px;
  margin: 0 auto;
}
.signature-service {
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: 0;
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  margin-bottom: 3rem;
  box-shadow: var(--shadow-lg);
}
.service-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--black);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.signature-service h3 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  color: var(--black);
  letter-spacing: -0.02em;
}
.service-description {
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.service-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
  text-align: left;
}
.feature-item {
  font-size: 1rem;
  color: var(--gray-700);
  padding: 0.5rem 0;
}
.service-price {
  margin-bottom: 2rem;
}
.price-amount {
  display: block;
  font-size: 3rem;
  font-weight: 300;
  color: var(--black);
  margin-bottom: 0.5rem;
}
.price-note {
  font-size: 0.9rem;
  color: var(--gray-500);
  font-style: italic;
}
.service-cta {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  padding: 1rem 2.5rem;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 2px solid var(--black);
}
.service-cta:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Premium Grid */
.premium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}
.premium-service {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 0;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.premium-service:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-300);
}
.premium-service h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--black);
}
.premium-service p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 2rem;
}
.premium-service .service-price {
  margin-bottom: 1.5rem;
}
.premium-service .price-amount {
  font-size: 2rem;
  font-weight: 300;
  color: var(--black);
}
.service-cta-secondary {
  display: inline-block;
  background: transparent;
  color: var(--black);
  padding: 0.8rem 2rem;
  text-decoration: none;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 1px solid var(--black);
}
.service-cta-secondary:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}

/* Consultation CTA */
.consultation-cta {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 0;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.consultation-cta h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--black);
}
.consultation-cta p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.consultation-btn {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  padding: 1rem 2.5rem;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 2px solid var(--black);
}
.consultation-btn:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Booking Calendar Styles */
.booking-section {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
  align-items: start;
}
.booking-calendar {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 0;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.booking-calendar h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 1.5rem;
  text-align: center;
}
.calendar-container {
  margin-bottom: 2rem;
}
.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.calendar-nav {
  background: var(--black);
  color: var(--white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.calendar-nav:hover {
  background: var(--gray-700);
  transform: scale(1.1);
}
.calendar-header h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--black);
  margin: 0;
}
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
}
.calendar-day {
  background: var(--white);
  padding: 0.8rem 0.5rem;
  text-align: center;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.calendar-day:hover {
  background: var(--gray-50);
}
.calendar-day.available {
  color: var(--black);
  font-weight: 500;
}
.calendar-day.available:hover {
  background: var(--black);
  color: var(--white);
}
.calendar-day.selected {
  background: var(--black);
  color: var(--white);
}
.calendar-day.unavailable {
  color: var(--gray-400);
  cursor: not-allowed;
}
.calendar-day.other-month {
  color: var(--gray-300);
}
.day-header {
  background: var(--gray-100);
  font-weight: 600;
  color: var(--gray-600);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.time-slots {
  margin-bottom: 2rem;
}
.time-slots h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 1rem;
}
.time-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.8rem;
}
.time-slot {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  padding: 0.8rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  font-weight: 500;
}
.time-slot:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.time-slot.selected {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.booking-form {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  padding: 2rem;
  border-radius: 0;
}
.booking-form h5 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 1.5rem;
  text-align: center;
}
.booking-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.booking-form input,
.booking-form textarea {
  padding: 1rem;
  border: 1px solid var(--gray-300);
  border-radius: 0;
  font-size: 1rem;
  background: var(--white);
  transition: border-color 0.3s ease;
}
.booking-form input:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--black);
}
.booking-form input[readonly] {
  background: var(--gray-100);
  color: var(--gray-600);
}
.book-btn {
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 1.2rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}
.book-btn:hover {
  background: var(--gray-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Alternative Contact */
.alternative-contact {
  background: var(--gray-50);
  border: 1px solid var(--border-light);
  padding: 2rem;
  text-align: center;
  border-radius: 0;
}
.alternative-contact h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 1.5rem;
}
.phone-cta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--black);
  color: var(--white);
  padding: 1.5rem 2rem;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 0;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}
.phone-cta:hover {
  background: var(--gray-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.phone-icon {
  font-size: 1.5rem;
}
.phone-number {
  font-size: 1.3rem;
  letter-spacing: 1px;
}
.phone-note {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin: 0;
}

/* Additional Services */
.additional-services {
  margin: 4rem 0;
  text-align: center;
}
.additional-services h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.additional-subtitle {
  font-size: 1rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
}
.additional-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.additional-item {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 0;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.additional-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--gray-300);
}
.additional-item h4 {
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
  color: var(--black);
}
.additional-item .price {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--black);
  background: var(--gray-50);
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  border: 1px solid var(--gray-200);
}
.estimator-quiz {
  background: #f7f7f7;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  margin-top: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

/* Testimonials Carousel */
.testimonials {
  background: #fff;
  padding: 4rem 0 3rem 0;
  border-bottom: 1px solid #e5e5e5;
}
.testimonial-slider {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
}
.testimonial-slide {
  min-width: 320px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  padding: 2.5rem 2rem;
  text-align: center;
  scroll-snap-align: start;
  opacity: 0.9;
  transition: all 0.3s ease;
  color: var(--black);
}
.testimonial-slide.active, .testimonial-slide:hover {
  opacity: 1;
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-300);
}
.testimonial-slide img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}
blockquote {
  font-size: 1.1rem;
  color: var(--gray-700);
  margin: 0 0 1.5rem 0;
  font-style: italic;
}
cite {
  font-size: 1rem;
  color: var(--gray-500);
  font-weight: 500;
}

/* Social Preview */
.social-preview {
  background: #fff;
  padding: 4rem 0 3rem 0;
  border-bottom: 1px solid #e5e5e5;
}
.social-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.social-embed {
  background: #f7f7f7;
  border-radius: 12px;
  min-width: 260px;
  max-width: 340px;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

/* FAQ Accordion */
.faq {
  background: #fff;
  padding: 4rem 0 3rem 0;
  border-bottom: 1px solid #e5e5e5;
}
.faq-list {
  max-width: 700px;
  margin: 0 auto;
}
.faq-item {
  margin-bottom: 1.5rem;
  border-radius: 15px;
  background: var(--white);
  border: none;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: var(--white);
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 1.5rem 2rem;
  border-radius: 15px;
  cursor: pointer;
  color: var(--black);
  transition: all 0.3s ease;
}
.faq-question:hover {
  background: var(--gray-50);
}
.faq-answer {
  display: none;
  padding: 1.5rem 2rem 2rem 2rem;
  color: var(--gray-600);
  font-size: 1rem;
  background: var(--gray-50);
  border-radius: 0 0 15px 15px;
}
.faq-item.open .faq-answer {
  display: block;
  animation: fadeIn 0.4s;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Blog/Insights */
.blog {
  background: #fff;
  padding: 4rem 0 3rem 0;
  border-bottom: 1px solid #e5e5e5;
}
.blog-cards {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  padding: 2rem 1.5rem;
  min-width: 280px;
  max-width: 360px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--accent);
}

/* Case Study Section */
.case-study {
  background: var(--white);
  padding: 6rem 0;
  border-bottom: 1px solid var(--border-light);
}
.case-study-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.case-study-header h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.case-study-header h3 {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--black);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.case-study-subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}
.case-study-content {
  max-width: 900px;
  margin: 0 auto;
}
.case-study-section {
  margin-bottom: 3rem;
}
.case-study-section h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.case-study-section p {
  font-size: 1.1rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.case-study-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}
.case-study-list li {
  font-size: 1.1rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}
.case-study-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--black);
  font-weight: 600;
}
.approach-step {
  background: var(--gray-50);
  border-left: 4px solid var(--black);
  padding: 1.5rem 2rem;
  margin: 1.5rem 0;
}
.approach-step h5 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.5rem;
}
.approach-step p {
  margin: 0;
  font-size: 1rem;
  color: var(--gray-700);
}
.case-study-results {
  background: var(--gray-50);
  border: 2px solid var(--black);
  padding: 3rem 2rem;
  margin: 3rem 0;
  text-align: center;
}
.case-study-results h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.case-study-results p {
  font-size: 1.1rem;
  color: var(--gray-700);
  margin-bottom: 2rem;
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.result-item {
  text-align: center;
}
.result-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--black);
  margin-bottom: 0.5rem;
}
.result-label {
  font-size: 1rem;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.case-study-cta {
  text-align: center;
  margin-top: 3rem;
}
.case-study-btn {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  padding: 1.2rem 3rem;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 2px solid var(--black);
}
.case-study-btn:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.blog-post {
  background: var(--white);
  border: none;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.blog-post:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
.blog-post:hover .read-more {
  color: #111;
  background: rgba(17, 17, 17, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transform: translateX(4px);
}
.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.blog-date {
  color: #666;
  font-weight: 500;
}
.blog-category {
  background: var(--black);
  color: #fff;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.blog-post h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #111;
  line-height: 1.4;
}
.blog-post p {
  color: #444;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.read-more {
  color: var(--black);
  font-weight: 500;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-block;
  padding: 0.5rem 0;
  border-bottom: 1px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.read-more:hover {
  color: var(--black);
  border-bottom-color: var(--black);
}

/* Contact Buttons */
.contact-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.contact-btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 0;
  text-decoration: none;
  color: var(--black);
  font-weight: 500;
  letter-spacing: 0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-width: 200px;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}
.contact-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gray-50);
  transition: left 0.3s ease;
  z-index: -1;
}
.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-300);
}
.contact-btn:hover::before {
  left: 0;
}
.btn-icon {
  font-size: 1.2rem;
  opacity: 0.7;
}
.btn-text {
  font-size: 0.95rem;
}

/* Featured Blog Post */
.blog-post.featured {
  background: var(--white);
  border: 2px solid var(--black);
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}
.blog-post.featured:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-xl);
}
.blog-post.featured:hover .read-more {
  color: #111;
  background: rgba(17, 17, 17, 0.15);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transform: translateX(4px);
}
.blog-excerpt {
  background: var(--gray-50);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-left: 4px solid var(--black);
}
.blog-excerpt p {
  margin: 0.5rem 0;
  font-size: 0.95rem;
  color: var(--gray-700);
}
.blog-excerpt p:first-child {
  margin-top: 0;
}
.blog-excerpt p:last-child {
  margin-bottom: 0;
}

/* Responsive */
.nav-inline {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow-x: auto;
  width: auto;
  min-width: 0;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 900px) {
  .container {
    padding: 0 1.5rem;
  }
  .nav-flex {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  .nav-logo {
    font-size: 1.2rem;
    max-width: 100px;
    letter-spacing: 2px;
    padding: 0.6rem 0;
  }
  .nav-inline {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 1rem;
    width: auto;
    justify-content: flex-end;
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-right: 0.5rem;
  }
  .nav-inline a {
    font-size: 0.85rem;
    padding: 0.5rem 0.8rem;
    letter-spacing: 0;
    flex-shrink: 0;
  }
  .service-cards, .blog-cards, .social-grid, .case-slider, .testimonial-slider, .blog-grid {
    flex-direction: column;
    gap: 1.5rem;
  }
  .premium-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .signature-service {
    padding: 3rem 2rem;
  }
  .service-features {
    grid-template-columns: 1fr;
  }
  .additional-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .results-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .case-study-results {
    padding: 2rem 1.5rem;
  }
  .banner-title {
    font-size: 2.5rem;
    letter-spacing: -0.02em;
  }
  .banner-tagline {
    font-size: 1.1rem;
    letter-spacing: 0;
  }
  .banner-cta {
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
  }
}
@media (max-width: 600px) {
  html { font-size: 16px; }
  .container {
    padding: 0 1rem;
  }
  .brand-banner {
    padding: 4rem 0 3rem 0;
    min-height: 60vh;
  }
  .banner-title {
    font-size: 2rem;
    letter-spacing: -0.02em;
  }
  .banner-tagline {
    font-size: 1rem;
    letter-spacing: 0;
  }
  .banner-cta {
    padding: 0.7rem 1.5rem;
    font-size: 0.8rem;
    letter-spacing: 0;
  }
  .nav-flex {
    padding: 0.8rem 1rem;
  }
  .nav-logo {
    font-size: 1rem;
    letter-spacing: 1px;
    padding: 0.5rem 0;
  }
  
  .nav-inline a {
    font-size: 0.75rem;
    padding: 0.3rem 0.4rem;
  }
  
  .logo-image {
    height: 30px;
    max-width: 80px;
  }
  
  .banner-logo-image {
    max-height: 80px;
  }
  .service-card, .blog-card, .social-embed, .case-slide, .testimonial-slide, .blog-post {
    min-width: 90vw;
    max-width: 98vw;
    padding: 1.5rem 1rem;
  }
  .signature-service {
    padding: 2rem 1.5rem;
  }
  .premium-service {
    padding: 2rem 1.5rem;
  }
  .consultation-cta {
    padding: 2rem 1.5rem;
  }
  .additional-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  .case-study-header h3 {
    font-size: 2rem;
  }
  .approach-step {
    padding: 1rem 1.5rem;
  }
  .booking-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .time-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  }
  .contact-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  .contact-btn {
    min-width: 100%;
    padding: 0.8rem 1.5rem;
  }
  .btn-text {
    font-size: 0.9rem;
  }
} 