/* ============================================================
   KOCOON JUNIOR CHILD DEVELOPMENT CENTER
   Main Stylesheet | Version 2.0
   Designed for: Professional Child Development Services, Ahmedabad
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Nunito:wght@400;500;600;700&display=swap');

/* ── CSS Variables ── */
:root {
  --primary:       #1A2B6B;
  --primary-dark:  #076357;
  --primary-light: #12A88E;
  --secondary:     #F5C518;
  --secondary-dark:#E5501E;
  --accent:        #4ECDC4;
  --yellow:        #FFD166;
  --purple:        #845EC2;
  --white:         #FFFFFF;
  --off-white:     #F7FFFE;
  --light-bg:      #EFF9F7;
  --light-gray:    #F4F6F9;
  --border:        #E0EEE9;
  --text-dark:     #1A2E2A;
  --text-mid:      #3D5A53;
  --text-light:    #6B8F87;
  --shadow-sm:     0 2px 8px rgba(10,125,107,0.10);
  --shadow-md:     0 6px 24px rgba(10,125,107,0.14);
  --shadow-lg:     0 16px 48px rgba(10,125,107,0.18);
  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --radius-xl:     40px;
  --transition:    0.3s cubic-bezier(0.4,0,0.2,1);
  --font-heading:  'Poppins', sans-serif;
  --font-body:     'Nunito', sans-serif;
  --nav-height:    76px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); line-height: 1.3; color: var(--text-dark); }

/* ── Typography ── */
h1 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { font-size: 1rem; color: var(--text-mid); margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* ── Utilities ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.badge { display: inline-block; background: var(--light-bg); color: var(--primary); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 16px; border-radius: 50px; margin-bottom: 14px; }
.badge-orange { background: #FFF0E8; color: var(--secondary); }

/* Section Header */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { font-size: 1.05rem; max-width: 640px; margin: 0 auto; }
.divider { width: 56px; height: 4px; background: var(--secondary); border-radius: 4px; margin: 14px auto 0; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-heading); font-size: 0.95rem; font-weight: 600;
  padding: 14px 28px; border-radius: var(--radius-md);
  border: 2px solid transparent; cursor: pointer;
  transition: all var(--transition); text-align: center;
  white-space: nowrap;
}
.btn-primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-secondary { background: var(--secondary); color: var(--white); border-color: var(--secondary); }
.btn-secondary:hover { background: var(--secondary-dark); border-color: var(--secondary-dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--primary); }
.btn-white:hover { background: var(--light-bg); color: var(--primary); transform: translateY(-2px); }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* ── Preloader ── */
#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-logo { animation: pulse 1.2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.08);opacity:0.8} }

/* ── Header / Navigation ── */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
#header.scrolled { box-shadow: var(--shadow-md); }

.nav-wrapper {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-height); gap: 16px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-logo img {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(26,43,107,0.18));
  transition: filter .3s;
}
.nav-logo:hover img { filter: drop-shadow(0 4px 14px rgba(26,43,107,0.28)); }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-text strong { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 800; color: var(--primary); letter-spacing: -0.02em; }
.nav-logo-text span { font-size: 0.68rem; font-weight: 500; color: var(--text-light); letter-spacing: 0.06em; text-transform: uppercase; }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 12px; border-radius: var(--radius-sm);
  font-size: 0.9rem; font-weight: 600; color: var(--text-dark);
  transition: all var(--transition); white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--primary); background: var(--light-bg); }
.nav-link svg { width:14px; height:14px; transition: transform var(--transition); }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
  min-width: 280px; padding: 8px; opacity: 0; visibility: hidden;
  transform: translateY(-8px); transition: all var(--transition);
  z-index: 100;
}
.dropdown.dropdown-wide { min-width: 560px; display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-link {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: var(--radius-sm);
  font-size: 0.88rem; font-weight: 600; color: var(--text-dark);
  transition: all var(--transition);
}
.dropdown-link:hover { background: var(--light-bg); color: var(--primary); }
.dropdown-icon { width: 32px; height: 32px; background: var(--light-bg); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1rem; }

/* Language switcher */
.lang-switcher { display: flex; align-items: center; gap: 4px; background: var(--light-bg); padding: 4px; border-radius: 50px; }
.lang-btn { padding: 4px 10px; border-radius: 50px; font-size: 0.78rem; font-weight: 700; cursor: pointer; border: none; background: transparent; color: var(--text-light); transition: all var(--transition); }
.lang-btn.active { background: var(--primary); color: var(--white); }

.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-phone { display: flex; align-items: center; gap: 6px; font-family: var(--font-heading); font-size: 0.9rem; font-weight: 700; color: var(--text-dark); }
.nav-phone svg { color: var(--primary); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: all var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero Section ── */
.hero {
  min-height: 100vh; padding-top: var(--nav-height);
  background: linear-gradient(135deg, #1A2B6B 0%, #076357 40%, #05514A 100%);
  position: relative; display: flex; align-items: center;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-blob { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.hero-blob-1 { width: 500px; height: 500px; background: rgba(78,205,196,0.15); top: -100px; right: -100px; }
.hero-blob-2 { width: 300px; height: 300px; background: rgba(255,107,53,0.12); bottom: -50px; left: 20%; }

.hero-content { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; width: 100%; }
.hero-text { color: var(--white); }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.9); padding: 8px 16px; border-radius: 50px; font-size: 0.82rem; font-weight: 600; margin-bottom: 20px; backdrop-filter: blur(8px); }
.hero-badge svg { color: var(--yellow); }
.hero-text h1 { color: var(--white); margin-bottom: 16px; text-shadow: 0 2px 20px rgba(0,0,0,0.1); }
.hero-text h1 span { color: var(--yellow); }
.hero-text p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 28px; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat strong { display: block; font-family: var(--font-heading); font-size: 2rem; font-weight: 800; color: var(--white); line-height: 1; }
.hero-stat span { font-size: 0.82rem; color: rgba(255,255,255,0.7); font-weight: 500; }

/* Hero Image Card */
.hero-image-wrap { position: relative; }
.hero-card {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 32px; box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.hero-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary)); }
.hero-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.hero-card p { font-size: 0.9rem; margin-bottom: 24px; }
.service-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.service-pill { padding: 6px 14px; border-radius: 50px; font-size: 0.78rem; font-weight: 700; }
.pill-teal  { background: #E0F7F5; color: var(--primary); }
.pill-orange{ background: #FFF0E8; color: var(--secondary); }
.pill-purple{ background: #F0EAFF; color: var(--purple); }
.pill-yellow{ background: #FFF8E1; color: #B8860B; }
.floating-badge {
  position: absolute; background: var(--white); border-radius: var(--radius-md);
  padding: 10px 16px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; font-weight: 700;
}
.floating-badge-1 { top: -18px; right: 30px; color: var(--primary); }
.floating-badge-2 { bottom: -18px; left: 30px; color: var(--secondary); }
.floating-badge .dot { width: 8px; height: 8px; border-radius: 50%; }
.dot-green { background: #22C55E; }
.dot-orange { background: var(--secondary); }

/* ── Announcement Bar ── */
.announce-bar {
  background: var(--primary); color: var(--white); text-align: center;
  padding: 10px 24px; font-size: 0.85rem; font-weight: 500;
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.announce-bar a { color: var(--yellow); font-weight: 700; }
.announce-bar-close { cursor: pointer; margin-left: 16px; opacity: 0.7; background: none; border: none; color: white; font-size: 1.1rem; }

/* ── Marquee / Trust Bar ── */
.trust-bar { background: var(--light-bg); padding: 16px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; }
.marquee { display: flex; animation: marquee 24s linear infinite; gap: 0; }
.marquee:hover { animation-play-state: paused; }
.marquee-item { display: flex; align-items: center; gap: 10px; padding: 0 32px; white-space: nowrap; font-size: 0.88rem; font-weight: 600; color: var(--text-mid); }
.marquee-item svg { color: var(--primary); flex-shrink: 0; }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── Stats Section ── */
.stats-section { background: var(--primary); padding: 60px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; text-align: center; }
.stat-card { color: var(--white); }
.stat-number { font-family: var(--font-heading); font-size: 3rem; font-weight: 800; line-height: 1; display: block; color: var(--yellow); }
.stat-label { font-size: 0.9rem; opacity: 0.85; margin-top: 6px; font-weight: 500; }
.stat-divider { width: 1px; background: rgba(255,255,255,0.15); }

/* ── Why Us ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-list { display: flex; flex-direction: column; gap: 20px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-icon { width: 52px; height: 52px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.5rem; }
.why-icon-teal   { background: var(--light-bg); }
.why-icon-orange { background: #FFF0E8; }
.why-icon-purple { background: #F0EAFF; }
.why-icon-yellow { background: #FFF8E1; }
.why-item h4 { margin-bottom: 4px; }
.why-item p  { font-size: 0.92rem; margin: 0; }
.why-image-wrap { position: relative; }
.why-image-card { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.why-image-card img { width: 100%; height: 450px; object-fit: cover; }
.why-cert-badge {
  position: absolute; bottom: 24px; left: -24px;
  background: var(--white); border-radius: var(--radius-md);
  padding: 14px 20px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px;
}
.why-cert-badge .cert-icon { font-size: 2rem; }
.why-cert-badge strong { display: block; font-size: 1.2rem; font-family: var(--font-heading); color: var(--primary); }
.why-cert-badge span { font-size: 0.78rem; color: var(--text-light); }

/* ── Services Grid ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 24px;
  transition: all var(--transition); position: relative; overflow: hidden;
  cursor: pointer;
}
.service-card::before { content:''; position:absolute; bottom:0; left:0; right:0; height:3px; background: linear-gradient(90deg, var(--primary), var(--accent)); transform: scaleX(0); transition: transform var(--transition); transform-origin: left; }
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--primary-light); }
.service-card:hover::before { transform: scaleX(1); }
.service-card-icon { width: 60px; height: 60px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin-bottom: 18px; }
.service-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.service-card p { font-size: 0.88rem; margin-bottom: 16px; }
.service-card-link { color: var(--primary); font-size: 0.88rem; font-weight: 700; display: flex; align-items: center; gap: 6px; }
.service-card-link:hover { gap: 10px; }

/* ── Process / Steps ── */
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; }
.process-steps::before { content:''; position:absolute; top:36px; left:12.5%; right:12.5%; height:2px; background: var(--border); z-index:0; }
.process-step { text-align: center; position: relative; z-index: 1; padding: 0 16px; }
.step-number { width: 72px; height: 72px; border-radius: 50%; background: var(--white); border: 3px solid var(--primary); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; color: var(--primary); position: relative; }
.step-number.active { background: var(--primary); color: var(--white); }
.process-step h4 { margin-bottom: 8px; }
.process-step p { font-size: 0.85rem; }

/* ── Testimonials ── */
.testimonials-section { background: var(--light-bg); }
.testimonials-slider { position: relative; overflow: hidden; }
.testimonials-track { display: flex; gap: 24px; transition: transform 0.5s ease; }
.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px 28px; flex-shrink: 0; width: calc(33.333% - 16px);
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  position: relative;
}
.testimonial-stars { display: flex; gap: 4px; color: var(--yellow); font-size: 1rem; margin-bottom: 14px; }
.testimonial-text { font-size: 0.95rem; margin-bottom: 20px; color: var(--text-mid); font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--light-bg); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--primary); }
.author-info strong { display: block; font-size: 0.92rem; font-family: var(--font-heading); }
.author-info span { font-size: 0.78rem; color: var(--text-light); }
.testimonial-quote { position: absolute; top: 20px; right: 24px; font-size: 3rem; color: var(--light-bg); font-family: Georgia, serif; line-height: 1; }

.slider-controls { display: flex; justify-content: center; gap: 12px; margin-top: 32px; }
.slider-btn { width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--primary); background: transparent; color: var(--primary); cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; transition: all var(--transition); }
.slider-btn:hover { background: var(--primary); color: var(--white); }
.slider-dots { display: flex; gap: 8px; align-items: center; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); cursor: pointer; transition: all var(--transition); }
.slider-dot.active { background: var(--primary); width: 24px; border-radius: 4px; }

/* ── Branches / Locations ── */
.branches-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.branch-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: all var(--transition);
}
.branch-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.branch-card-header { background: var(--primary); padding: 24px 24px 20px; color: var(--white); }
.branch-card-header h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 4px; }
.branch-card-header span { font-size: 0.8rem; opacity: 0.8; }
.branch-card-body { padding: 20px 24px; }
.branch-detail { display: flex; gap: 10px; margin-bottom: 12px; align-items: flex-start; }
.branch-detail svg { color: var(--primary); flex-shrink: 0; margin-top: 3px; }
.branch-detail span { font-size: 0.88rem; color: var(--text-mid); line-height: 1.5; }
.branch-actions { display: flex; flex-direction: column; gap: 8px; padding: 16px 24px; border-top: 1px solid var(--border); }
.branch-actions .btn { justify-content: center; }

/* ── FAQ ── */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 24px; cursor: pointer; background: var(--white);
  font-family: var(--font-heading); font-size: 1rem; font-weight: 600;
  color: var(--text-dark); transition: all var(--transition); gap: 16px;
}
.faq-question:hover { background: var(--light-bg); color: var(--primary); }
.faq-item.open .faq-question { background: var(--light-bg); color: var(--primary); }
.faq-icon { width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1rem; transition: all var(--transition); }
.faq-item.open .faq-icon { background: var(--primary); border-color: var(--primary); color: var(--white); transform: rotate(45deg); }
.faq-answer { padding: 0 24px; max-height: 0; overflow: hidden; transition: all var(--transition); }
.faq-item.open .faq-answer { padding: 0 24px 20px; max-height: 300px; }
.faq-answer p { font-size: 0.92rem; color: var(--text-mid); margin: 0; }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #045249 100%);
  padding: 80px 0; position: relative; overflow: hidden;
}
.cta-banner::before { content:''; position:absolute; right:-100px; top:-100px; width:400px; height:400px; background: rgba(78,205,196,0.1); border-radius:50%; }
.cta-content { position: relative; z-index: 1; text-align: center; }
.cta-content h2 { color: var(--white); font-size: 2.4rem; margin-bottom: 14px; }
.cta-content p { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 600px; margin: 0 auto 32px; }
.cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ── Contact Form ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: start; }
.contact-info-card { background: var(--primary); border-radius: var(--radius-xl); padding: 40px 32px; color: var(--white); }
.contact-info-card h3 { color: var(--white); margin-bottom: 8px; }
.contact-info-card > p { color: rgba(255,255,255,0.8); margin-bottom: 32px; }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 24px; }
.contact-info-icon { width: 44px; height: 44px; background: rgba(255,255,255,0.15); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-item strong { display: block; font-size: 0.9rem; color: var(--yellow); margin-bottom: 2px; }
.contact-info-item span { font-size: 0.85rem; color: rgba(255,255,255,0.85); line-height: 1.6; }

.contact-form-card { background: var(--white); border-radius: var(--radius-xl); padding: 40px; box-shadow: var(--shadow-md); border: 1px solid var(--border); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 0.95rem;
  color: var(--text-dark); background: var(--white); transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--primary); }
.form-group textarea { min-height: 100px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── Footer ── */
footer {
  background: var(--text-dark); color: rgba(255,255,255,0.8); padding: 72px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-about { }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo img { height: 64px; width: auto; filter: drop-shadow(0 2px 12px rgba(0,0,0,0.35)); }
.footer-logo-text strong { font-family: var(--font-heading); font-size: 1.1rem; color: var(--white); }
.footer-logo-text span { font-size: 0.65rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; }
.footer-about > p { font-size: 0.88rem; line-height: 1.8; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.social-btn { width: 36px; height: 36px; border-radius: var(--radius-sm); background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); transition: all var(--transition); font-size: 0.9rem; }
.social-btn:hover { background: var(--primary); color: var(--white); }
.footer-col h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 18px; font-family: var(--font-heading); }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 0.85rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--accent); }
.footer-contact-item { display: flex; gap: 8px; align-items: flex-start; margin-bottom: 12px; }
.footer-contact-item svg { color: var(--accent); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item span { font-size: 0.83rem; color: rgba(255,255,255,0.65); line-height: 1.5; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: gap; gap: 12px; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); margin: 0; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-bottom-links a:hover { color: var(--accent); }
.nap-schema { font-size: 0.8rem; color: rgba(255,255,255,0.35); margin-top: 6px; }

/* ── Floating Buttons ── */
.float-buttons { position: fixed; bottom: 24px; right: 24px; z-index: 500; display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.float-btn { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md); cursor: pointer; transition: all var(--transition); border: none; font-size: 1.5rem; }
.float-btn:hover { transform: scale(1.1); box-shadow: var(--shadow-lg); }
.float-wa  { background: #25D366; color: white; }
.float-phone { background: var(--secondary); color: white; }
.float-chat  { background: var(--primary); color: white; }
.float-label { background: var(--text-dark); color: white; padding: 6px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 600; opacity: 0; transform: translateX(8px); transition: all var(--transition); pointer-events: none; white-space: nowrap; }
.float-btn-wrap:hover .float-label { opacity: 1; transform: translateX(0); }
.float-btn-wrap { display: flex; align-items: center; gap: 10px; }

/* ── Chatbot ── */
#chatbot {
  position: fixed; bottom: 100px; right: 24px; z-index: 600;
  width: 360px; max-height: 500px; background: var(--white);
  border-radius: var(--radius-xl); box-shadow: var(--shadow-lg);
  border: 1px solid var(--border); display: flex; flex-direction: column;
  transform: scale(0.9) translateY(20px); opacity: 0;
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
  pointer-events: none;
}
#chatbot.open { transform: scale(1) translateY(0); opacity: 1; pointer-events: all; }
.chatbot-header {
  background: var(--primary); border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  padding: 16px 20px; display: flex; align-items: center; gap: 12px;
}
.chatbot-avatar { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.chatbot-header-info strong { display: block; color: var(--white); font-size: 0.9rem; }
.chatbot-header-info span { font-size: 0.75rem; color: rgba(255,255,255,0.75); }
.chatbot-status { width: 8px; height: 8px; background: #22C55E; border-radius: 50%; display: inline-block; margin-right: 4px; animation: blink 1.5s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.4} }
.chatbot-close { margin-left: auto; background: rgba(255,255,255,0.15); border: none; color: white; width: 28px; height: 28px; border-radius: 50%; cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center; transition: background var(--transition); }
.chatbot-close:hover { background: rgba(255,255,255,0.3); }
.chatbot-body { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.chat-msg { max-width: 85%; }
.chat-msg-bot { align-self: flex-start; }
.chat-msg-user { align-self: flex-end; }
.chat-bubble { padding: 10px 14px; border-radius: 16px; font-size: 0.85rem; line-height: 1.5; }
.chat-msg-bot .chat-bubble { background: var(--light-bg); color: var(--text-dark); border-bottom-left-radius: 4px; }
.chat-msg-user .chat-bubble { background: var(--primary); color: var(--white); border-bottom-right-radius: 4px; }
.chat-quick-btns { display: flex; flex-wrap: wrap; gap: 6px; padding: 0 16px 16px; }
.chat-quick-btn { padding: 6px 12px; border-radius: 50px; border: 1.5px solid var(--primary); background: transparent; color: var(--primary); font-size: 0.78rem; font-weight: 600; cursor: pointer; transition: all var(--transition); }
.chat-quick-btn:hover { background: var(--primary); color: var(--white); }
.chatbot-footer { padding: 12px 16px; border-top: 1px solid var(--border); display: flex; gap: 8px; }
.chatbot-input { flex: 1; padding: 10px 14px; border: 1.5px solid var(--border); border-radius: 50px; font-size: 0.85rem; outline: none; font-family: var(--font-body); transition: border-color var(--transition); }
.chatbot-input:focus { border-color: var(--primary); }
.chatbot-send { width: 38px; height: 38px; border-radius: 50%; background: var(--primary); color: var(--white); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background var(--transition); }
.chatbot-send:hover { background: var(--primary-dark); }

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: calc(var(--nav-height) + 48px) 0 48px;
  color: var(--white); position: relative; overflow: hidden;
}
.page-hero::before { content:''; position:absolute; inset:0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.page-hero-content { position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; font-size: 0.82rem; }
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb span { color: rgba(255,255,255,0.4); }
.breadcrumb strong { color: rgba(255,255,255,0.9); }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.85); font-size: 1.05rem; max-width: 640px; }

/* ── Scroll To Top ── */
#scrollTop { position: fixed; bottom: 24px; left: 24px; z-index: 500; width: 44px; height: 44px; border-radius: 50%; background: var(--primary); color: var(--white); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md); transition: all var(--transition); opacity: 0; transform: translateY(20px); }
#scrollTop.visible { opacity: 1; transform: translateY(0); }
#scrollTop:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* ── Animations ── */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.in-view { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ── Map embed ── */
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.map-embed iframe { width: 100%; height: 300px; border: none; display: block; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  :root { --nav-height: 66px; }
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed; top: var(--nav-height); left: 0; right: 0;
    background: var(--white); flex-direction: column; align-items: stretch;
    padding: 16px; gap: 2px; border-bottom: 1px solid var(--border);
    max-height: 0; overflow: hidden; overflow-y: auto;
    transition: max-height 0.4s ease; display: flex;
  }
  .nav-menu.open { max-height: calc(100vh - var(--nav-height)); }
  .nav-link { justify-content: space-between; }
  .dropdown { position: static; box-shadow: none; border: none; border-radius: 0; opacity: 1; visibility: visible; transform: none; padding: 4px 0 4px 16px; display: none; }
  .dropdown.dropdown-wide { grid-template-columns: 1fr; min-width: unset; }
  .nav-item.open .dropdown { display: block; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-image-wrap { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .why-image-wrap { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .branches-grid { grid-template-columns: 1fr; }
  .testimonial-card { width: calc(100% - 0px); }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-steps::before { display: none; }
  .lang-switcher { display: none; }
  .nav-phone span { display: none; }
}
@media (max-width: 600px) {
  .section { padding: 56px 0; }
  .hero { min-height: auto; padding: calc(var(--nav-height) + 32px) 0 48px; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-content h2 { font-size: 1.6rem; }
  #chatbot { width: calc(100vw - 24px); right: 12px; }
  .float-buttons { bottom: 16px; right: 16px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ── Service Page ── */
.service-detail-section { padding: 80px 0; }
.service-detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; align-items: start; }
.service-content h2 { margin-bottom: 16px; }
.service-content h3 { margin: 32px 0 12px; font-size: 1.25rem; }
.benefit-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.benefit-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.95rem; color: var(--text-mid); }
.benefit-list li::before { content: '✓'; color: var(--primary); font-weight: 800; flex-shrink: 0; }
.service-sidebar { position: sticky; top: calc(var(--nav-height) + 20px); }
.sidebar-cta-card { background: var(--primary); border-radius: var(--radius-xl); padding: 32px 24px; color: var(--white); margin-bottom: 20px; }
.sidebar-cta-card h4 { color: var(--white); margin-bottom: 10px; }
.sidebar-cta-card p { color: rgba(255,255,255,0.8); font-size: 0.88rem; margin-bottom: 20px; }
.sidebar-cta-card .btn { width: 100%; justify-content: center; }
.sidebar-services-card { background: var(--light-bg); border-radius: var(--radius-xl); padding: 24px; }
.sidebar-services-card h4 { margin-bottom: 14px; }
.sidebar-service-link { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: var(--radius-sm); font-size: 0.88rem; font-weight: 600; color: var(--text-mid); transition: all var(--transition); }
.sidebar-service-link:hover, .sidebar-service-link.active { background: var(--white); color: var(--primary); }
@media (max-width: 900px) { .service-detail-grid { grid-template-columns: 1fr; } .service-sidebar { position: static; } }

/* ── About Page ── */
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.team-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 24px; text-align: center; transition: all var(--transition); }
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; background: var(--light-bg); margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; font-size: 2rem; border: 3px solid var(--primary); }
.team-card h4 { margin-bottom: 4px; }
.team-card .role { color: var(--primary); font-size: 0.85rem; font-weight: 600; margin-bottom: 8px; }
.team-card p { font-size: 0.85rem; }
@media (max-width: 900px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .team-grid { grid-template-columns: 1fr; } }

/* Cookie / GDPR bar */
#cookie-bar { position: fixed; bottom: 0; left: 0; right: 0; background: rgba(26,46,42,0.97); color: rgba(255,255,255,0.85); padding: 16px 24px; z-index: 800; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: 0.83rem; backdrop-filter: blur(8px); transform: translateY(100%); transition: transform var(--transition); }
#cookie-bar.show { transform: translateY(0); }
#cookie-bar a { color: var(--accent); }
.cookie-accept { padding: 8px 20px; background: var(--primary); color: var(--white); border: none; border-radius: 50px; font-weight: 600; font-size: 0.82rem; cursor: pointer; transition: background var(--transition); }
.cookie-accept:hover { background: var(--primary-dark); }

/* Print friendly */
@media print { #header,footer,.float-buttons,#chatbot,#scrollTop,.cta-banner { display: none !important; } }
