/* =========================================
GLOBAL
========================================= */

*{
margin:0;
padding:0;
box-sizing:border-box;
scroll-behavior:smooth;
}

body{
font-family:'Inter',sans-serif;
background:#faf8f5;
color:#222;
overflow-x:hidden;
}

/* =========================================
TOP BAR
========================================= */

.top-bar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    background: #2F6B63;
    color:#fff;
    padding:10px 25px;
    overflow:hidden;
}

.top-left{
    flex:1;
    overflow:hidden;
}

.marquee{
    width:100%;
    overflow:hidden;
    white-space:nowrap;
}

.marquee-content{
    display:inline-block;
    white-space:nowrap;
    padding-left:100%;
    animation:scrollText 25s linear infinite;
    font-size:14px;
    font-weight:500;
}

@keyframes scrollText{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-100%);
    }
}

.top-right{
    display:flex;
    align-items:center;
    gap:20px;
}

.clinic-btn{
    background:#fff;
    color: #2F6B63;
    text-decoration:none;
    padding:8px 16px;
    border-radius:30px;
    font-weight:600;
    transition:.3s;
}

.clinic-btn:hover{
    background:#f3f3f3;
}

.privacy{
    display:flex;
    align-items:center;
    gap:6px;
    font-size:14px;
}
/* =========================================
NAVBAR
========================================= */

nav{
position:fixed;
top:52px;
left:0;
width:100%;
height:82px;
background:rgba(255,255,255,0.96);
backdrop-filter:blur(12px);
display:flex;
justify-content:space-between;
align-items:center;
padding:0 6%;
z-index:1500;
border-bottom:1px solid rgba(0,0,0,0.05);
}

/* LOGO */

.logo{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:inherit;
}

.logo-circle{
width:44px;
height:44px;
border-radius:50%;
background:#d36b4b;
display:flex;
justify-content:center;
align-items:center;
color:white;
font-size:17px;
}

.logo h1{
font-size:30px;
font-family:'Cormorant Garamond',serif;
font-weight:700;
color:#222;
}

/* NAV LINKS */

.nav-links{
display:flex;
align-items:center;
gap:20px;
}

.nav-links a{
text-decoration:none;
font-size:15px;
color:#555;
font-weight:500;
transition:0.3s;
}

.nav-links a:hover{
color:#d36b4b;
}

/* AUTH BUTTONS */

.auth-buttons{
display:flex;
align-items:center;
gap:14px;
}

.login-btn,
.signup-btn,
.logout-btn{
padding:12px 24px;
border-radius:40px;
font-size:15px;
font-weight:600;
cursor:pointer;
transition:0.3s;
border:none;
}

.login-btn{
background:#f1f1f1;
color:#333;
}

.signup-btn{
background:#d36b4b;
color:white;
}

.logout-btn{
background:#c62828;
color:white;
}

.login-btn:hover,
.signup-btn:hover,
.logout-btn:hover{
transform:translateY(-2px);
}

/* BURGER MENU */

.menu-toggle{
display:none;
width:44px;
height:44px;
border-radius:12px;
justify-content:center;
align-items:center;
cursor:pointer;
font-size:22px;
color:#222;
transition:0.3s;
}

.menu-toggle:hover{
background:#f2f2f2;
}

/* =========================================
USER MENU WRAPPER
========================================= */

.user-menu{
  position: relative;
  display: inline-block;
}

/* =========================================
USER PROFILE BUTTON
========================================= */

.user-profile{
  display: flex;
  align-items: center;
  gap: 10px;

  cursor: pointer;

  padding: 8px 14px;

  border-radius: 10px;

  background: #ffffff;

  transition: 0.3s;
}

.user-profile:hover{
  background: #f5f5f5;
}

/* =========================================
USER AVATAR
========================================= */

.user-avatar{
  width: 36px;
  height: 36px;

  border-radius: 50%;

  background: #0f172a;
  color: white;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================================
DROPDOWN BOX
========================================= */

.user-dropdown{

  position: absolute;

  top: calc(100% + 10px);
  right: 0;

  width: 220px;

  background: #ffffff;

  border-radius: 12px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.15);

  overflow: hidden;

  z-index: 9999;

  opacity: 0;

  visibility: hidden;

  transform: translateY(-10px);

  transition: 0.25s ease;
}

/* =========================================
ACTIVE DROPDOWN
========================================= */

.user-dropdown.active{

  opacity: 1;

  visibility: visible;

  transform: translateY(0);
}

/* =========================================
DROPDOWN LINKS
========================================= */

.user-dropdown a,
.user-dropdown button{

  display: flex;

  align-items: center;

  gap: 10px;

  width: 100%;

  padding: 14px 16px;

  background: transparent;

  border: none;

  text-decoration: none;

  color: #333;

  font-size: 14px;

  cursor: pointer;

  transition: 0.2s;
}

/* =========================================
HOVER EFFECT
========================================= */

.user-dropdown a:hover,
.user-dropdown button:hover{

  background: #f5f5f5;
}



.floating{
  position:fixed;
  right:20px;
  bottom:20px;
  display:flex;
  flex-direction:column;
  gap:12px;
  z-index:2500;
}

.floating a{
  width:48px;
  height:48px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-size:20px;
  box-shadow:0 6px 18px rgba(0,0,0,0.15);
  transition:all 0.3s ease;
}

/* WhatsApp */
.whatsapp{
  background:#25D366;
  color:#fff;
}

/* Chatbot */
.chatbot{
  background:#2f4e5d;
  color:#fff;
}

/* Hover Effects */
.floating a:hover{
  transform:translateY(-4px) scale(1.05);
  box-shadow:0 10px 25px rgba(0,0,0,0.25);
}

/* ================= DRIVES SECTION ================= */
.drives-section{
  background: var(--light-bg);
  padding: 180px 10% 80px;
}

.drives-header {
  max-width: 800px;
  margin-bottom: 40px;
}

.tagline {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: #6b8a99;
  text-transform: uppercase;
  display: inline-block;
  border-bottom: 1px solid #dcd6ce;
  padding-bottom: 3px;
  margin-bottom: 25px;
}

.drives-header h2 {
  font-family: Georgia, serif;
  font-size: 48px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.drives-header p {
  font-size: 16px;
  color: var(--text-light);
  max-width: 500px;
  line-height: 1.6;
}

/* FILTER */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}

.city-pill {
  background: #e6ecee;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
}

/* CARD */
.no-drives-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 24px;
  padding: 100px 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.filter-bar{
  display:flex;
  align-items:center;
  gap:10px;
  cursor:pointer;
}

.city-dropdown{
  position:relative;
}

.city-pill{
  background:#eee;
  padding:6px 14px;
  border-radius:20px;
  font-size:13px;
  cursor:pointer;
}

/* Dropdown */
.dropdown-menu{
  position:absolute;
  top:120%;
  left:0;
  background:#fff;
  border-radius:12px;
  box-shadow:0 8px 20px rgba(0,0,0,0.1);
  padding:8px 0;
  display:none;
  min-width:150px;
  z-index:1000;
}

.city-option{
  padding:8px 14px;
  font-size:13px;
  cursor:pointer;
}

.city-option:hover{
  background:#f5f5f5;
}


/* =========================================
FLOATING AUTH ICONS (MOBILE)
========================================= */

.floating-auth{
  position:fixed;
  bottom:160px;
  right:18px;
  display:none;
  flex-direction:column;
  gap:12px;
  z-index:3000;
}

/* icon buttons */
.fab{
  width:50px;
  height:50px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-size:18px;
  box-shadow:0 8px 20px rgba(0,0,0,0.15);
  transition:0.3s;
  background:#fff;
  color:#333;
}

/* individual colors */
.fab.login{
  color:#2f6b63;
}

.fab.signup{
  color:#d36b4b;
}

.fab.logout{
  color:#c62828;
}

/* hover effect */
.fab:hover{
  transform:translateY(-4px) scale(1.05);
}

/* show only on mobile */
@media(max-width:1100px){
  .floating-auth{
    display:flex;
  }
}


/* =========================================
AI FOOTER SECTION STYLES
========================================= */

.ai-footer-section {
    background-color: #F9F7F4; /* Off-white cream background from image */
    padding: 80px 40px;
    font-family: 'Inter', sans-serif;
}

body {
    padding-top: 134px; /* 52px top bar + 82px navbar */
}

.ai-footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* Left Content Styles */
.ai-footer-content {
    flex: 1.2;
}

.ai-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #6B8A99; /* Slate blue color */
    border-top: 1px solid #6B8A99;
    padding-top: 8px;
    display: inline-block;
    text-transform: uppercase;
}

.ai-main-heading {
    font-family: 'Cormorant Garamond', serif; /* Elegant serif font */
    font-size: 52px;
    line-height: 1.1;
    color: #1A1A1A;
    margin: 25px 0;
    font-weight: 500;
}

.italic-highlight {
    font-style: italic;
    color: #C95A3D; /* Terracotta/Orange-brown accent */
    font-family: 'Cormorant Garamond', serif;
}

.ai-description {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    max-width: 520px;
    margin: 0;
}

/* Right Graphic Styles */
.ai-footer-graphic {
    flex: 0.8;
    display: flex;
    justify-content: flex-end;
}

.abstract-image-container {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1.2 / 1;
    border-radius: 24px; /* Soft rounded corners from image */
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.abstract-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .ai-footer-container {
        flex-direction: column;
        text-align: left;
    }
    
    .ai-footer-graphic {
        justify-content: flex-start;
        width: 100%;
    }
    
    .ai-main-heading {
        font-size: 42px;
    }
}
/* =========================================
GLOBAL RESET
========================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #faf8f5;
  color: #222;
  overflow-x: hidden;
}

/* =========================================
ASSISTANT LAYOUT (FIXED)
========================================= */

.assistant-container {
  background-color: #FDFCFB;
  padding: 60px 20px;
}

.assistant-grid {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;

  /* FIX: safer responsive grid */
  grid-template-columns: 2fr 1fr;

  gap: 30px;

  /* FIX: prevents height conflict */
  align-items: start;
}

/* MOBILE FIX (IMPORTANT) */
@media (max-width: 1024px) {
  .assistant-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* =========================================
CHAT WINDOW (FIXED)
========================================= */

.chat-window {
  background: #fff;
  border: 1px solid #EAE5E0;
  border-radius: 24px;

  display: flex;
  flex-direction: column;

  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);

  width: 100%;
  height: 560px;
}

/* HEADER */
.chat-header {
  background: #F0EDE8;
  padding: 15px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* BODY (IMPORTANT FIX) */
.chat-body {
  flex: 1;
  padding: 28px;

  overflow-y: auto;
  min-height: 0;   /* 🔥 FIX SCROLL BUG */

  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* MESSAGES */
.user-message {
  background: #d36b4b;
  color: #fff;
  padding: 14px 18px;
  border-radius: 18px;
  margin-left: auto;
  max-width: 80%;
  font-size: 14px;
  line-height: 1.6;
}

.assistant-bubble {
  background: #F0EDE8;
  color: #333;
  padding: 16px 18px;
  border-radius: 18px;
  max-width: 85%;
  font-size: 14px;
  line-height: 1.6;
}

/* FOOTER */
.chat-footer {
  padding: 20px;
  border-top: 1px solid #F0EDE8;
  display: flex;
  gap: 12px;
  align-items: center;
}

.chat-footer input {
  flex: 1;
  border: 1px solid #EAE5E0;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  outline: none;
}

/* =========================================
SIDEBAR (FIXED)
========================================= */

.info-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;

  /* ❌ REMOVED fixed height (IMPORTANT FIX) */
}

/* CARDS */
.info-card {
  background: #fff;
  border: 1px solid #EAE5E0;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

/* LIST */
.card-heading {
  font-size: 22px;
  margin: 10px 0 15px;
}

.promise-list {
  list-style: none;
}

.promise-list li {
  font-size: 13px;
  margin-bottom: 10px;
  color: #666;
  position: relative;
  padding-left: 14px;
}

.promise-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #999;
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid #F0EDE8;
  padding: 12px 0;
  font-size: 13px;
  cursor: pointer;
}

.faq-content {
  font-size: 13px;
  color: #666;
  margin-top: 8px;
  line-height: 1.6;
}

/* =========================================
DISCLAMER (FIXED SINGLE VERSION ONLY)
========================================= */

.disclaimer-card {
  background: #fff;
  border-radius: 24px;
  padding: 20px;
  border: 1px solid #ececec;
  box-shadow: 0 8px 30px rgba(0,0,0,0.04);

  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.disclaimer-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 16px;
  background: #f3efe8;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #d36b4b;
  font-size: 20px;
}

.disclaimer-text {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
}


/* =========================================
FOOTER
========================================= */

footer{
background:#163d3d;
padding:55px 20px;
text-align:center;
color:white;
font-size:15px;
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:1100px){

.top-bar{
padding:0 18px;
}

.top-left{
font-size:12px;
}

.top-right{
gap:10px;
}

.clinic-btn{
padding:8px 14px;
font-size:12px;
}

.privacy{
font-size:12px;
}

nav{
top:52px;
height:82px;
padding:0 5%;
}

.menu-toggle{
display:flex;
}

/* HIDE DESKTOP BUTTONS */

.auth-buttons{
display:flex;
}

.mobile-auth{
display:flex;
}

/* MOBILE MENU */

.nav-links{
position:absolute;
top:82px;
left:0;
width:100%;
background:white;
display:none;
flex-direction:column;
align-items:flex-start;
padding:28px 5%;
gap:22px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
border-top:1px solid rgba(0,0,0,0.05);
}

.nav-links.active{
display:flex;
}

.hero-title{
font-size:54px;
}

}

@media(max-width:768px){

.top-bar{
height:auto;
padding:10px 14px;
flex-direction:column;
gap:10px;
align-items:flex-start;
}

nav{
top:88px;
}

.logo h1{
font-size:26px;
}

.hero{
padding-top:220px;
padding-bottom:100px;
height:auto;
}

.hero-title{
font-size:42px;
}

.hero-desc{
font-size:20px;
}

.hero-buttons{
flex-direction:column;
}

.section-title{
font-size:40px;
}

}

.nav-links .mobile-auth{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-top:20px;
  width:100%;
  
}

.mobile-auth{
  display:flex;
}

.mobile-auth .login-btn,
.mobile-auth .signup-btn,
.mobile-auth .logout-btn{
width:100%;
text-align:center;
}


/* Footer Replica Styles - Professional Tighter Spacing */
.vax-footer {
    background-color: #f2eee8;
    padding: 50px 10% 40px 10%; /* Reduced top/bottom padding for closeness */
    color: #444;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.footer-brand {
    max-width: 380px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px; /* Reduced from 25px */
}

.logo-icon {
    background-color: #c95a3d;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transform: rotate(-45deg);
}

.logo-text {
    font-family: 'Georgia', serif;
    font-size: 24px;
    color: #1a1a1a;
}

.footer-brand p {
    font-size: 14px; /* Slightly smaller for professional feel */
    line-height: 1.5;
    color: #666;
}

.footer-nav-group h4 {
    font-size: 11px;
    letter-spacing: 2px;
    color: #6b8a99;
    text-transform: uppercase;
    margin-bottom: 15px; /* Reduced from 25px */
    border-bottom: 1px solid #dcd6ce;
    display: inline-block;
    padding-bottom: 4px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px; /* Reduced from 12px for tighter list */
}

.footer-links a {
    text-decoration: none;
    color: #555;
    font-size: 13.5px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #c95a3d;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px; /* Reduced from 15px */
    font-size: 13.5px;
    color: #555;
}

.contact-item i {
    font-size: 15px;
    color: #888;
}

.contact-item a {
    text-decoration: underline;
    color: #555;
    text-decoration-color: #ccc;
}

.contact-item {
    display: flex;
    align-items: flex-start; /* Align icon to top */
    gap: 12px;
    margin-bottom: 12px;
    font-size: 13.5px;
    color: #555;
    line-height: 1.6;
}

.contact-item i {
    font-size: 15px;
    color: #888;
    min-width: 18px; /* Keeps icons aligned */
    margin-top: 3px;
}

.contact-item a,
.contact-item span {
    flex: 1;
    color: #555;
    word-break: break-word;
}

.contact-item a {
    text-decoration: underline;
    text-decoration-color: #ccc;
}


@media (max-width: 768px) {
    .vax-footer {
        flex-direction: column;
        padding: 40px 30px; /* Tighter mobile padding */
        gap: 30px;
    }
}

@media(max-width:768px){

  .nutrition-section{
    padding-top: 200px; /* FIX: prevents overlap with fixed nav */
  }

}

.top-bar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:52px;
    background:#2f6b63;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 28px;
    z-index:2000;
}

.top-left{
    flex:1;
    overflow:hidden;
    margin-right:20px;
}

.top-left marquee{
    color:white;
    font-size:14px;
    font-weight:400;
    width:100%;
}

.top-right{
    display:flex;
    align-items:center;
    gap:16px;
    flex-shrink:0;
}

/* =========================
DESKTOP
========================= */
@media (min-width: 769px) {

  /* Show desktop login/signup or user icon */
  #desktopAuth {
    display: flex !important;
    align-items: center;
    gap: 12px;
  }

  /* Hide floating icons */
  .floating-auth {
    display: none !important;
  }
}


/* =========================
MOBILE
========================= */
@media (max-width: 768px) {

  /* Hide desktop auth section */
  #desktopAuth {
    display: none !important;
  }

  /* Show floating auth icons */
  .floating-auth {
    display: flex !important;
  }
}