/* =============================================
   KOKUSUZ İLAÇLAMA PREMİUM TEMA - MAIN CSS
   ============================================= */

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

/* --- CSS Variables --- */
:root {
  --primary: #0c2340;
  --primary-light: #163860;
  --green: #1a7a45;
  --green-light: #22a85d;
  --green-bright: #2ecc71;
  --orange: #e67e22;
  --orange-dark: #c96d10;
  --white: #ffffff;
  --off-white: #f8fafc;
  --light-bg: #f0f5f1;
  --text: #1a202c;
  --text-muted: #4a5568;
  --text-light: #718096;
  --border: #e2e8f0;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.18);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.22);
  --radius: 10px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --container: 1200px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Container --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(230,126,34,0.4);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(230,126,34,0.5);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
  backdrop-filter: blur(4px);
}
.btn-secondary:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-green {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(26,122,69,0.3);
}
.btn-green:hover {
  background: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(26,122,69,0.4);
}
.btn-outline-primary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-primary:hover {
  background: var(--primary);
  color: var(--white);
}

/* --- Section Titles --- */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(26,122,69,0.1);
  color: var(--green);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title span { color: var(--green); }
.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-header.left { text-align: left; }
.section-header.left .section-subtitle { margin: 0; }

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
}

/* Top Bar */
.header-topbar {
  background: var(--primary);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  padding: 8px 0;
  transition: var(--transition);
}
.header-topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.85);
}
.topbar-item svg { width: 14px; height: 14px; flex-shrink: 0; }
.topbar-item a:hover { color: var(--green-bright); }
.topbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.social-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  font-size: 12px;
  transition: var(--transition);
}
.social-icon:hover { background: var(--green); color: var(--white); }
.social-icon svg { width: 13px; height: 13px; }

/* Main Navigation */
.header-main {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.header-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg { width: 26px; height: 26px; fill: white; }
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
}
.logo-name span { color: var(--green); }
.logo-tagline {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Navigation Menu */
.main-nav { display: flex; align-items: center; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  border-radius: 8px;
  transition: var(--transition);
  letter-spacing: 0.3px;
}
.nav-link:hover, .nav-link.active {
  color: var(--green);
  background: rgba(26,122,69,0.08);
}
.nav-link svg { width: 12px; height: 12px; transition: var(--transition); }
.nav-item:hover > .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  border: 1px solid var(--border);
  z-index: 100;
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  font-size: 13.5px;
  color: var(--text-muted);
  border-radius: 6px;
  transition: var(--transition);
}
.nav-dropdown a:hover { color: var(--green); background: var(--off-white); }
.nav-dropdown a svg { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; }

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--green);
  color: var(--white);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(26,122,69,0.3);
}
.header-phone:hover {
  background: var(--green-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(26,122,69,0.4);
}
.header-phone svg { width: 16px; height: 16px; }

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  border-radius: 8px;
  transition: var(--transition);
}
.menu-toggle:hover { background: var(--off-white); }
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* Scrolled header */
.site-header.scrolled .header-topbar {
  padding: 0;
  max-height: 0;
  overflow: hidden;
}
.site-header.scrolled .header-main {
  box-shadow: var(--shadow);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #071828 0%, #0c2340 40%, #0a3a20 100%);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 130px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1588776814546-1ffedee0c63a?w=1920&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(26,122,69,0.25) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(12,35,64,0.8) 0%, transparent 50%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 0 40px;
}
.hero-content .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-left {}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(46,204,113,0.15);
  border: 1px solid rgba(46,204,113,0.3);
  color: var(--green-bright);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}
.hero-badge svg { width: 14px; height: 14px; }
.hero-title {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-title .highlight { color: var(--green-bright); }
.hero-title .line2 { color: rgba(255,255,255,0.9); }
.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}
.hero-feature {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.85);
  font-size: 13.5px;
  font-weight: 500;
}
.hero-feature svg { width: 16px; height: 16px; color: var(--green-bright); flex-shrink: 0; }
.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 36px;
  width: 100%;
  max-width: 380px;
}
.hero-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.hero-card-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}
.quick-contact-form .form-group {
  margin-bottom: 14px;
}
.quick-contact-form input,
.quick-contact-form select,
.quick-contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  transition: var(--transition);
  outline: none;
}
.quick-contact-form input::placeholder,
.quick-contact-form textarea::placeholder { color: rgba(255,255,255,0.4); }
.quick-contact-form input:focus,
.quick-contact-form select:focus,
.quick-contact-form textarea:focus {
  border-color: var(--green-bright);
  background: rgba(255,255,255,0.12);
}
.quick-contact-form select option { color: var(--text); background: white; }
.quick-contact-form .btn { width: 100%; justify-content: center; }

/* Hero Stats */
.hero-stats {
  position: relative;
  z-index: 2;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 24px 0;
}
.stat-item {
  text-align: center;
  padding: 16px 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: 36px;
  font-weight: 800;
  color: var(--green-bright);
  display: block;
  line-height: 1;
}
.stat-suffix { font-size: 24px; font-weight: 800; color: var(--green-bright); }
.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
  display: block;
  letter-spacing: 0.5px;
}

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
  background: var(--primary);
  padding: 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 28px;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: rgba(255,255,255,0.05); }
.trust-icon {
  width: 44px;
  height: 44px;
  background: rgba(46,204,113,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg { width: 22px; height: 22px; color: var(--green-bright); }
.trust-text {}
.trust-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  display: block;
}
.trust-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  display: block;
}

/* =============================================
   SERVICES SECTION
   ============================================= */
.services-section {
  padding: 100px 0;
  background: var(--off-white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(26,122,69,0.1), rgba(26,122,69,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--green);
}
.service-icon svg {
  width: 36px;
  height: 36px;
  color: var(--green);
  transition: var(--transition);
}
.service-card:hover .service-icon svg { color: var(--white); }
.service-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}
.service-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
}
.service-link svg { width: 14px; height: 14px; transition: var(--transition); }
.service-card:hover .service-link svg { transform: translateX(4px); }

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-section {
  padding: 100px 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.about-image-main img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.about-badge-float {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 18px 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
}
.about-badge-icon {
  width: 48px;
  height: 48px;
  background: var(--green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-badge-icon svg { width: 26px; height: 26px; color: var(--white); }
.about-badge-text {}
.about-badge-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  display: block;
  line-height: 1;
}
.about-badge-label {
  font-size: 12px;
  color: var(--text-muted);
}
.about-content {}
.about-features { margin: 32px 0; display: grid; gap: 16px; }
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: var(--off-white);
  border-radius: var(--radius);
  border-left: 3px solid var(--green);
  transition: var(--transition);
}
.about-feature:hover {
  background: rgba(26,122,69,0.06);
  transform: translateX(4px);
}
.about-feat-icon {
  width: 40px;
  height: 40px;
  background: rgba(26,122,69,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-feat-icon svg { width: 20px; height: 20px; color: var(--green); }
.about-feat-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  display: block;
  margin-bottom: 3px;
}
.about-feat-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* =============================================
   PROCESS SECTION
   ============================================= */
.process-section {
  padding: 100px 0;
  background: var(--light-bg);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 20px;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(to right, var(--green), var(--green-bright));
  z-index: 0;
}
.process-item {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.process-num {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: var(--white);
  border: 3px solid var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  color: var(--green);
  box-shadow: 0 4px 20px rgba(26,122,69,0.2);
  transition: var(--transition);
}
.process-item:hover .process-num {
  background: var(--green);
  color: var(--white);
  transform: scale(1.1);
}
.process-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 16px;
  color: var(--green);
}
.process-icon svg { width: 40px; height: 40px; }
.process-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.process-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =============================================
   WHY US SECTION
   ============================================= */
.why-section {
  padding: 100px 0;
  background: var(--white);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.why-card {
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  background: var(--off-white);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.why-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--green);
}
.why-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.why-icon svg { width: 30px; height: 30px; color: var(--white); }
.why-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}
.why-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =============================================
   DISTRICTS SECTION
   ============================================= */
.districts-section {
  padding: 100px 0;
  background: var(--primary);
}
.districts-section .section-title { color: var(--white); }
.districts-section .section-subtitle { color: rgba(255,255,255,0.6); }
.districts-section .section-badge {
  background: rgba(46,204,113,0.15);
  color: var(--green-bright);
  border: 1px solid rgba(46,204,113,0.25);
}
.districts-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 40px;
}
.district-link {
  display: block;
  padding: 12px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  transition: var(--transition);
}
.district-link:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

/* =============================================
   FAQ SECTION
   ============================================= */
.faq-section {
  padding: 100px 0;
  background: var(--off-white);
}
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.active {
  border-color: var(--green);
  box-shadow: 0 4px 20px rgba(26,122,69,0.1);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
}
.faq-q-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
}
.faq-item.active .faq-q-text { color: var(--green); }
.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.active .faq-icon {
  background: var(--green);
  transform: rotate(45deg);
}
.faq-icon svg { width: 16px; height: 16px; color: var(--text-muted); }
.faq-item.active .faq-icon svg { color: var(--white); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.active .faq-answer { max-height: 500px; }
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--green) 0%, #0a5c2e 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}
.cta-phone {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  letter-spacing: -0.5px;
}
.cta-phone svg { width: 40px; height: 40px; }
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-white {
  background: var(--white);
  color: var(--green);
  border-color: var(--white);
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: #061420;
  color: rgba(255,255,255,0.7);
}
.footer-main {
  padding: 70px 0 50px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
}
.footer-col {}
.footer-logo { margin-bottom: 20px; }
.footer-logo .logo-name { color: var(--white); }
.footer-about {
  font-size: 13.5px;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-social a:hover { background: var(--green); color: var(--white); }
.footer-social a svg { width: 16px; height: 16px; }
.footer-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(255,255,255,0.08);
}
.footer-links { display: grid; gap: 10px; }
.footer-links a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--green-bright); padding-left: 4px; }
.footer-links a svg { width: 14px; height: 14px; flex-shrink: 0; }
.footer-contact-items { display: grid; gap: 14px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.footer-contact-icon {
  width: 34px;
  height: 34px;
  background: rgba(26,122,69,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.footer-contact-icon svg { width: 16px; height: 16px; color: var(--green-bright); }
.footer-contact-text {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}
.footer-contact-text a:hover { color: var(--green-bright); }
.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--green-bright); }

/* =============================================
   PAGE TEMPLATES
   ============================================= */

/* --- Service Page --- */
.page-hero {
  padding: 140px 0 70px;
  background: linear-gradient(135deg, var(--primary) 0%, #163860 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero-title {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}
.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.page-hero-breadcrumb a:hover { color: var(--green-bright); }
.page-hero-breadcrumb span { color: rgba(255,255,255,0.35); }

.service-detail-section {
  padding: 70px 0 100px;
}
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 50px;
}
.service-detail-content {}
.service-detail-content h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--primary);
  margin: 32px 0 16px;
}
.service-detail-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.service-detail-content ul {
  list-style: none;
  margin-bottom: 24px;
}
.service-detail-content ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.service-detail-content ul li::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z'/%3E%3C/svg%3E");
  background-size: cover;
  margin-top: 2px;
}

.sidebar-sticky {
  position: sticky;
  top: 100px;
}
.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  margin-bottom: 20px;
}
.sidebar-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}
.sidebar-phone-big {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: var(--white);
  padding: 16px;
  border-radius: var(--radius);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  transition: var(--transition);
}
.sidebar-phone-big:hover { background: var(--green-light); transform: translateY(-1px); }
.sidebar-phone-big svg { width: 22px; height: 22px; }
.sidebar-service-links { display: grid; gap: 8px; }
.sidebar-service-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--off-white);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
}
.sidebar-service-link:hover {
  background: rgba(26,122,69,0.08);
  color: var(--green);
  padding-left: 18px;
}
.sidebar-service-link svg { width: 14px; height: 14px; color: var(--green); flex-shrink: 0; }

/* --- District Page --- */
.district-intro {
  padding: 60px 0 80px;
}
.district-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 50px;
}
.district-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 32px 0;
}
.district-service-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  transition: var(--transition);
}
.district-service-card:hover {
  background: rgba(26,122,69,0.06);
  border-color: var(--green);
  color: var(--green);
}
.district-service-card svg { width: 20px; height: 20px; color: var(--green); }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-section {
  padding: 80px 0 100px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info {}
.contact-info-items { display: grid; gap: 20px; margin: 30px 0; }
.contact-info-item {
  display: flex;
  gap: 16px;
}
.contact-info-icon {
  width: 50px;
  height: 50px;
  background: rgba(26,122,69,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 24px; height: 24px; color: var(--green); }
.contact-info-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 4px;
}
.contact-info-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
}
.contact-info-value a { color: inherit; }
.contact-info-value a:hover { color: var(--green); }
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.contact-form-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(26,122,69,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 300px;
  margin-top: 30px;
  border: 1px solid var(--border);
}
.contact-map iframe { width: 100%; height: 100%; border: 0; }

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =============================================
   MOBILE MENU
   ============================================= */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 100px 30px 40px;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu .nav-link {
  color: rgba(255,255,255,0.85);
  padding: 16px 0;
  font-size: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  border-radius: 0;
}
.mobile-menu .nav-link:hover { color: var(--green-bright); background: none; }
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
}
.mobile-menu-close:hover { background: var(--green); }
.mobile-menu-close svg { width: 20px; height: 20px; }
.mobile-phone {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius);
  font-size: 18px;
  font-weight: 700;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .districts-grid { grid-template-columns: repeat(4, 1fr); }
  .hero-content .container { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { text-align: center; }
  .hero-features { justify-content: center; }
  .hero-buttons { justify-content: center; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .district-grid { grid-template-columns: 1fr; }
  .sidebar-sticky { position: static; }
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .header-cta { display: none; }
  .menu-toggle { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image-wrap { display: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero-section { padding-top: 80px; }
  .topbar-left .topbar-item:not(:first-child) { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .districts-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .district-services-grid { grid-template-columns: 1fr; }
}

/* =============================================
   WHATSAPP FLOAT BUTTON
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--transition);
  animation: pulse-wa 2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.6);
}
.whatsapp-float svg { width: 30px; height: 30px; fill: white; }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.3); }
  50% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 12px rgba(37,211,102,0); }
}

/* Phone float button */
.phone-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: var(--white);
  padding: 14px 20px;
  border-radius: 50px;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  font-size: 14px;
  font-weight: 700;
  transition: var(--transition);
}
.phone-float:hover { background: var(--green); transform: translateY(-2px); }
.phone-float svg { width: 18px; height: 18px; }
@media (max-width: 600px) {
  .phone-float { display: none; }
  .whatsapp-float { bottom: 20px; right: 20px; }
}
