/* ===== VALUES / TRUSTED PARTNER SECTION ===== */
.values-section {
  padding: 120px 0;
  background: #f9f9f9; /* Light grey background to make cards pop */
  border-top: 1px solid rgba(0,0,0,0.05);
}

.values-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.values-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: var(--black);
  margin-bottom: 24px;
  font-weight: 500;
}

.values-header p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--gray-700);
}

/* CARD GRID */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* THE WHITE CARDS */
.value-card {
  background: #ffffff;
  padding: 60px 40px;
  border-radius: 32px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03); /* Very subtle shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0,0,0,0.02);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* ICON CONTAINER */
.value-icon {
  width: 64px;
  height: 64px;
  background: #f5f5f5; /* Light grey circle behind icon */
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  transition: all 0.3s ease;
}

.value-card:hover .value-icon {
  background: var(--black); /* Icon turns black on hover */
  color: #ffffff;
  transform: rotate(5deg);
}

.value-icon svg {
  width: 32px;
  height: 32px;
  color: var(--black);
  transition: color 0.3s ease;
}

.value-card:hover .value-icon svg {
  color: #ffffff;
}

/* TEXT STYLING */
.value-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: var(--black);
}

.value-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-500);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .values-grid {
    grid-template-columns: 1fr; /* Stack cards on mobile */
    gap: 24px;
  }
    
  .values-header h2 {
    font-size: 2.5rem;
  }
    
  .value-card {
    padding: 40px 30px;
  }
}
/* ===== PREMIUM LIGHT 3D SECTION ===== */
.premium-work {
  padding: 120px 0;
  background: #ffffff;
  perspective: 1000px; /* Essential for 3D tilt */
}

.work-header-center {
  text-align: center;
  margin-bottom: 70px;
}

.work-header-center h2 {
  font-size: 3.5rem;
  font-family: 'Playfair Display', serif;
  color: var(--black);
  margin-bottom: 12px;
}

.premium-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  padding: 20px;
}

/* CARD BASE */
.premium-card {
  position: relative;
  height: 550px; /* Tall and elegant */
  background: #ffffff;
  border-radius: 32px;
  text-decoration: none;
  transform-style: preserve-3d;
  transform: perspective(1000px);
  transition: transform 0.1s ease, box-shadow 0.3s ease;
    
  /* The "Apple" Shadow: Soft and diffused */
  box-shadow: 0 20px 40px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.04);
}

/* Hover Effect: Lifts up */
.premium-card:hover {
  box-shadow: 0 30px 60px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.04);
}

/* SUBTLE COLOR GRADIENTS (Behind the content) */
.card-bg-gradient {
  position: absolute;
  inset: 0;
  border-radius: 32px;
  opacity: 0.3; /* Very subtle tint */
  transition: opacity 0.5s ease;
}

.premium-card:hover .card-bg-gradient {
  opacity: 0.6; /* Brightens on hover */
}

.gradient-1 { background: radial-gradient(circle at top right, #f3e7e9 0%, #ffffff 60%); } /* Medivoices Pink */
.gradient-2 { background: radial-gradient(circle at top right, #e0c3fc 0%, #ffffff 60%); } /* Cool Care Blue */
.gradient-3 { background: radial-gradient(circle at top right, #a8edea 0%, #ffffff 60%); } /* Comfort Teal */
.gradient-4 { background: radial-gradient(circle at top right, #c2e9fb 0%, #ffffff 60%); } /* Daily Dairy Sky */

/* CARD CONTENT */
.premium-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  transform: translateZ(40px); /* Floats above the card base */
}

/* LOGO AREA (The Hero) */
.logo-area {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.logo-area img {
  width: 220px; /* HUGE LOGO */
  height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.08)); /* 3D Shadow for logo */
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.premium-card:hover .logo-area img {
  transform: scale(1.15) translateY(-10px); /* Pops out on hover */
}

/* FIX DAILY DAIRY BLACK CORNERS */
.corner-fix {
  border-radius: 40px; /* Rounds off the sharp corners */
  transform: scale(1.05); /* Slight zoom to crop edges */
}

/* TEXT AREA (Bottom) */
.text-area {
  text-align: center;
  margin-bottom: 20px;
}

.text-area h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--black);
  margin-bottom: 8px;
}

.text-area span {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray-500);
  font-weight: 600;
}

/* LIVE STATUS BADGE */
.live-status {
  position: absolute;
  top: 30px;
  right: 30px;
  background: #000;
  color: #fff;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  transform: translateZ(60px); /* Highest layer */
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.dot {
  width: 8px;
  height: 8px;
  background: #00ff88;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.5; }
  100% { opacity: 1; }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .premium-grid {
    grid-template-columns: 1fr; /* Stack on mobile */
  }
  .premium-card {
    height: 450px;
  }
  .logo-area img {
    width: 160px;
    height: 160px;
  }
}
/* ===== 3D TILT SECTION ===== */
.tilt-work {
  padding: 100px 0;
  background: #ffffff;
  perspective: 1000px; /* Essential for 3D effect */
}

.work-header-center {
  text-align: center;
  margin-bottom: 60px;
}

.work-header-center h2 {
  font-size: 3.5rem;
  margin-bottom: 16px;
  font-family: 'Playfair Display', serif;
}

/* GRID */
.tilt-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  padding: 20px;
}

/* CARD BASE */
.tilt-card {
  position: relative;
  height: 500px;
  width: 100%;
  background: #0a0a0a; /* Premium Dark Background */
  border-radius: 30px;
  text-decoration: none;
  overflow: hidden;
  transform-style: preserve-3d; /* Allows elements to float */
  transform: perspective(1000px);
  transition: transform 0.1s ease; /* Fast transition for mouse movement */
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

/* CARD CONTENT (INNER) */
.tilt-content {
  position: absolute;
  inset: 0;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* This gradient adds the "Glare" look */
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 100%);
  transform: translateZ(50px); /* Pushes text closer to user */
}

/* TEXT STYLING */
.card-text .category {
  color: #888;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  font-weight: 700;
  display: block;
  margin-bottom: 12px;
}

.card-text h3 {
  color: #ffffff;
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  line-height: 1.1;
  margin: 0;
}

/* LOGO (Bottom Right) */
.card-logo {
  align-self: flex-end;
  width: 80px;
  height: 80px;
  background: #ffffff;
  border-radius: 16px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.card-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* LIVE BADGE */
.live-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(10px);
  transform: translateZ(80px); /* Floats highest */
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #00ff88;
  border-radius: 50%;
  box-shadow: 0 0 10px #00ff88;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.5; }
  100% { opacity: 1; }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .tilt-grid {
    grid-template-columns: 1fr;
  }
  .tilt-card {
    height: 400px;
  }
  .card-text h3 {
    font-size: 2.5rem;
  }
}
/* ===== IMMERSIVE GALLERY SECTION ===== */
.immersive-work {
  padding: 100px 0;
  background: #ffffff;
}

.work-header-center {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.work-header-center h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  margin-bottom: 16px;
  color: var(--black);
}

.work-header-center p {
  color: var(--gray-700);
  font-size: 1.1rem;
}

/* GRID LAYOUT */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns on desktop */
  gap: 40px;
}

/* CARD BASE */
.gallery-card {
  position: relative;
  height: 600px; /* Tall poster shape */
  border-radius: 32px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s cubic-bezier(0.2, 1, 0.3, 1);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.gallery-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

/* DYNAMIC BACKGROUNDS (The "Environment") */
.card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  transition: transform 0.8s ease;
}

.gallery-card:hover .card-bg {
  transform: scale(1.1); /* Subtle zoom on hover */
}

/* Gradients that match brand colors but look expensive */
.card-medivoices .card-bg { background: radial-gradient(circle at center, #f3e7e9 0%, #e3eeff 100%); }
.card-coolcare .card-bg { background: radial-gradient(circle at center, #e0c3fc 0%, #8ec5fc 100%); }
.card-comfortair .card-bg { background: radial-gradient(circle at center, #84fab0 0%, #8fd3f4 100%); }
.card-dairy .card-bg { background: radial-gradient(circle at center, #f5f7fa 0%, #c3cfe2 100%); }

/* FROSTED GLASS LOGO HOLDER */
.glass-holder {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.25); /* Semi-transparent white */
  backdrop-filter: blur(16px); /* The Blur Effect */
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 40px;
  border-radius: 24px;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.5s ease;
}

.gallery-card:hover .glass-holder {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.35);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.glass-holder img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

/* TEXT INFO (Bottom) */
.card-info {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 2;
}

.card-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--black);
  margin: 0;
  line-height: 1;
}

.card-info .category {
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gray-700);
  margin-bottom: 8px;
  display: block;
}

/* LIVE STATUS BADGE (For Daily Dairy) */
.live-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 10;
  background: var(--black);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #00ff88;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7); }
  70% { box-shadow: 0 0 0 6px rgba(0, 255, 136, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0); }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: 1fr; /* 1 Column on Mobile */
  }
    
  .gallery-card {
    height: 500px;
  }
    
  .glass-holder {
    width: 220px;
    height: 220px;
    padding: 30px;
  }
    
  .work-header-center h2 {
    font-size: 2.5rem;
  }
}
/* ==========================================
   PREMIUM AGENCY WEBSITE - CSS
   Modern, Glassmorphism, Premium Design
   Black & White Theme - No Borders
   ========================================== */

/* ===== CSS VARIABLES ===== */
:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --gray-900: #1a1a1a;
  --gray-700: #4a4a4a;
  --gray-500: #9c9c9c;
  --gray-300: #d4d4d4;
  --gray-100: #f5f5f5;
  --border: #e5e5e5;
  
  --primary: #0a0a0a;
  --primary-hover: #1a1a1a;
  --accent: #4a4a4a;
  --accent-dark: #2a2a2a;
  --card-bg: #fafafa;
  --danger: #ff4444;
  --success: #00c853;
  --whatsapp: #25D366;
  
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 32px 64px rgba(0, 0, 0, 0.16);
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  --container-max: 1300px;
  --gap-xs: 8px;
  --gap-sm: 16px;
  --gap-md: 24px;
  --gap-lg: 48px;
  --gap-xl: 80px;
  
  --z-cookie: 9999;
  --z-welcome: 10000;
  --z-whatsapp: 1000;
  --z-chatbot: 1001;
  --z-appointment: 1002;
  --z-modal: 9998;
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: var(--container-max);
  margin: 0 auto;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  padding: 24px 0;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
  z-index: var(--z-cookie);
  transform: translateY(100%);
  transition: transform var(--transition-slow);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.cookie-text h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--black);
}

.cookie-text p {
  font-size: 0.9rem;
  color: var(--gray-700);
  line-height: 1.5;
  max-width: 600px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-base);
  border: none;
}

.cookie-btn-primary {
  background: var(--black);
  color: var(--white);
}

.cookie-btn-primary:hover {
  background: var(--gray-900);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.cookie-btn-secondary {
  background: rgba(0, 0, 0, 0.05);
  color: var(--black);
}

.cookie-btn-secondary:hover {
  background: rgba(0, 0, 0, 0.1);
}

/* ===== WELCOME BANNER (PREMIUM) ===== */
.welcome-banner {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-welcome);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.welcome-banner.show {
  opacity: 1;
  pointer-events: auto;
}

.welcome-content {
  position: relative;
  background: var(--white);
  border-radius: 32px;
  padding: 64px 48px;
  max-width: 600px;
  width: 90%;
  text-align: center;
  box-shadow: var(--shadow-xl);
  transform: scale(0.9);
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 2001;
}

.welcome-banner.show .welcome-content {
  transform: scale(1);
}

.welcome-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--black);
  letter-spacing: -0.02em;
}

.welcome-content p {
  font-size: 1.1rem;
  color: var(--gray-700);
  margin-bottom: 32px;
  line-height: 1.6;
  font-weight: 500;
}

.welcome-close {
  padding: 16px 48px;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  border: none;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.welcome-close:hover {
  background: var(--gray-900);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* ===== HEADER ===== */
header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  z-index: 50;
  transition: box-shadow var(--transition-base);
}

header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  gap: var(--gap-md);
}

.logo-container {
  display: flex;
  align-items: center;
  transition: transform var(--transition-base);
}

.logo-container:hover {
  transform: scale(1.02);
}

.logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo-image {
  height: 62px;
  width: auto;
  display: block;
  cursor: pointer;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--gap-sm);
}

/* ===== CTA BUTTON (PREMIUM) ===== */
.cta-btn,
.hero-cta,
.final-cta-btn,
.cta-primary {
  text-decoration: none;
  display: inline-block;
  position: relative;
  padding: 12px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  cursor: pointer;
  overflow: hidden;
  transition: all var(--transition-base);
  border: none;
}

.cta-btn:hover,
.hero-cta:hover,
.final-cta-btn:hover {
  background: var(--gray-900);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.cta-btn span {
  position: relative;
  z-index: 1;
}

/* ===== HAMBURGER MENU (PREMIUM) ===== */
.hamburger {
  position: relative;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: all var(--transition-base);
}

.hamburger span {
  width: 20px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.hamburger span:nth-child(2) {
  width: 16px;
}

.hamburger:hover {
  transform: translateY(-4px) rotate(90deg);
  background: rgba(0, 0, 0, 0.1);
}

.hamburger.active {
  transform: rotate(180deg);
}

/* ===== MENU SYSTEM (PREMIUM) ===== */
.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.4);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);
  z-index: 90;
}

.menu-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.menu-panel {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.92);
  width: 600px;
  max-width: 90vw;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  padding: 64px 48px 48px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 32px;
  box-shadow: var(--shadow-xl);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-slow);
  z-index: 100;
}

.menu-panel.active {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.menu-panel::-webkit-scrollbar {
  width: 6px;
}

.menu-panel::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.2);
  border-radius: 6px;
}

.menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
}

.menu-close:hover {
  background: var(--black);
  color: var(--white);
  transform: rotate(90deg);
}

.menu-close svg {
  width: 20px;
  height: 20px;
}

.menu-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.menu-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 24px;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--black);
  text-decoration: none;
  border-radius: 16px;
  overflow: hidden;
  transition: all var(--transition-base);
  text-align: center;
  background: rgba(0, 0, 0, 0.02);
}

.menu-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: var(--black);
  transition: height 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: -1;
}

.menu-link:hover {
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.menu-link:hover::before {
  height: 100%;
}

.menu-link-text {
  position: relative;
  z-index: 1;
}

.menu-footer {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  text-align: center;
}

.menu-footer-text {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 16px;
}

.menu-social {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--black);
  text-decoration: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  transition: all var(--transition-base);
}

.social-icon svg {
  width: 20px;
  height: 20px;
}

.social-icon:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-4px) scale(1.1);
}

/* ===== HERO SECTION ===== */
.hero {
  padding: 100px 0 80px;
  background: var(--white);
}

.hero-content {
  max-width: 920px;
  opacity: 0;
  transform: translateY(18px);
  animation: heroReveal 0.9s ease forwards 0.15s;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1.15;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.hero-subtext {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
  max-width: 680px;
  margin-bottom: 48px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.hero-meta {
  font-size: 0.9rem;
  color: var(--gray-700);
  font-weight: 500;
}

@keyframes heroReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== TRUST SECTION ===== */
.trust {
  padding: 50px 0 70px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  background: var(--white);
  overflow: hidden;
}

.trust-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.trust-label {
  font-size: 0.8rem;
  color: var(--gray-500);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
  min-width: 120px;
}

.trust-marquee {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.trust-track {
  display: flex;
  overflow-x: hidden; /* Changed from auto to hidden for smooth animation */
  scroll-behavior: smooth;
  scrollbar-width: none;
  
  /* NEW: This forces the animation to play */
  width: max-content; 
  animation: marqueeScroll 30s linear infinite;
}

/* Ensure the animation pauses when you hover */
.trust-track:hover {
  animation-play-state: paused;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  padding: 12px 24px;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 999px;
  transition: all var(--transition-base);
}

.trust-item:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.trust-logo {
  width: 32px;
  height: 32px;
  color: var(--black);
  transition: color var(--transition-base);
}

.trust-item:hover .trust-logo {
  color: var(--white);
}

.trust-item span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--black);
  transition: color var(--transition-base);
}

.trust-item:hover span {
  color: var(--white);
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== SERVICES SECTION - CURSOR SCROLL ===== */
.services {
  padding: 120px 0 140px;
  background: var(--white);
}

.services-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.services-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.services-header p {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  max-width: 420px;
}

.services-container {
  overflow: hidden;
  position: relative;
  cursor: grab;
}

.services-container:active {
  cursor: grabbing;
}

.services-scroll-wrapper {
  overflow-x: hidden;
  padding: 32px 0;
}

.services-grid {
  display: flex;
  gap: 24px;
  transition: transform 0.3s ease-out;
  will-change: transform;
}

.service-card {
  flex: 0 0 320px;
  padding: 32px 24px;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 24px;
  transition: all var(--transition-base);
  cursor: default;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  background: var(--black);
  color: var(--white);
}

.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  margin-bottom: 20px;
  transition: all var(--transition-base);
}

.service-card:hover .service-icon {
  background: var(--white);
  transform: scale(1.1) rotate(5deg);
}

.service-icon svg {
  width: 24px;
  height: 24px;
  color: var(--black);
  transition: all var(--transition-base);
}

.service-card:hover .service-icon svg {
  color: var(--black);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--black);
  transition: color var(--transition-base);
}

.service-card:hover h3 {
  color: var(--white);
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--gray-700);
  transition: color var(--transition-base);
}

.service-card:hover p {
  color: var(--gray-300);
}

/* ===== WORK SECTION (PREMIUM REDESIGN) ===== */
/* ===== SPLIT SCROLL WORK SECTION ===== */
.split-work {
    background: #ffffff;
    padding: 100px 0;
}

.split-wrapper {
    display: flex;
    justify-content: space-between;
    position: relative;
}

/* LEFT SIDE - STICKY */
.split-sticky {
    width: 35%;
    height: 100vh; /* Full viewport height */
    position: sticky;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 10;
}

.section-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 24px;
    display: block;
}

.sticky-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem; /* Huge text */
    line-height: 1.1;
    margin-bottom: 12px;
    color: var(--black);
    transition: opacity 0.3s ease; /* Smooth fade when changing */
}

.sticky-content p {
    font-size: 1.2rem;
    color: var(--gray-700);
    margin-bottom: 40px;
    transition: opacity 0.3s ease;
}

.view-case-btn {
    display: inline-block;
    padding: 16px 32px;
    border: 1px solid var(--black);
    border-radius: 50px;
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    transition: all 0.3s ease;
}

.view-case-btn:hover {
    background: var(--black);
    color: var(--white);
}

/* RIGHT SIDE - PREMIUM CARDS */
.split-scroll-area {
  width: 55%;
  padding-top: 0;
}

.project-item {
  display: block;
  margin-bottom: 0;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.img-wrapper {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  /* Default dark fallback */
  background: #111; 
  transition: transform 0.5s ease;
}

/* Premium Hover Zoom */
.project-item:hover .img-wrapper img {
  transform: scale(1.1);
}

/* Ensure the image/logo looks good */
.img-wrapper img {
  width: 60%;  /* Limit logo size so it breathes */
  max-width: 400px;
  height: auto;
  object-fit: contain;
  z-index: 2;
  transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2)); /* Add depth to logo */
}

/* Background Gradients for each project (We will attach these in HTML) */
.bg-medivoices { background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%); } /* Clean White/Grey */
.bg-coolcare { background: linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%); } /* Soft Blue/Purple */
.bg-comfort { background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%); } /* Fresh Teal/Pink */
.bg-dairy { background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); } /* Metallic Blue */

/* Mobile Fix */
@media (max-width: 992px) {
  .split-scroll-area { width: 100%; }
  .img-wrapper { height: 60vh; }
  .img-wrapper img { width: 50%; }
}

/* Senior Designer Polish: Grain Overlay */
.img-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://grainy-gradients.vercel.app/noise.svg");
  opacity: 0.05; /* Subtle texture */
  pointer-events: none;
  z-index: 1;
}


/* ===== CLIENTS SECTION ===== */
.clients {
  padding: 120px 0 140px;
  background: var(--gray-100);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
}

.clients-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.clients-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
  animation: badgeFloat 3s ease-in-out infinite;
}

.clients-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  color: var(--black);
}

.clients-header p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--gray-700);
  max-width: 720px;
  margin: 0 auto;
}

.clients-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  padding: 48px 32px;
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  position: relative;
}

.stat-item:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-xl);
}

.stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  transition: all var(--transition-base);
}

.stat-item:hover .stat-icon {
  background: var(--black);
  transform: scale(1.1) rotate(5deg);
}

.stat-icon svg {
  width: 32px;
  height: 32px;
  color: var(--black);
  transition: color var(--transition-base);
}

.stat-item:hover .stat-icon svg {
  color: var(--white);
}

.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.stat-detail {
  font-size: 0.9rem;
  color: var(--gray-500);
}

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(5deg); }
}

/* ===== FINAL CTA ===== */
.final-cta {
  padding: 160px 0 180px;
  background: var(--white);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.final-cta-inner {
  max-width: 820px;
}

.final-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.final-cta p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
  max-width: 580px;
  margin-bottom: 40px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--gray-900);
  color: var(--white);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact-list li a {
  color: var(--gray-300);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all var(--transition-base);
  display: inline-block;
}

.footer-contact-list li a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer-contact-list li {
  color: var(--gray-300);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-logo a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.footer-logo-image {
  height: 70px;
  width: auto;
  display: block;
}

.footer-tagline {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--gray-300);
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  transition: all var(--transition-base);
}

.footer-social a svg {
  width: 20px;
  height: 20px;
}

.footer-social a:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-4px) scale(1.1);
}

.footer-links-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.footer-column h4 {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--white);
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column a {
  color: var(--gray-300);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all var(--transition-base);
  display: inline-block;
}

.footer-column a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer-contact-list li {
  color: var(--gray-300);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 0;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-legal {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.875rem;
}

.footer-links a {
  color: var(--gray-500);
  text-decoration: none;
  transition: color var(--transition-base);
}

.footer-links a:hover {
  color: var(--white);
}

.separator {
  opacity: 0.3;
  color: var(--gray-500);
}

/* ===== WHATSAPP FLOAT BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  z-index: var(--z-whatsapp);
  transition: all var(--transition-base);
  animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: translateY(-8px) scale(1.1);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6), 0 0 0 8px rgba(37, 211, 102, 0.2); }
}

/* ===== APPOINTMENT FLOAT BUTTON ===== */
.appointment-float {
  position: fixed;
  bottom: 100px;
  left: 24px;
  width: 60px;
  height: 60px;
  background: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  z-index: var(--z-appointment);
  transition: all var(--transition-base);
  animation: appointmentFloat 3s ease-in-out infinite;
}

.appointment-float:hover {
  transform: translateY(-8px) scale(1.1);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
  background: var(--gray-900);
}

.appointment-float svg {
  width: 28px;
  height: 28px;
}

@keyframes appointmentFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ===== CHATBOT WIDGET ===== */
.chatbot-toggle {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: all var(--transition-base);
  z-index: var(--z-chatbot);
  animation: chatbotFloat 3s ease-in-out infinite;
}

.chatbot-toggle:hover {
  transform: translateY(-8px) scale(1.1);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

.chat-icon {
  width: 28px;
  height: 28px;
}

.chatbot-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 24px;
  height: 24px;
  background: var(--danger);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes chatbotFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.chatbot-container {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 380px;
  max-width: calc(100vw - 48px);
  height: 550px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: calc(var(--z-chatbot) - 1);
}

.chatbot-container.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.chatbot-header {
  background: var(--black);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  flex-shrink: 0;
}

.chatbot-header-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chatbot-avatar {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chatbot-avatar svg {
  width: 20px;
  height: 20px;
}

.chatbot-header h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.chatbot-status {
  font-size: 0.75rem;
  opacity: 0.9;
}

.chatbot-close {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--white);
  transition: all var(--transition-base);
}

.chatbot-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.chatbot-close svg {
  width: 18px;
  height: 18px;
}

.chatbot-messages {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  background: var(--gray-100);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.chatbot-messages::-webkit-scrollbar {
  width: 6px;
}

.chatbot-messages::-webkit-scrollbar-track {
  background: transparent;
}

.chatbot-messages::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

.chatbot-message {
  display: flex;
  animation: messageSlideIn 0.3s ease;
}

@keyframes messageSlideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.message-content {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.bot-message .message-content {
  background: var(--white);
  color: var(--black);
  border-bottom-left-radius: 4px;
  box-shadow: var(--shadow-sm);
}

.user-message {
  justify-content: flex-end;
}

.user-message .message-content {
  background: var(--black);
  color: var(--white);
  border-bottom-right-radius: 4px;
}

.chatbot-quick-replies {
  padding: 12px 20px;
  background: var(--white);
  display: flex;
  gap: 8px;
  overflow-x: auto;
  flex-shrink: 0;
}

.chatbot-quick-replies::-webkit-scrollbar {
  height: 4px;
}

.chatbot-quick-replies::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

.quick-reply {
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition-base);
}

.quick-reply:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}

.chatbot-input {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--white);
  flex-shrink: 0;
}

.chatbot-input input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  font-size: 0.9rem;
  outline: none;
  transition: all var(--transition-base);
}

.chatbot-input input:focus {
  background: rgba(0, 0, 0, 0.08);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

#chatbotSend {
  width: 40px;
  height: 40px;
  background: var(--black);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--white);
  flex-shrink: 0;
  transition: all var(--transition-base);
}

#chatbotSend:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

#chatbotSend svg {
  width: 18px;
  height: 18px;
}

/* ===== APPOINTMENT MODAL ===== */
.appointment-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-modal);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 20px;
}

.appointment-modal.show {
  opacity: 1;
  pointer-events: auto;
}

.appointment-modal-content {
  position: relative;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 32px;
  padding: 48px;
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.appointment-modal.show .appointment-modal-content {
  transform: scale(1);
}

.appointment-modal-content::-webkit-scrollbar {
  width: 6px;
}

.appointment-modal-content::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

.appointment-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--black);
  transition: all var(--transition-base);
}

.appointment-close:hover {
  background: var(--black);
  color: var(--white);
  transform: rotate(90deg);
}

.appointment-close svg {
  width: 20px;
  height: 20px;
}

.appointment-modal-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--black);
}

.appointment-modal-content > p {
  font-size: 1rem;
  color: var(--gray-700);
  margin-bottom: 32px;
}

/* Meeting Type Selector */
.meeting-type-selector {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.meeting-type-btn {
  padding: 20px 16px;
  background: rgba(0, 0, 0, 0.02);
  border: none;
  border-radius: 16px;
  cursor: pointer;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.meeting-type-btn:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background: rgba(0, 0, 0, 0.05);
}

.meeting-type-btn.active {
  background: var(--black);
  color: var(--white);
}

.meeting-type-btn svg {
  width: 32px;
  height: 32px;
  transition: all var(--transition-base);
}

.meeting-type-btn.active svg {
  color: var(--white);
}

.meeting-type-btn span {
  font-size: 0.9rem;
  font-weight: 600;
}

/* Platform Selector */
.platform-selector {
  margin-bottom: 24px;
}

.platform-selector label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--black);
}

.platform-options {
  display: flex;
  gap: 12px;
}

.platform-btn {
  flex: 1;
  padding: 16px;
  background: rgba(0, 0, 0, 0.02);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all var(--transition-base);
  font-weight: 600;
}

.platform-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  background: rgba(0, 0, 0, 0.05);
}

.platform-btn.active {
  background: var(--black);
  color: var(--white);
}

/* Calendar Styles */
.calendar-container {
  background: var(--white);
  border-radius: 16px;
  padding: 20px;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.calendar-month-year {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--black);
}

.calendar-nav {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
}

.calendar-nav:hover {
  background: var(--black);
  color: var(--white);
}

.calendar-nav svg {
  width: 18px;
  height: 18px;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.calendar-weekdays div {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-500);
  padding: 8px 0;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

.calendar-day {
  aspect-ratio: 1;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.02);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-base);
}

.calendar-day:hover:not(.disabled):not(.empty) {
  background: rgba(0, 0, 0, 0.08);
  transform: scale(1.05);
}

.calendar-day.selected {
  background: var(--black);
  color: var(--white);
}

.calendar-day.disabled {
  background: transparent;
  color: var(--gray-300);
  cursor: not-allowed;
}

.calendar-day.empty {
  background: transparent;
  cursor: default;
}

/* Time Slots */
.time-slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  max-height: 250px;
  overflow-y: auto;
  padding: 4px;
}

.time-slots::-webkit-scrollbar {
  width: 6px;
}

.time-slots::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

.time-slot-btn {
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.02);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all var(--transition-base);
  text-align: center;
}

.time-slot-btn:hover {
  background: rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.time-slot-btn.selected {
  background: var(--black);
  color: var(--white);
}

/* Form Styles */
.appointment-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--black);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: none;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: all var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  background: rgba(0, 0, 0, 0.08);
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
}

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

.form-group select {
  cursor: pointer;
  background: rgba(0, 0, 0, 0.05);
}

.appointment-submit {
  padding: 14px 32px;
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  margin-top: 8px;
}

.appointment-submit:hover {
  background: var(--gray-900);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* ===== SCROLL REVEAL ===== */
.reveal-hidden {
  opacity: 0;
  transform: translateY(24px);
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* ===== ACCESSIBILITY ===== */
*:focus-visible {
  outline: 2px solid var(--black);
  outline-offset: 4px;
  border-radius: 4px;
}

::selection {
  background: var(--black);
  color: var(--white);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--black);
  color: var(--white);
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 0 0 8px 0;
  z-index: 100;
}

.skip-link:focus {
  top: 0;
}

/* ===== ANIMATIONS ===== */
@keyframes ripple {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== PRELOADER (OPTIONAL) ===== */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.preloader-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-top-color: var(--black);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.preloader.loaded {
  opacity: 0;
  pointer-events: none;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Large Desktop */
@media (max-width: 1400px) {
  .container {
    width: 92%;
  }
}

/* Desktop */
@media (max-width: 1200px) {
  .hero h1 {
    font-size: clamp(2.5rem, 4.5vw, 4rem);
  }

  .work-inner {
    grid-template-columns: 0.7fr 1.3fr;
    gap: 60px;
  }

  .services-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .services-header {
    max-width: 600px;
  }
}

/* Tablet */
@media (max-width: 992px) {
  .hero {
    padding: 80px 0 60px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
  }

  .work-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .work-header {
    position: relative;
    top: 0;
    padding-right: 0;
  }

  .work-header h2 {
    font-size: clamp(2.2rem, 3.5vw, 3rem);
  }

  .work-navigation {
    margin-top: 32px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-links-group {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

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

  .stat-number {
    font-size: 3.5rem;
  }
}

/* Mobile Large */
@media (max-width: 768px) {
  .header-inner {
    padding: 16px 0;
  }

  .logo-image {
    height: 50px;
  }

  .cta-btn {
    padding: 10px 24px;
    font-size: 0.9rem;
  }

  .menu-panel {
    width: 100%;
    max-width: 100vw;
    padding: 48px 32px 32px;
  }

  .menu-link {
    font-size: 1.5rem;
    padding: 16px 20px;
  }

  .hero {
    padding: 60px 0 40px;
  }

  .hero h1 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    margin-bottom: 20px;
  }

  .hero-subtext {
    font-size: 1rem;
    margin-bottom: 32px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .hero-meta {
    font-size: 0.85rem;
  }

  .trust {
    padding: 40px 0 50px;
  }

  .trust-inner {
    flex-direction: column;
    gap: 24px;
  }

  .trust-label {
    min-width: auto;
  }

  .services {
    padding: 80px 0 100px;
  }

  .services-header h2 {
    font-size: 2.2rem;
  }

  .service-card {
    flex: 0 0 280px;
  }

  .work {
    padding: 80px 0 100px;
  }

  .work-header h2 {
    font-size: clamp(2rem, 3vw, 2.5rem);
  }

  .work-slide-info h3 {
    font-size: 1.6rem;
  }

  .work-slide-info p {
    font-size: 0.95rem;
  }

  .clients {
    padding: 80px 0 100px;
  }

  .clients-header h2 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
  }

  .clients-header p {
    font-size: 1.05rem;
  }

  .clients-stats {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .stat-item {
    padding: 40px 24px;
  }

  .final-cta {
    padding: 100px 0 120px;
  }

  .final-cta h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
  }

  .footer-links-group {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .chatbot-container {
    width: 100%;
    max-width: 100vw;
    height: 100vh;
    max-height: 100vh;
    bottom: 0;
    right: 0;
    border-radius: 0;
  }

  .appointment-modal-content {
    padding: 32px 24px;
    border-radius: 24px;
  }

  .appointment-modal-content h3 {
    font-size: 1.8rem;
  }

  .meeting-type-selector {
    grid-template-columns: 1fr;
  }

  .platform-options {
    flex-direction: column;
  }

  .time-slots {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }
}

/* Mobile Medium */
@media (max-width: 576px) {
  .logo-image {
    height: 45px;
  }

  .cta-btn {
    padding: 9px 20px;
    font-size: 0.85rem;
  }

  .hamburger {
    width: 44px;
    height: 44px;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1.2;
  }

  .hero-subtext {
    font-size: 0.95rem;
  }

  .hero-cta {
    padding: 11px 28px;
    font-size: 0.9rem;
  }

  .trust-item {
    padding: 10px 20px;
  }

  .trust-item span {
    font-size: 0.85rem;
  }

  .trust-logo {
    width: 28px;
    height: 28px;
  }

  .services-header h2 {
    font-size: 2rem;
  }

  .services-header p {
    font-size: 0.95rem;
  }

  .service-card {
    flex: 0 0 260px;
    padding: 28px 20px;
  }

  .service-card h3 {
    font-size: 1.15rem;
  }

  .service-card p {
    font-size: 0.9rem;
  }

  .work-header h2 {
    font-size: 1.9rem;
  }

  .work-header p {
    font-size: 1rem;
  }

  .work-navigation {
    flex-wrap: wrap;
  }

  .work-nav-btn {
    width: 48px;
    height: 48px;
  }

  .work-slide-info h3 {
    font-size: 1.4rem;
  }

  .clients-header h2 {
    font-size: 2rem;
  }

  .clients-header p {
    font-size: 1rem;
  }

  .stat-number {
    font-size: 3rem;
  }

  .stat-label {
    font-size: 1rem;
  }

  .final-cta h2 {
    font-size: 1.9rem;
  }

  .final-cta p {
    font-size: 1rem;
  }

  .footer-logo-image {
    height: 60px;
  }

  .footer-tagline {
    font-size: 0.9rem;
  }

  .cookie-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .cookie-actions {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }

  .welcome-content {
    padding: 48px 32px;
  }

  .welcome-content h2 {
    font-size: 2rem;
  }

  .welcome-content p {
    font-size: 1rem;
  }

  .whatsapp-float,
  .appointment-float {
    width: 52px;
    height: 52px;
    bottom: 20px;
    left: 20px;
  }

  .whatsapp-float svg,
  .appointment-float svg {
    width: 26px;
    height: 26px;
  }

  .appointment-float {
    bottom: 86px;
  }

  .chatbot-toggle {
    width: 52px;
    height: 52px;
    bottom: 20px;
    right: 20px;
  }

  .chat-icon {
    width: 24px;
    height: 24px;
  }
}

/* Mobile Small */
@media (max-width: 400px) {
  .hero h1 {
    font-size: 1.7rem;
  }

  .services-header h2,
  .work-header h2,
  .clients-header h2,
  .final-cta h2 {
    font-size: 1.75rem;
  }

  .service-card {
    flex: 0 0 240px;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .welcome-content {
    padding: 40px 24px;
  }

  .welcome-content h2 {
    font-size: 1.75rem;
  }

  .appointment-modal-content {
    padding: 28px 20px;
  }

  .appointment-modal-content h3 {
    font-size: 1.6rem;
  }
}

/* High Resolution Screens */
@media (min-width: 1600px) {
  .container {
    max-width: 1400px;
  }
}

/* Print Styles */
@media print {
  .cookie-banner,
  .welcome-banner,
  .menu-panel,
  .menu-backdrop,
  .hamburger,
  .whatsapp-float,
  .appointment-float,
  .chatbot-toggle,
  .chatbot-container,
  .appointment-modal,
  .preloader {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  a {
    text-decoration: underline;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Dark Mode Support (Optional) */
@media (prefers-color-scheme: dark) {
  /* Uncomment to enable dark mode */
  /*
  :root {
    --white: #0a0a0a;
    --black: #ffffff;
    --gray-900: #f5f5f5;
    --gray-700: #d4d4d4;
    --gray-500: #9c9c9c;
    --gray-300: #4a4a4a;
    --gray-100: #1a1a1a;
  }
  */
}

.services-scroll-wrapper {
  overflow: hidden;
  position: relative;
}

.services-grid {
  display: flex;
  gap: 24px;
  cursor: grab;
  user-select: none;
}

.services-grid:active {
  cursor: grabbing;
}

.work-showcase {
  overflow: hidden;
}

.work-carousel {
  display: flex;
  gap: 32px;
  will-change: transform;
}

/* ===============================
   APPOINTMENT DATE INPUT (CALENDAR)
   =============================== */

.appointment-date {
  width: 100%;
  padding: 14px 16px;
  font-size: 0.95rem;
  border-radius: 12px;
  border: 2px solid var(--black);
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  transition: all 0.3s ease;
}

.appointment-date:hover {
  background: var(--gray-100);
}

.appointment-date:focus {
  outline: none;
  border-color: var(--black);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.1);
}

/* Hide ugly default icon (Chrome) */
.appointment-date::-webkit-calendar-picker-indicator {
  cursor: pointer;
  filter: invert(0);
}

/* ===============================
   APPOINTMENT BACKDROP
   =============================== */
.appointment-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 998;
}

.appointment-backdrop.show {
  opacity: 1;
  pointer-events: all;
}

.appointment-modal {
  position: fixed;
  z-index: 999;
}

/* ===============================
   APPOINTMENT SYSTEM STYLES
   Add these to your existing index.css
   =============================== */

/* Meeting Type Button Group */
.meeting-type-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.meeting-type-btn {
  padding: 20px 16px;
  background: rgba(0, 0, 0, 0.02);
  border: 2px solid transparent;
  border-radius: 16px;
  cursor: pointer;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  font-family: 'Inter', sans-serif;
}

.meeting-type-btn:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.1);
}

.meeting-type-btn.active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.meeting-type-btn svg {
  width: 32px;
  height: 32px;
  transition: all var(--transition-base);
}

.meeting-type-btn.active svg {
  color: var(--white);
}

.meeting-type-btn span {
  font-size: 0.9rem;
  font-weight: 600;
  transition: color var(--transition-base);
}

/* Time Slots Container */
.time-slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  max-height: 280px;
  overflow-y: auto;
  padding: 4px;
  margin-top: 12px;
}

.time-slots::-webkit-scrollbar {
  width: 6px;
}

.time-slots::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

.time-slots::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}

.time-slot-btn {
  padding: 14px 16px;
  background: rgba(0, 0, 0, 0.02);
  border: 2px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all var(--transition-base);
  text-align: center;
  font-family: 'Inter', sans-serif;
}

.time-slot-btn:hover {
  background: rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
  border-color: rgba(0, 0, 0, 0.1);
}

.time-slot-btn.active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.slot-hint,
.no-slots {
  text-align: center;
  color: var(--gray-500);
  font-size: 0.9rem;
  padding: 24px;
  grid-column: 1 / -1;
}

.no-slots {
  color: var(--danger);
}

/* Date Input Styling */
.appointment-date {
  width: 100%;
  padding: 14px 16px;
  font-size: 0.95rem;
  border-radius: 12px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  background: rgba(0, 0, 0, 0.02);
  color: var(--black);
  cursor: pointer;
  transition: all var(--transition-base);
  font-family: 'Inter', sans-serif;
}

.appointment-date:hover {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.2);
}

.appointment-date:focus {
  outline: none;
  border-color: var(--black);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.appointment-date::-webkit-calendar-picker-indicator {
  cursor: pointer;
  filter: invert(0);
  opacity: 0.6;
  transition: opacity var(--transition-base);
}

.appointment-date:hover::-webkit-calendar-picker-indicator {
  opacity: 1;
}

/* Appointment Modal Enhancement */
.appointment-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-modal);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 20px;
}

.appointment-modal.show {
  opacity: 1;
  pointer-events: auto;
}

.appointment-modal-content {
  position: relative;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 32px;
  padding: 48px;
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.appointment-modal.show .appointment-modal-content {
  transform: scale(1);
}

.appointment-modal-content::-webkit-scrollbar {
  width: 6px;
}

.appointment-modal-content::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

/* Appointment Backdrop */
.appointment-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: calc(var(--z-modal) - 1);
}

.appointment-backdrop.show {
  opacity: 1;
  pointer-events: all;
}

/* Form Group Improvements */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 4px;
}

.form-group input,
.form-group textarea {
  padding: 14px 16px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  background: rgba(0, 0, 0, 0.02);
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: all var(--transition-base);
}

.form-group input:hover,
.form-group textarea:hover {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.2);
}

.form-group input:focus,
.form-group textarea:focus {
  background: var(--white);
  border-color: var(--black);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

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

/* Submit Button */
.appointment-submit {
  padding: 16px 32px;
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  margin-top: 12px;
  width: 100%;
  font-family: 'Inter', sans-serif;
}

.appointment-submit:hover {
  background: var(--gray-900);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.appointment-submit:active {
  transform: translateY(-2px);
}

/* Close Button */
.appointment-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--black);
  transition: all var(--transition-base);
  z-index: 10;
}

.appointment-close:hover {
  background: var(--black);
  color: var(--white);
  transform: rotate(90deg);
}

.appointment-close svg {
  width: 20px;
  height: 20px;
}

/* Modal Title & Description */
.appointment-modal-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--black);
  padding-right: 40px;
}

.appointment-modal-content > p {
  font-size: 1rem;
  color: var(--gray-700);
  margin-bottom: 32px;
  line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .appointment-modal-content {
    padding: 32px 24px;
    border-radius: 24px;
  }

  .appointment-modal-content h3 {
    font-size: 1.8rem;
  }

  .meeting-type-group {
    grid-template-columns: 1fr;
  }

  .time-slots {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    max-height: 240px;
  }
}

@media (max-width: 576px) {
  .appointment-modal-content h3 {
    font-size: 1.6rem;
  }

  .meeting-type-btn {
    padding: 16px 12px;
  }

  .time-slot-btn {
    padding: 12px 14px;
    font-size: 0.8rem;
  }
}

/* ===============================
   PREMIUM CALENDAR STYLING
   Add this to your index.css
   =============================== */

/* Premium Date Input with Custom Calendar Icon */
.appointment-date {
  position: relative;
  width: 100%;
  padding: 16px 50px 16px 20px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  border-radius: 16px;
  border: 2px solid rgba(0, 0, 0, 0.08);
  background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
  color: var(--black);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.appointment-date:hover {
  border-color: rgba(0, 0, 0, 0.15);
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.appointment-date:focus {
  outline: none;
  border-color: var(--black);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.12);
  transform: translateY(-1px);
}

/* Custom Calendar Icon Styling */
.appointment-date::-webkit-calendar-picker-indicator {
  position: absolute;
  right: 16px;
  width: 24px;
  height: 24px;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.3s ease;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%230a0a0a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}

.appointment-date:hover::-webkit-calendar-picker-indicator {
  opacity: 1;
  transform: scale(1.1);
}

.appointment-date:focus::-webkit-calendar-picker-indicator {
  opacity: 1;
}

/* Firefox Date Input Styling */
.appointment-date::-moz-calendar-picker-indicator {
  opacity: 0.6;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.appointment-date:hover::-moz-calendar-picker-indicator {
  opacity: 1;
}

/* Date Input Placeholder */
.appointment-date:invalid {
  color: var(--gray-500);
}

.appointment-date:valid {
  color: var(--black);
}

/* Enhanced Form Group for Date */
.form-group:has(.appointment-date) {
  position: relative;
}

.form-group:has(.appointment-date) label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--black);
}

.form-group:has(.appointment-date) label::before {
  content: '📅';
  font-size: 1.1rem;
}

/* Premium Time Slot Enhancement */
.time-slot-btn {
  position: relative;
  padding: 16px 20px;
  background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
  border: 2px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.time-slot-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--black) 0%, var(--gray-900) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.time-slot-btn span {
  position: relative;
  z-index: 1;
}

.time-slot-btn:hover {
  border-color: rgba(0, 0, 0, 0.15);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.time-slot-btn.active {
  border-color: var(--black);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.time-slot-btn.active::before {
  opacity: 1;
}

.time-slot-btn.active {
  color: var(--white);
}

/* Premium Meeting Type Buttons */
.meeting-type-btn {
  position: relative;
  padding: 24px 20px;
  background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
  border: 2px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.meeting-type-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--black) 0%, var(--gray-900) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.meeting-type-btn svg,
.meeting-type-btn span {
  position: relative;
  z-index: 1;
}

.meeting-type-btn:hover {
  border-color: rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.meeting-type-btn.active {
  border-color: var(--black);
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.meeting-type-btn.active::before {
  opacity: 1;
}

.meeting-type-btn.active {
  color: var(--white);
}

.meeting-type-btn svg {
  width: 36px;
  height: 36px;
  transition: all 0.3s ease;
}

.meeting-type-btn.active svg {
  transform: scale(1.1);
}

.meeting-type-btn span {
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

/* Slot Hint & No Slots Styling */
.slot-hint {
  text-align: center;
  color: var(--gray-500);
  font-size: 0.95rem;
  padding: 32px 24px;
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
  border-radius: 16px;
  border: 2px dashed rgba(0, 0, 0, 0.1);
  font-weight: 500;
}

.no-slots {
  text-align: center;
  color: var(--danger);
  font-size: 0.95rem;
  padding: 32px 24px;
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
  border-radius: 16px;
  border: 2px solid rgba(255, 68, 68, 0.2);
  font-weight: 600;
}

/* Enhanced Modal Content */
.appointment-modal-content {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
  backdrop-filter: blur(24px);
  border-radius: 32px;
  padding: 56px 48px;
  max-width: 750px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.05);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Input Field Enhancements */
.form-group input:not([type="date"]),
.form-group textarea {
  padding: 16px 20px;
  border: 2px solid rgba(0, 0, 0, 0.08);
  background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
  border-radius: 14px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.form-group input:not([type="date"]):hover,
.form-group textarea:hover {
  border-color: rgba(0, 0, 0, 0.15);
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.form-group input:not([type="date"]):focus,
.form-group textarea:focus {
  background: #ffffff;
  border-color: var(--black);
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.12);
  transform: translateY(-1px);
}

/* Submit Button Enhancement */
.appointment-submit {
  padding: 18px 40px;
  background: linear-gradient(135deg, var(--black) 0%, var(--gray-900) 100%);
  color: var(--white);
  border: none;
  border-radius: 999px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 16px;
  width: 100%;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.appointment-submit:hover {
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--black) 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.appointment-submit:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .appointment-date {
    padding: 14px 45px 14px 18px;
    font-size: 0.95rem;
  }

  .meeting-type-btn {
    padding: 20px 16px;
  }

  .time-slot-btn {
    padding: 14px 16px;
    font-size: 0.85rem;
  }
}
/* ===== END OF STYLESHEET ===== */