/* 
===============================================
  Adiyen Physio - Professional Stylings
===============================================
*/

:root {
  --primary: #2b8c4c;
  --primary-hover: #1f6b3a;
  --primary-light: #e6f3eb;
  --secondary: #0c6291;
  --secondary-hover: #08496b;
  --secondary-light: #e6f1f7;
  
  --bg-main: #ffffff;
  --bg-offset: #f7fbfc;
  --bg-dark: #122119;
  
  --text-dark: #18221c;
  --text-body: #475a50;
  --text-light: #ffffff;
  
  --shadow-sm: 0 2px 4px rgba(43, 140, 76, 0.05);
  --shadow-md: 0 10px 20px rgba(43, 140, 76, 0.08);
  --shadow-lg: 0 20px 40px rgba(12, 98, 145, 0.12);
  --shadow-glow: 0 0 20px rgba(43, 140, 76, 0.3);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);

  /* Fluid Typography */
  --font-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --font-sm: clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
  --font-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --font-lg: clamp(1.125rem, 1rem + 0.625vw, 1.375rem);
  --font-xl: clamp(1.375rem, 1.125rem + 1.25vw, 1.75rem);
  --font-2xl: clamp(1.75rem, 1.25rem + 2.5vw, 2.5rem);
  --font-3xl: clamp(2.25rem, 1.5rem + 3.75vw, 3.5rem);

  /* Fluid Spacing */
  --space-xs: clamp(0.5rem, 0.4rem + 0.5vw, 0.75rem);
  --space-sm: clamp(0.75rem, 0.6rem + 0.75vw, 1rem);
  --space-md: clamp(1rem, 0.75rem + 1.25vw, 1.5rem);
  --space-lg: clamp(1.5rem, 1rem + 2.5vw, 2.5rem);
  --space-xl: clamp(2.5rem, 1.5rem + 5vw, 4rem);
  --space-2xl: clamp(4rem, 2rem + 10vw, 7rem);
}

/* =========================================
   Base & Reset
   ========================================= */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text-body);
  background-color: var(--bg-main);
  line-height: 1.6;
  font-size: var(--font-base);
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.2;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* =========================================
   Typography Utilities
   ========================================= */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.section-subtitle {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: var(--font-sm);
  margin-bottom: var(--space-xs);
  background: var(--primary-light);
  padding: 0.25rem 1rem;
  border-radius: var(--radius-full);
}
.section-title {
  font-size: var(--font-2xl);
  margin-bottom: var(--space-md);
  position: relative;
}

/* =========================================
   Layout Utilities
   ========================================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.section-padding { padding: var(--space-2xl) 0; }
.pb-0 { padding-bottom: 0 !important; }
.bg-offset { background-color: var(--bg-offset); }
.bg-primary { background-color: var(--primary); color: var(--text-light); }
.bg-secondary { background-color: var(--secondary); color: var(--text-light); }
.bg-dark { background-color: var(--bg-dark); color: var(--text-light); }
.grid { display: grid; gap: 16px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-column { flex-direction: column; }
.gap-1 { gap: var(--space-sm); }
.gap-2 { gap: var(--space-md); }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-4 { margin-top: var(--space-lg); }

/* =========================================
   Buttons
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  padding: clamp(0.6rem, 1vw, 0.8rem) clamp(1.2rem, 2vw, 1.8rem);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: var(--font-base);
  outline: none;
  white-space: nowrap;
}
.btn-primary { background-color: var(--primary); color: var(--text-light); box-shadow: 0 4px 14px rgba(43, 140, 76, 0.4); }
.btn-primary:hover { background-color: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(43, 140, 76, 0.5); color: var(--text-light); }
.btn-secondary { background-color: var(--secondary); color: var(--text-light); box-shadow: 0 4px 14px rgba(12, 98, 145, 0.3); }
.btn-secondary:hover { background-color: var(--secondary-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(12, 98, 145, 0.5); color: var(--text-light); }
.btn-outline { background-color: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background-color: var(--primary); color: var(--text-light); }
.whatsapp-hero-btn { background-color: white; border-color: white; color: #25D366; }
.whatsapp-hero-btn:hover { background-color: #25D366; border-color: #25D366; color: white !important; }

/* =========================================
   Header & Navigation
   ========================================= */
.header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; transition: var(--transition); background: transparent; padding: var(--space-md) 0; }
.header.scrolled { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); padding: var(--space-sm) 0; box-shadow: var(--shadow-sm); }
.logo-container { display: flex; align-items: center; gap: 0.5rem; }
.logo-text { font-family: 'Outfit', sans-serif; font-size: var(--font-xl); font-weight: 800; color: var(--text-dark); white-space: nowrap; }
.logo-text span { color: var(--primary); }
.logo-img { display: block; max-height: 48px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: var(--space-md); }
.nav-link { font-weight: 500; color: var(--text-dark); position: relative; font-size: var(--font-sm); white-space: nowrap; }
.nav-link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background-color: var(--primary); transition: var(--transition); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover, .nav-link.active { color: var(--primary); }
.mobile-menu-btn { display: none; font-size: var(--font-xl); color: var(--text-dark); cursor: pointer; background: none; border: none; }

/* Services Dropdown - Desktop */
.nav-dropdown { position: relative; }
.nav-dropdown-header { display: flex; align-items: center; gap: 0; }
.nav-dropdown-header .nav-link { display: flex; align-items: center; gap: 4px; }
.dropdown-toggle { display: none; } /* Hidden on desktop, shown on mobile */
.nav-dropdown-header .nav-link i { font-size: 0.7em; transition: transform 0.3s ease; }
.nav-dropdown:hover .nav-dropdown-header .nav-link i { transform: rotate(180deg); }
.dropdown-menu { 
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  min-width: 260px; background: white; border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md); padding: 0.5rem 0;
  opacity: 0; visibility: hidden; transform: translateX(-50%) translateY(10px);
  transition: var(--transition); z-index: 100; margin-top: 12px;
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; }
.dropdown-menu a { display: flex; align-items: center; gap: 0.6rem; padding: 0.6rem 1.2rem; font-size: var(--font-sm); color: var(--text-body); font-weight: 500; transition: var(--transition); }
.dropdown-menu a:hover { background: var(--primary-light); color: var(--primary); padding-left: 1.5rem; }
.dropdown-menu a i { color: var(--primary); width: 20px; text-align: center; font-size: 0.9em; }

/* =========================================
   Page Header
   ========================================= */
.page-header { padding-top: 120px; padding-bottom: var(--space-xl); background: var(--bg-offset); text-align: center; }
.page-header .section-title { margin-bottom: var(--space-xs); }
.page-header p { max-width: 600px; margin: 0 auto; color: var(--text-body); }

/* =========================================
   Hero Section
   ========================================= */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding-top: 80px; }
.hero-bg { position: absolute; top: 0; right: 0; width: 100%; height: 100%; z-index: -1; background: linear-gradient(135deg, var(--bg-offset) 0%, #e8f5ed 100%); }
.hero-bg::after, .hero-bg::before { content: ''; position: absolute; border-radius: 50%; }
.hero-bg::after { top: -10%; right: -5%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(43,140,76,0.1) 0%, rgba(255,255,255,0) 70%); }
.hero-bg::before { bottom: 0; left: -5%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(12,98,145,0.08) 0%, rgba(255,255,255,0) 70%); }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); align-items: center; }
.hero-content { max-width: 600px; animation: fadeUp 1s ease forwards; }
.hero-title { font-size: var(--font-3xl); font-weight: 800; line-height: 1.1; margin-bottom: var(--space-sm); color: var(--text-dark); }
.hero-title span { color: var(--primary); }
.hero-subtitle { font-size: var(--font-lg); color: var(--secondary); font-weight: 500; margin-bottom: var(--space-md); font-family: 'Outfit', sans-serif; }
.hero-desc { font-size: var(--font-base); color: var(--text-body); margin-bottom: var(--space-lg); }
.hero-image { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); animation: fadeIn 1.2s ease forwards; }
.hero-image img { width: 100%; height: auto; object-fit: cover; transition: transform 0.5s ease; }
.hero-image:hover img { transform: scale(1.05); }
.hero-floating-card { position: absolute; bottom: -20px; left: -20px; background: var(--bg-main); padding: var(--space-md); border-radius: var(--radius-md); box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 1rem; z-index: 10; animation: float 4s ease-in-out infinite; }
.hero-floating-card .icon { width: 50px; height: 50px; background: var(--primary-light); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: var(--font-xl); }
.hero-floating-card .stats { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: var(--font-lg); color: var(--text-dark); }
.hero-floating-card .text { font-size: var(--font-xs); color: var(--text-body); }

/* =========================================
   Process / Steps Section
   ========================================= */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-md); counter-reset: step; }
.process-step { text-align: center; position: relative; padding: var(--space-lg) var(--space-md); }
.process-step::before { counter-increment: step; content: counter(step); display: flex; align-items: center; justify-content: center; width: 60px; height: 60px; border-radius: 50%; background: var(--primary); color: white; font-family: 'Outfit', sans-serif; font-weight: 800; font-size: var(--font-xl); margin: 0 auto var(--space-md); position: relative; z-index: 2; box-shadow: 0 4px 14px rgba(43,140,76,0.3); }
.process-step:not(:last-child)::after { content: ''; position: absolute; top: calc(var(--space-lg) + 30px); left: calc(50% + 35px); width: calc(100% - 70px); height: 2px; background: linear-gradient(90deg, var(--primary), var(--primary-light)); z-index: 1; }
.process-step h3 { font-size: var(--font-lg); margin-bottom: var(--space-xs); }
.process-step p { font-size: var(--font-sm); color: var(--text-body); }

/* =========================================
   Feature & Services Cards
   ========================================= */
.card { background: var(--bg-main); border-radius: var(--radius-md); padding: var(--space-lg); box-shadow: var(--shadow-sm); transition: var(--transition); border: 1px solid rgba(0,0,0,0.03); height: 100%; display: flex; flex-direction: column; }
.card:hover { transform: translateY(-10px); box-shadow: var(--shadow-md); border-color: var(--primary-light); }
.card-icon { width: clamp(50px, 5vw, 70px); height: clamp(50px, 5vw, 70px); border-radius: var(--radius-sm); background: var(--primary-light); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: var(--font-xl); margin-bottom: var(--space-md); transition: var(--transition); }
.card:hover .card-icon { background: var(--primary); color: var(--text-light); }
.text-center .card-icon { margin-left: auto; margin-right: auto; }
.card-title { font-size: var(--font-xl); margin-bottom: var(--space-xs); }
.card-desc { color: var(--text-body); margin-bottom: var(--space-md); flex-grow: 1; }
.card-link { font-weight: 600; color: var(--primary); display: inline-flex; align-items: center; gap: 0.5rem; margin-top: auto; }
.card-link:hover { color: var(--primary-hover); }
.card-link i { transition: transform 0.3s ease; }
.card-link:hover i { transform: translateX(5px); }
.card-sm { padding: var(--space-md); }
.card-sm .card-icon { width: 45px; height: 45px; font-size: var(--font-lg); margin-bottom: var(--space-sm); }
.card-sm .card-title { font-size: var(--font-lg); }
.card-sm .card-desc { font-size: var(--font-sm); margin-bottom: var(--space-sm); }

/* =========================================
   About Section
   ========================================= */
.about-image { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); position: relative; z-index: 1; width: 100%; object-fit: cover; aspect-ratio: 4/5; }
.about-image-wrapper { position: relative; }
.about-image-wrapper::before { content: ''; position: absolute; top: -20px; left: -20px; width: 100%; height: 100%; border: 3px solid var(--primary); border-radius: var(--radius-lg); z-index: 0; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: var(--space-lg); }
.about-feature-item { display: flex; align-items: center; gap: 0.5rem; font-weight: 500; color: var(--text-dark); font-size: var(--font-sm); }
.about-feature-item i { color: var(--primary); background: var(--primary-light); padding: 0.5rem; border-radius: 50%; }

/* Vision / Mission / Values */
.vmv-card { text-align: center; padding: var(--space-lg); border-radius: var(--radius-md); background: var(--bg-main); box-shadow: var(--shadow-sm); border: 1px solid rgba(0,0,0,0.03); transition: var(--transition); }
.vmv-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.vmv-card .vmv-icon { width: 70px; height: 70px; border-radius: 50%; background: var(--primary-light); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: var(--font-2xl); margin: 0 auto var(--space-md); }
.vmv-card h3 { font-size: var(--font-xl); margin-bottom: var(--space-sm); }

/* =========================================
   Testimonials
   ========================================= */
.testimonial-card { background: var(--bg-main); padding: var(--space-lg); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); position: relative; transition: var(--transition); }
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.testimonial-card::before { content: '\201C'; font-family: 'Outfit', sans-serif; font-size: var(--font-3xl); color: var(--primary-light); position: absolute; top: -10px; left: 20px; z-index: 0; line-height: 1; }
.testimonial-content { position: relative; z-index: 1; font-style: italic; margin-bottom: var(--space-md); font-size: var(--font-base); }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-avatar { width: 50px; height: 50px; border-radius: 50%; background: var(--primary); color: white; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: var(--font-lg); }
.testimonial-name { font-weight: 700; color: var(--text-dark); }
.testimonial-loc { font-size: var(--font-xs); color: var(--text-body); }

/* =========================================
   Gallery Grid
   ========================================= */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.gallery-item { position: relative; border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4/3; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(43, 140, 76, 0.8); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { color: white; font-size: var(--font-2xl); transform: translateY(20px); transition: transform 0.3s ease; }
.gallery-item:hover .gallery-overlay i { transform: translateY(0); }

/* =========================================
   FAQs (Accordion)
   ========================================= */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--bg-main); border-radius: var(--radius-sm); margin-bottom: 16px; box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-question { width: 100%; text-align: left; padding: var(--space-md); font-family: 'Outfit', sans-serif; font-size: var(--font-lg); font-weight: 600; color: var(--text-dark); background: transparent; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: var(--transition); }
.faq-question i { color: var(--primary); transition: transform 0.3s ease; flex-shrink: 0; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; background: var(--bg-offset); }
.faq-item.active .faq-answer { max-height: 500px; }
.faq-answer-inner { padding: 0 var(--space-md) var(--space-md) var(--space-md); color: var(--text-body); font-size: var(--font-base); }

/* =========================================
   Contact Form
   ========================================= */
.contact-container { background: var(--bg-main); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); overflow: hidden; display: flex; flex-direction: row; }
.contact-info { background: var(--primary); color: white; padding: var(--space-xl); flex: 1; }
.contact-info h3 { color: white; margin-bottom: var(--space-md); }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: var(--space-md); }
.contact-form { padding: var(--space-xl); flex: 2; }
.form-group { margin-bottom: var(--space-md); }
.form-label { display: block; font-weight: 500; margin-bottom: 0.5rem; color: var(--text-dark); }
.form-control { width: 100%; padding: var(--space-sm) var(--space-md); border: 1px solid #e2e8f0; border-radius: var(--radius-sm); font-family: inherit; font-size: var(--font-base); transition: var(--transition); }
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-light); }
textarea.form-control { resize: vertical; min-height: 120px; }

/* =========================================
   Popup / Modal 
   ========================================= */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 2000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: var(--transition); backdrop-filter: blur(4px); }
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-content { background: var(--bg-main); width: 90%; max-width: 500px; border-radius: var(--radius-md); padding: var(--space-lg); position: relative; transform: translateY(-50px); transition: var(--transition); max-height: 90vh; overflow-y: auto; }
.modal-overlay.active .modal-content { transform: translateY(0); }
.modal-close { position: absolute; top: 15px; right: 15px; background: var(--bg-offset); border: none; width: 35px; height: 35px; border-radius: 50%; font-size: 1.2rem; cursor: pointer; color: var(--text-dark); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.modal-close:hover { background: var(--secondary); color: white; }

/* =========================================
   CTA Banner
   ========================================= */
.cta-banner { background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%); border-radius: var(--radius-lg); padding: var(--space-2xl) var(--space-lg); text-align: center; color: white; position: relative; overflow: hidden; }
.cta-banner::before, .cta-banner::after { content: ''; position: absolute; border-radius: 50%; background: rgba(255,255,255,0.1); }
.cta-banner::before { top: -50px; right: -50px; width: 200px; height: 200px; }
.cta-banner::after { bottom: -50px; left: -50px; width: 150px; height: 150px; }
.cta-banner h2 { color: white; font-size: var(--font-2xl); }

/* =========================================
   Content Blocks (service detail pages)
   ========================================= */
.content-block { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); align-items: center; }
.content-block.reverse { direction: rtl; }
.content-block.reverse > * { direction: ltr; }
.content-list { list-style: none; padding: 0; margin: var(--space-md) 0; }
.content-list li { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: var(--space-sm); color: var(--text-body); }
.content-list li i { color: var(--primary); margin-top: 4px; flex-shrink: 0; }

/* =========================================
   Footer
   ========================================= */
.footer { background-color: var(--bg-dark); color: var(--text-light); padding: var(--space-2xl) 0 var(--space-lg); }
.footer-top { display: grid; gap: 16px; grid-template-columns: 2fr 1fr 1fr 1.5fr; margin-bottom: var(--space-xl); }
.footer-logo { color: white; font-family: 'Outfit', sans-serif; font-size: var(--font-xl); font-weight: 800; margin-bottom: var(--space-sm); display: block; }
.footer-logo span { color: var(--primary); }
.footer-desc { color: #a0aec0; margin-bottom: var(--space-md); }
.footer-social { display: flex; gap: var(--space-sm); }
.social-icon { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.social-icon:hover { background: var(--primary); transform: translateY(-3px); }
.footer-title { color: white; font-size: var(--font-lg); margin-bottom: var(--space-md); }
.footer-links li { margin-bottom: var(--space-xs); }
.footer-links a { color: #a0aec0; transition: var(--transition); }
.footer-links a:hover { color: var(--primary); padding-left: 5px; }
.footer-bottom { padding-top: var(--space-md); border-top: 1px solid rgba(255,255,255,0.1); text-align: center; color: #a0aec0; font-size: var(--font-sm); }

/* =========================================
   Floating Utilities
   ========================================= */
.whatsapp-float { position: fixed; bottom: 30px; left: 30px; background-color: #25d366; color: white; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4); z-index: 1000; transition: var(--transition); animation: pulse-green 2s infinite; }
.whatsapp-float:hover { transform: scale(1.1); color: white; }

/* Call Float Button (Right side, matching WhatsApp style) */
.call-float { position: fixed; bottom: 30px; right: 30px; background-color: var(--secondary); color: white; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; box-shadow: 0 4px 10px rgba(12, 98, 145, 0.4); z-index: 1000; transition: var(--transition); animation: pulse-blue 2s infinite; cursor: pointer; border: none; }
.call-float:hover { transform: scale(1.1); color: white; }

/* Call tooltip on desktop */
.call-tooltip { position: fixed; bottom: 100px; right: 20px; background: var(--text-dark); color: white; padding: 0.6rem 1rem; border-radius: var(--radius-sm); font-family: 'Outfit', sans-serif; font-size: var(--font-base); font-weight: 600; z-index: 1001; opacity: 0; visibility: hidden; transition: var(--transition); white-space: nowrap; box-shadow: var(--shadow-md); }
.call-tooltip.show { opacity: 1; visibility: visible; }
.call-tooltip::after { content: ''; position: absolute; bottom: -8px; right: 25px; width: 0; height: 0; border-left: 8px solid transparent; border-right: 8px solid transparent; border-top: 8px solid var(--text-dark); }
.call-tooltip a { color: white; text-decoration: none; }

.sticky-book-btn { position: fixed; bottom: 0; right: 0; width: 100%; display: none; background: var(--primary); color: white; text-align: center; padding: var(--space-sm); font-weight: bold; font-family: 'Outfit', sans-serif; z-index: 999; box-shadow: 0 -4px 10px rgba(0,0,0,0.1); font-size: var(--font-base); border: none; cursor: pointer; }

/* =========================================
   Animations
   ========================================= */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-10px); } }
@keyframes pulse-green { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); } 70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }
@keyframes pulse-blue { 0% { box-shadow: 0 0 0 0 rgba(12, 98, 145, 0.7); } 70% { box-shadow: 0 0 0 15px rgba(12, 98, 145, 0); } 100% { box-shadow: 0 0 0 0 rgba(12, 98, 145, 0); } }

/* =========================================
   Responsive Design
   ========================================= */
@media (max-width: 992px) {
  .contact-container { flex-direction: column; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .content-block, .content-block.reverse { grid-template-columns: 1fr; }
  .hero-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step:not(:last-child)::after { display: none; }
}

@media (max-width: 768px) {
  .nav-menu { position: fixed; top: 0; right: -100%; width: 85%; max-width: 320px; height: 100vh; background: white; flex-direction: column; padding: 70px 0 20px 0; box-shadow: -10px 0 30px rgba(0,0,0,0.1); transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1); align-items: stretch; z-index: 1000; overflow-y: auto; gap: 0; }
  .nav-menu.active { right: 0; }
  .mobile-menu-btn { display: block; z-index: 1001; }
  .header-actions { display: none; }
  .nav-link { 
    display: block; 
    width: 100%; 
    padding: 1rem 1.5rem; 
    font-size: 1rem; 
    border-bottom: 1px solid rgba(0,0,0,0.05); 
    transition: background 0.2s ease;
  }
  .nav-link::after { display: none; }
  .nav-link:hover { background: var(--bg-offset); }
  
  .nav-dropdown { width: 100%; }
  .nav-dropdown-header { 
    display: flex; 
    width: 100%; 
    align-items: center; 
    justify-content: space-between; 
    padding-right: 0.8rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  .nav-dropdown-header .nav-link { border-bottom: none; width: auto; flex-grow: 1; padding-right: 0; }
  .nav-dropdown-header .nav-link i { display: none; } 
  
  .dropdown-toggle { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    width: 42px; 
    height: 42px; 
    border-radius: 50%; 
    background: var(--bg-offset); 
    color: var(--primary); 
    border: none; 
    cursor: pointer; 
    font-size: 1rem;
    flex-shrink: 0;
  }
  .dropdown-toggle.open { background: var(--primary); color: white; }
  
  .dropdown-menu { 
    position: static; 
    transform: none; 
    box-shadow: none;
    min-width: auto; 
    margin-top: 0; 
    background: #f9fafb;
    opacity: 1; 
    visibility: visible; 
    max-height: 0; 
    overflow: hidden;
    transition: max-height 0.4s ease;
    border-radius: 0;
    padding: 0;
  }
  .nav-dropdown:hover .dropdown-menu { max-height: 0; }
  .dropdown-menu.open { max-height: 2000px; }
  
  .dropdown-menu a { padding: 0.8rem 1.5rem; border-bottom: 1px solid rgba(0,0,0,0.03); }
  .dropdown-menu a:hover { background: rgba(0,0,0,0.02); padding-left: 1.5rem; }

  .hero-title { font-size: var(--font-3xl); }
  .hero-floating-card { display: none; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-content { margin: 0 auto; }
  .footer-top { grid-template-columns: 1fr; gap: 16px; }
  .sticky-book-btn { display: block; }
  body { padding-bottom: 60px; }
  .whatsapp-float { bottom: 80px; }
  .call-float { bottom: 80px; }
  .grid-3 { grid-template-columns: 1fr; }
  .page-header { padding-top: 100px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* Mega Menu Styles */
.dropdown-menu.mega-menu {
  min-width: 600px;
  padding: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  background: white;
  border-top: 3px solid var(--primary);
}
.dropdown-menu.mega-menu a.mega-link {
  display: flex;
  align-items: flex-start;
  padding: 0.8rem;
  border-radius: var(--radius-sm);
  border-bottom: none;
  transition: background 0.3s ease;
}
.dropdown-menu.mega-menu a.mega-link:hover {
  background: var(--bg-offset);
  padding-left: 0.8rem;
}
.mega-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}
.dropdown-menu.mega-menu a.mega-link:hover .mega-icon {
  background: var(--primary);
  color: white;
  transform: scale(1.1);
}
.dropdown-menu.mega-menu a.mega-link:hover .mega-icon i {
  color: white;
}
.mega-text {
  display: flex;
  flex-direction: column;
}
.mega-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
  font-size: 0.95rem;
}
.mega-desc {
  font-size: 0.75rem;
  color: var(--text-body);
  line-height: 1.3;
}

@media (max-width: 992px) {
  .nav-dropdown-header { border-bottom: 1px solid rgba(0,0,0,0.05); }
}

@media (max-width: 768px) {
  /* Mobile Mega Menu Refinement */
  .dropdown-menu.mega-menu {
    display: flex;
    flex-direction: column;
    padding: 0;
    min-width: 100%;
    background: #fdfdfd; 
    border-top: none;
    border-left: 4px solid var(--primary-light);
    margin-left: 0.5rem;
  }
  .dropdown-menu.mega-menu a.mega-link {
    border-bottom: 1px solid rgba(0,0,0,0.03);
    border-radius: 0;
    margin: 0;
    padding: 1rem 1.2rem;
  }
  .dropdown-menu.mega-menu a.mega-link:hover {
    padding-left: 1.2rem;
    background: rgba(0,0,0,0.02);
  }
  .dropdown-menu.mega-menu a.mega-link:last-child {
    border-bottom: none;
  }
  .mega-icon {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
    margin-right: 0.8rem;
  }
  .mega-title {
    font-size: 0.9rem;
  }
  .dropdown-menu.mega-menu.open {
    max-height: 2500px;
    opacity: 1;
    visibility: visible;
  }
}

