/* ============================================
   Greenvolts Renewable Energy — Premium Design System
   ============================================ */

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

/* ---- CSS Variables ---- */
:root {
  /* Primary Green Palette */
  --green-50: #f0fdf4;
  --green-100: #dcfce7;
  --green-200: #bbf7d0;
  --green-300: #86efac;
  --green-400: #4ade80;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-700: #15803d;
  --green-800: #166534;
  --green-900: #14532d;

  /* Gold / Solar Accent */
  --gold-300: #fde047;
  --gold-400: #facc15;
  --gold-500: #eab308;
  --gold-600: #ca8a04;
  --orange-500: #f97316;

  /* Dark Background */
  --dark-900: #0a0f1a;
  --dark-800: #111827;
  --dark-700: #1e293b;
  --dark-600: #334155;

  /* Neutral */
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;

  /* Brand Gradients */
  --gradient-primary: linear-gradient(135deg, #16a34a 0%, #22c55e 50%, #4ade80 100%);
  --gradient-solar: linear-gradient(135deg, #f97316 0%, #facc15 100%);
  --gradient-dark: linear-gradient(135deg, #0a0f1a 0%, #1e293b 100%);
  --gradient-hero-overlay: linear-gradient(135deg, rgba(10, 15, 26, 0.72) 0%, rgba(22, 101, 52, 0.55) 50%, rgba(10, 80, 40, 0.45) 100%);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px -3px rgba(0, 0, 0, 0.15), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 40px -5px rgba(0, 0, 0, 0.2);
  --shadow-glow-green: 0 0 30px rgba(34, 197, 94, 0.3);
  --shadow-glow-gold: 0 0 30px rgba(234, 179, 8, 0.3);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--gray-800);
  background-color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
}

/* ---- Lucide Icon Utilities ---- */
.btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.check-icon {
  width: 18px;
  height: 18px;
  color: var(--green-500);
  flex-shrink: 0;
}

.star-icon {
  width: 18px;
  height: 18px;
  color: var(--gray-300);
}

.star-icon.filled {
  color: var(--gold-400);
  fill: var(--gold-400);
}

.footer-link-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
  color: var(--green-400);
  flex-shrink: 0;
}

.trust-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.subsidy-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.pricing-item-icon {
  width: 16px;
  height: 16px;
  color: var(--green-400);
  flex-shrink: 0;
}

.nav-logo-icon svg,
.footer-logo-icon svg {
  width: 22px;
  height: 22px;
  color: #ffffff;
}

.benefit-icon svg {
  width: 28px;
  height: 28px;
  color: var(--green-600);
}

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

.service-icon svg {
  width: 26px;
  height: 26px;
  color: var(--green-400);
}

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

.feature-icon svg {
  width: 22px;
  height: 22px;
  color: var(--green-600);
}

.feature-item:hover .feature-icon svg {
  color: #ffffff;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  color: var(--green-600);
}

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

.footer-social a svg {
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-social a:hover svg {
  color: #ffffff;
}

/* ---- Utility Classes ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-light {
  background: var(--gray-50);
}

.section-dark {
  background: var(--gradient-dark);
  color: #ffffff;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(34, 197, 94, 0.1);
  color: var(--green-600);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-dark .section-badge {
  background: rgba(34, 197, 94, 0.2);
  color: var(--green-300);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dark-800);
  margin-bottom: 16px;
}

.section-dark .section-title {
  color: #ffffff;
}

.section-title span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
}

.section-dark .section-subtitle {
  color: var(--gray-400);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.08rem;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(22, 163, 74, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(22, 163, 74, 0.5);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gradient-solar);
  color: var(--dark-900);
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--green-600);
  border: 2px solid var(--green-600);
}

.btn-outline:hover {
  background: var(--green-600);
  color: #ffffff;
  transform: translateY(-2px);
}

/* ---- Navigation ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 15, 26, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-medium);
}

.navbar.scrolled {
  background: rgba(10, 15, 26, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}

.nav-logo-icon {
  width: auto;
  height: auto;
  background: transparent;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  font-family: 'Outfit', sans-serif;
  text-align: left;
}

.nav-logo-text .brand-name {
  color: #458ce2;
  /* Bright blue for visibility on dark bg */
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.8rem;
  border-bottom: 2px solid #60a5fa;
  line-height: 1;
  padding-bottom: 4px;
  margin-bottom: 4px;
}

.nav-logo-text .brand-sub {
  color: #ffffff;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links .nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links .menu-item {
  display: flex;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active,
.nav-links .current-menu-item>a,
.nav-links .current_page_item>a,
.nav-links .current-menu-ancestor>a {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.nav-cta {
  margin-left: 16px;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 8px;
}

.nav-toggle span {
  width: 26px;
  height: 2.5px;
  background: #ffffff;
  border-radius: 2px;
  transition: all var(--transition-medium);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ---- Hero Section ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg picture {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
  animation: slowZoom 25s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
      rgba(5, 10, 20, 0.88) 0%,
      rgba(10, 60, 35, 0.72) 40%,
      rgba(5, 40, 25, 0.65) 70%,
      rgba(10, 15, 26, 0.82) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 130px 24px 90px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* ---- Hero Trust Badges ---- */
.hero-trust-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  animation: fadeInDown 0.6s ease forwards;
}

.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: var(--radius-full);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.hero-trust-badge:hover {
  border-color: var(--green-400);
  background: rgba(34, 197, 94, 0.12);
}

.hero-trust-badge .trust-icon {
  color: var(--green-400);
}

/* ---- Hero Title ---- */
.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  color: #ffffff;
  margin-bottom: 24px;
  animation: fadeInUp 0.7s ease 0.15s forwards;
  opacity: 0;
  line-height: 1.15;
}

.hero-title .highlight {
  background: linear-gradient(135deg, #f97316, #facc15);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 36px;
  max-width: 540px;
  line-height: 1.8;
  animation: fadeInUp 0.7s ease 0.3s forwards;
  opacity: 0;
}

/* ---- Hero CTA Buttons ---- */
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s ease 0.45s forwards;
  opacity: 0;
}

.btn-hero-primary {
  background: var(--gradient-primary);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(22, 163, 74, 0.4);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(22, 163, 74, 0.55);
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--green-400);
  color: var(--green-300);
  transform: translateY(-3px);
}

/* ---- Hero Stats ---- */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
  animation: fadeInUp 0.7s ease 0.6s forwards;
  opacity: 0;
}

.hero-stat {
  text-align: center;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
}

.hero-stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--green-400);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

/* ---- Hero Features Card ---- */
.hero-visual {
  animation: fadeInUp 0.8s ease 0.4s forwards;
  opacity: 0;
}

.hero-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 36px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.hero-features-title {
  font-size: 1.1rem;
  color: var(--gold-400);
  font-weight: 700;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
}

.hero-feature-item:hover {
  background: rgba(34, 197, 94, 0.08);
  border-color: rgba(34, 197, 94, 0.25);
}

.hero-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(74, 222, 128, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green-400);
}

.hero-feature-icon i,
.hero-feature-icon svg {
  width: 22px;
  height: 22px;
}

.hero-feature-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
}

.hero-feature-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

.hero-card-cta {
  width: 100%;
  justify-content: center;
  margin-top: 20px;
}

/* ---- Why Solar Section ---- */
.why-solar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.benefit-card {
  background: #ffffff;
  padding: 40px 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform var(--transition-medium);
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--green-200);
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-icon {
  width: 72px;
  height: 72px;
  background: var(--green-50);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  transition: all var(--transition-medium);
}

.benefit-card:hover .benefit-icon {
  background: var(--gradient-primary);
  transform: scale(1.1) rotate(5deg);
}

.benefit-card:hover .benefit-icon span {
  filter: brightness(10);
}

.benefit-title {
  font-size: 1.15rem;
  color: var(--dark-800);
  margin-bottom: 10px;
}

.benefit-text {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ---- Services Section ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.service-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 0;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #0a1628;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
  display: block;
}

.service-card:hover .service-card-img img {
  transform: scale(1.05);
}

.service-card-content {
  padding: 28px 24px 32px;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform var(--transition-medium);
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(34, 197, 94, 0.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow-green);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(34, 197, 94, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  transition: all var(--transition-medium);
}

.service-card:hover .service-icon {
  background: var(--gradient-primary);
  transform: scale(1.1);
}

.service-title {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 10px;
}

.service-text {
  font-size: 0.92rem;
  color: var(--gray-400);
  line-height: 1.7;
}

/* ---- Why Choose Us ---- */
.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-choose-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.why-choose-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.why-choose-image:hover img {
  transform: scale(1.05);
}

.why-choose-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-medium);
}

.feature-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-200);
}

.feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--green-50);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.feature-item:hover .feature-icon {
  background: var(--gradient-primary);
}

.feature-title {
  font-size: 1.05rem;
  color: var(--dark-800);
  margin-bottom: 4px;
}

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

/* ---- Pricing Section ---- */
.pricing-section-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.price-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 44px 28px;
  text-align: center;
  border: 2px solid var(--gray-200);
  transition: all var(--transition-medium);
  position: relative;
}

.price-card.featured {
  border-color: var(--green-500);
  box-shadow: var(--shadow-glow-green);
  transform: scale(1.05);
}

.price-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 24px;
  background: var(--gradient-primary);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.price-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.price-kw-label {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark-800);
  margin-bottom: 8px;
}

.price-amount {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--green-600);
  margin-bottom: 12px;
}

.price-amount .currency {
  font-size: 1.5rem;
  vertical-align: super;
}

.price-conditions {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-bottom: 24px;
}

.price-features {
  text-align: left;
  margin-bottom: 20px;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  color: var(--gray-600);
  font-size: 0.92rem;
  border-bottom: 1px solid var(--gray-100);
}

.price-features li:last-child {
  border-bottom: none;
}

.price-features .check {
  color: var(--green-500);
  font-weight: bold;
}

.price-features .check-icon {
  flex-shrink: 0;
}

.subsidy-info {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(74, 222, 128, 0.1));
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: var(--radius-md);
  padding: 8px 16px;
  margin-bottom: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-600);
}

.subsidy-green {
  color: var(--green-600);
  font-weight: 700;
}

/* ---- Society Subsidy Section ---- */
.society-subsidy-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}

.society-subsidy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.society-subsidy-detail {
  text-align: center;
}

.society-subsidy-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(74, 222, 128, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--green-600);
}

.society-subsidy-detail h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-500);
  margin-bottom: 8px;
}

.society-subsidy-highlight {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--green-600);
}

.society-subsidy-list {
  list-style: none;
  text-align: left;
  display: inline-block;
}

.society-subsidy-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  color: var(--dark-800);
  font-size: 0.95rem;
  font-weight: 500;
}

.society-subsidy-list .check-icon {
  color: var(--green-500);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.society-subsidy-cta {
  text-align: center;
  margin-top: 32px;
}

@media (max-width: 768px) {
  .society-subsidy-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .society-subsidy-card {
    padding: 32px 24px;
  }
}

/* ---- CTA Section ---- */
.cta-section {
  position: relative;
  padding: 100px 0;
  background: var(--gradient-primary);
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}

.cta-text {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-phone {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}

.cta-phone a {
  color: #ffffff;
  transition: all var(--transition-fast);
}

.cta-phone a:hover {
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

/* ---- Testimonials ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-200);
  transition: all var(--transition-medium);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial-name {
  font-weight: 600;
  color: var(--dark-800);
  font-size: 0.95rem;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--gray-400);
}

/* ---- Contact Page ---- */
.contact-hero {
  padding: 140px 0 60px;
  background: var(--gradient-dark);
  text-align: center;
}

.contact-hero .section-title {
  color: #ffffff;
}

.contact-hero .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.contact-hero .section-badge {
  background: rgba(34, 197, 94, 0.2);
  color: var(--green-300);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-medium);
}

.contact-info-card:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-200);
}

.contact-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: var(--green-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.contact-info-card:hover .contact-icon {
  background: var(--gradient-primary);
}

.contact-label {
  font-size: 0.8rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.contact-value {
  font-weight: 600;
  color: var(--dark-800);
  font-size: 1.05rem;
}

.contact-value a {
  color: var(--green-600);
}

.contact-value a:hover {
  color: var(--green-700);
}

/* Contact Pricing Box */
.contact-pricing-box {
  background: linear-gradient(135deg, var(--green-50), var(--green-100));
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--green-200);
  margin-top: 8px;
}

.contact-pricing-title {
  color: var(--green-800);
  font-size: 1.05rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-pricing-title span {
  color: var(--green-600);
  font-weight: 700;
}

.contact-pricing-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--green-700);
}

.contact-pricing-row {
  display: flex;
  justify-content: space-between;
}

/* Contact Form */
.contact-form-wrapper {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

.form-title {
  font-size: 1.5rem;
  color: var(--dark-800);
  margin-bottom: 8px;
}

.form-subtitle {
  color: var(--gray-500);
  font-size: 0.92rem;
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--dark-800);
  transition: all var(--transition-fast);
  background-color: var(--gray-50);
}

.form-control:focus {
  outline: none;
  border-color: var(--green-500);
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.1);
}

.form-control::placeholder {
  color: var(--gray-400);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

select.form-control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 44px;
  cursor: pointer;
}

select.form-control:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2316a34a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-submit {
  width: 100%;
  margin-top: 8px;
}

/* ---- Footer ---- */
.footer {
  background: var(--dark-900);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo-icon {
  width: auto;
  height: auto;
  background: transparent;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  font-family: 'Outfit', sans-serif;
  text-align: left;
}

.footer-logo-text .brand-name {
  color: #60a5fa;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.6rem;
  border-bottom: 2px solid #60a5fa;
  line-height: 1;
  padding-bottom: 4px;
  margin-bottom: 4px;
}

.footer-logo-text .brand-sub {
  color: #ffffff;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
}

.footer-description {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--gradient-primary);
  transform: translateY(-3px);
}

.footer-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.footer-links .menu-item {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--green-400);
  padding-left: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
}

/* ---- Scroll Animations ---- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.7s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.7s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ---- Keyframe Animations ---- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    display: block;
  }

  .hero-card {
    padding: 28px;
  }

  .why-solar-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-section-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
  }

  .price-card.featured {
    transform: none;
  }

  .price-card.featured:hover {
    transform: translateY(-8px);
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 15, 26, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding-top: 80px;
    /* Push content below the nav bar so it doesn't overlap */
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 999;
    /* Ensure it is behind the actual navbar container which is 1000 */
  }

  .nav-links .nav-menu {
    flex-direction: column;
    align-items: center;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    font-size: 1.3rem;
    padding: 14px 24px;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 16px;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-content {
    padding-top: 100px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-stats {
    gap: 16px;
    flex-wrap: wrap;
  }

  .hero-stat-number {
    font-size: 1.3rem;
  }

  .hero-trust-row {
    justify-content: center;
  }

  .hero-text {
    text-align: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    max-width: 420px;
    margin: 0 auto;
  }

  .section {
    padding: 70px 0;
  }

  .why-solar-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .pricing-section-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

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

  .cta-phone {
    font-size: 1.4rem;
    flex-direction: column;
    gap: 8px;
  }
}

body.admin-bar .navbar {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .navbar {
    top: 46px;
  }
}

.form-success.is-error {
  background: rgba(249, 115, 22, 0.12);
  color: #c2410c;
  border-color: rgba(249, 115, 22, 0.25);
}

.site-main--default {
  padding: 140px 0 80px;
}

.default-page-content {
  max-width: 900px;
}

.default-page-article {
  background: #ffffff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 48px 40px;
}

.default-page-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 24px;
  color: var(--dark-800);
}

.default-page-body>*+* {
  margin-top: 1rem;
}

.default-page-body ul,
.default-page-body ol {
  padding-left: 1.4rem;
}

.default-page-body ul {
  list-style: disc;
}

.default-page-body ol {
  list-style: decimal;
}

.default-page-body a {
  color: var(--green-600);
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .container {
    padding: 0 16px;
  }

  .price-card {
    padding: 32px 20px;
  }

  .contact-form-wrapper {
    padding: 24px;
  }
}

/* ---- WhatsApp Float Button ---- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  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: all var(--transition-medium);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #ffffff;
}

/* ---- Back to Top ---- */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--dark-800);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-medium);
  cursor: pointer;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--green-600);
  transform: translateY(-3px);
}

/* Success message */
.form-success {
  display: none;
  padding: 16px 24px;
  background: var(--green-50);
  border: 1px solid var(--green-200);
  border-radius: var(--radius-md);
  color: var(--green-800);
  font-weight: 500;
  margin-top: 16px;
  align-items: center;
  gap: 10px;
}

.form-success.show {
  display: flex;
}

/* ============================================
   AMC PAGE STYLES
   ============================================ */

/* ---- AMC Scope Grid (What's Included) ---- */
.amc-scope-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

@media (max-width: 900px) {
  .amc-scope-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .amc-scope-grid {
    grid-template-columns: 1fr;
  }
}

.amc-scope-card {
  background: #ffffff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.amc-scope-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.amc-scope-icon {
  width: 52px;
  height: 52px;
  background: var(--green-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--green-600);
}

.amc-scope-icon svg {
  width: 24px;
  height: 24px;
}

.amc-scope-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark-800);
  margin-bottom: 8px;
}

.amc-scope-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ---- AMC Terms Grid ---- */
.amc-terms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

@media (max-width: 900px) {
  .amc-terms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .amc-terms-grid {
    grid-template-columns: 1fr;
  }
}

.amc-terms-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
}

.amc-terms-icon {
  width: 52px;
  height: 52px;
  background: var(--green-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #ffffff;
}

.amc-terms-icon svg {
  width: 24px;
  height: 24px;
}

.amc-terms-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-200);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.amc-price-highlight {
  font-size: 1.6rem;
  font-weight: 800;
  color: #4ade80;
  margin-bottom: 8px;
  line-height: 1.2;
}

.amc-price-highlight span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-400);
}

.amc-terms-card p {
  font-size: 0.85rem;
  color: var(--gray-400);
  line-height: 1.5;
}

/* ---- AMC Exclusions ---- */
.amc-exclusions {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-top: 40px;
}

.amc-exclusions h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fbbf24;
  margin-bottom: 14px;
}

.amc-exclusions ul {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.amc-exclusions ul li {
  font-size: 0.9rem;
  color: var(--gray-300);
  padding-left: 18px;
  position: relative;
}

.amc-exclusions ul li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: #f87171;
  font-size: 0.75rem;
  top: 2px;
}

.amc-exclusions-note {
  font-size: 0.82rem;
  color: var(--gray-500);
  margin-top: 10px;
  font-style: italic;
}

/* ---- AMC Request Form Grid ---- */
.amc-form-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 900px) {
  .amc-form-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ---- AMC Form Info Side ---- */
.amc-info-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}

.amc-info-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.amc-info-icon {
  color: var(--green-500);
  flex-shrink: 0;
  margin-top: 2px;
}

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

.amc-info-point strong {
  display: block;
  font-weight: 700;
  color: var(--dark-800);
  margin-bottom: 4px;
}

.amc-info-point p {
  font-size: 0.88rem;
  color: var(--gray-500);
  margin: 0;
}

.amc-contact-note {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--green-50);
  border: 1px solid var(--green-200);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 0.9rem;
  color: var(--gray-700);
}

.amc-contact-note a {
  color: var(--green-700);
}

/* ---- AMC Form Card ---- */
.amc-form-card {
  background: #ffffff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.amc-form-header {
  background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
  padding: 24px 32px;
  color: #ffffff;
}

.amc-form-header h3 {
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.amc-form-header p {
  font-size: 0.85rem;
  opacity: 0.85;
}

.amc-form-card form {
  padding: 28px 32px;
}

/* ---- Homepage AMC Highlight Section ---- */
.amc-highlight-section {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 50%, #f0fdf4 100%);
}

.amc-highlight-card {
  background: #ffffff;
  border: 2px solid var(--green-200);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 48px;
  max-width: 860px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .amc-highlight-card {
    padding: 28px 20px;
  }
}

.amc-highlight-top {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.amc-highlight-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.amc-price-from {
  font-size: 0.9rem;
  color: var(--gray-500);
  font-weight: 500;
}

.amc-price-big {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.amc-price-unit {
  font-size: 1rem;
  color: var(--gray-500);
  font-weight: 500;
}

.amc-highlight-badge {
  background: var(--green-50);
  border: 1px solid var(--green-200);
  color: var(--green-800);
  border-radius: var(--radius-full);
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.amc-highlight-scope {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 36px;
}

@media (max-width: 640px) {
  .amc-highlight-scope {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 400px) {
  .amc-highlight-scope {
    grid-template-columns: 1fr;
  }
}

.amc-scope-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark-800);
}

.amc-scope-item-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--green-600);
}

.amc-highlight-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}


/* ============================================
   SAVINGS CALCULATOR — REDESIGNED
   ============================================ */
.calculator-page {
  background: #ffffff;
}

/* ---- Hero Section ---- */
.calc-hero {
  position: relative;
  padding: 140px 0 80px;
  background: linear-gradient(160deg, #052e16 0%, #14532d 40%, #166534 100%);
  overflow: hidden;
}

.calc-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.calc-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}

.calc-hero-orb--1 {
  width: 500px;
  height: 500px;
  background: var(--green-400);
  top: -120px;
  right: -80px;
  animation: calcOrb1 12s ease-in-out infinite alternate;
}

.calc-hero-orb--2 {
  width: 350px;
  height: 350px;
  background: var(--gold-400);
  bottom: -60px;
  left: 10%;
  animation: calcOrb2 10s ease-in-out infinite alternate;
}

.calc-hero-orb--3 {
  width: 200px;
  height: 200px;
  background: var(--green-300);
  top: 40%;
  left: 60%;
  animation: calcOrb3 8s ease-in-out infinite alternate;
}

@keyframes calcOrb1 {
  to {
    transform: translate(-40px, 30px) scale(1.1);
  }
}

@keyframes calcOrb2 {
  to {
    transform: translate(30px, -20px) scale(0.9);
  }
}

@keyframes calcOrb3 {
  to {
    transform: translate(-20px, 15px) scale(1.15);
  }
}

.calc-hero-header {
  text-align: center;
  position: relative;
  z-index: 1;
  margin-bottom: 56px;
}

.calc-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  color: var(--green-300);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.calc-hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.15;
}

.calc-hero-title span {
  background: linear-gradient(135deg, var(--green-300) 0%, var(--gold-400) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.calc-hero-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
  margin: 0 auto;
}

/* ---- Main Calculator Card ---- */
.calc-card {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.calc-card-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
}

/* -- Input Side -- */
.calc-card-input {
  padding: 48px 40px;
  background: #fff;
  border-right: 1px solid var(--gray-100);
}

.calc-card-input-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}

.calc-input-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--green-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-600);
  flex-shrink: 0;
}

.calc-input-icon-wrap svg {
  width: 26px;
  height: 26px;
}

.calc-card-label {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark-800);
  margin-bottom: 2px;
}

.calc-card-hint {
  font-size: 0.85rem;
  color: var(--gray-400);
}

/* Bill Display */
.calc-bill-display {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 28px;
}

.calc-bill-currency {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gray-400);
}

.calc-bill-amount {
  font-family: 'Outfit', sans-serif;
  font-size: 3.4rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.calc-bill-period {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-400);
  margin-left: 4px;
}

/* Slider v2 */
.calc-slider-track-wrap {
  position: relative;
  margin-bottom: 12px;
  height: 12px;
}

.calc-slider-v2 {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 12px;
  border-radius: 6px;
  background: var(--gray-100);
  outline: none;
  position: relative;
  z-index: 2;
}

.calc-slider-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 12px;
  border-radius: 6px;
  background: var(--gradient-primary);
  pointer-events: none;
  z-index: 1;
  transition: width 0.05s linear;
}

.calc-slider-v2::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
  border: 4px solid var(--green-500);
  box-shadow: 0 2px 10px rgba(34, 197, 94, 0.35), 0 0 0 6px rgba(34, 197, 94, 0.1);
  transition: box-shadow 0.2s ease, transform 0.1s ease;
  position: relative;
  z-index: 3;
}

.calc-slider-v2::-webkit-slider-thumb:hover {
  box-shadow: 0 2px 14px rgba(34, 197, 94, 0.5), 0 0 0 8px rgba(34, 197, 94, 0.15);
}

.calc-slider-v2::-webkit-slider-thumb:active {
  transform: scale(1.1);
}

.calc-slider-v2::-moz-range-thumb {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
  border: 4px solid var(--green-500);
  box-shadow: 0 2px 10px rgba(34, 197, 94, 0.35);
}

.calc-slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--gray-400);
  font-weight: 500;
  margin-bottom: 32px;
}

/* Info Chips */
.calc-info-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.calc-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green-700);
}

.calc-chip svg {
  color: var(--green-500);
}

/* -- Results Side -- */
.calc-card-results {
  padding: 48px 40px;
  background: linear-gradient(180deg, var(--gray-50) 0%, #ffffff 100%);
}

.calc-results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.calc-results-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark-800);
}

.calc-results-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(34, 197, 94, 0.1);
  color: var(--green-600);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Primary Metric Ring */
.calc-primary-metric {
  text-align: center;
  margin-bottom: 32px;
}

.calc-metric-ring {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  margin: 0 auto 14px;
  background: var(--gradient-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(34, 197, 94, 0.3), inset 0 0 0 6px rgba(255, 255, 255, 0.2);
  animation: calcRingPulse 3s ease-in-out infinite;
}

@keyframes calcRingPulse {

  0%,
  100% {
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.3), inset 0 0 0 6px rgba(255, 255, 255, 0.2);
  }

  50% {
    box-shadow: 0 8px 40px rgba(34, 197, 94, 0.45), inset 0 0 0 6px rgba(255, 255, 255, 0.25);
  }
}

.calc-metric-ring-val {
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.calc-metric-ring-unit {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.calc-metric-ring-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Bill Comparison Bars */
.calc-bill-compare {
  background: #ffffff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 20px;
}

.calc-bill-compare-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.calc-bill-compare-row:last-child {
  margin-bottom: 0;
}

.calc-bill-compare-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-600);
  min-width: 100px;
  white-space: nowrap;
}

.calc-compare-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.calc-compare-dot--before {
  background: #ef4444;
}

.calc-compare-dot--after {
  background: var(--green-500);
}

.calc-bill-compare-bar-wrap {
  flex: 1;
  height: 28px;
  background: var(--gray-100);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.calc-bill-compare-bar {
  height: 100%;
  border-radius: 8px;
  transition: width 0.4s ease;
}

.calc-bill-compare-bar--before {
  background: linear-gradient(90deg, #fca5a5, #ef4444);
}

.calc-bill-compare-bar--after {
  background: var(--gradient-primary);
}

.calc-bill-compare-val {
  font-family: 'Outfit', monospace;
  font-size: 0.95rem;
  font-weight: 700;
  min-width: 72px;
  text-align: right;
}

.calc-bill-compare-val--before {
  color: #ef4444;
}

.calc-bill-compare-val--after {
  color: var(--green-600);
}

/* Savings Highlight */
.calc-savings-highlight {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, #052e16, #166534);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.2);
}

.calc-savings-highlight-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.calc-savings-highlight-icon svg {
  width: 24px;
  height: 24px;
  color: var(--green-300);
}

.calc-savings-highlight-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.calc-savings-highlight-val {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
}

/* Savings Grid */
.calc-savings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 20px;
}

.calc-savings-card {
  background: #ffffff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 18px 16px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.calc-savings-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.calc-savings-card--accent {
  background: var(--green-50);
  border-color: var(--green-200);
}

.calc-savings-card-val {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--green-700);
  margin-bottom: 4px;
}

.calc-savings-card--accent .calc-savings-card-val {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.4rem;
}

.calc-savings-card-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Stats Grid */
.calc-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 28px;
}

.calc-stat-card {
  background: #ffffff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 18px 16px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.calc-stat-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.calc-stat-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}

.calc-stat-icon svg {
  width: 22px;
  height: 22px;
  color: var(--green-500);
}

.calc-stat-value {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark-800);
  margin-bottom: 2px;
}

.calc-stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Cost Breakdown Card */
.calc-cost-card {
  background: #ffffff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  margin-bottom: 16px;
}

.calc-cost-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 0.92rem;
  color: var(--gray-600);
  font-weight: 500;
}

.calc-cost-row--green {
  color: var(--green-600);
}

.calc-cost-row--total {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-900);
}

.calc-cost-val {
  font-family: 'Outfit', monospace;
  font-weight: 700;
}

.calc-cost-divider {
  height: 1px;
  background: var(--gray-200);
  margin: 6px 0;
  background: repeating-linear-gradient(90deg, var(--gray-200), var(--gray-200) 6px, transparent 6px, transparent 12px);
}

.calc-disclaimer {
  font-size: 0.78rem;
  color: var(--gray-400);
  text-align: center;
  margin-bottom: 20px;
}

/* Calculator value transition animation */
.calc-bill-compare-val,
.calc-savings-highlight-val,
.calc-savings-card-val,
.calc-stat-value,
.calc-cost-val {
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.calc-value-updating {
  opacity: 0;
  transform: translateY(6px);
}

/* CTA Button */
.calc-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 32px;
  background: var(--gradient-primary);
  color: #ffffff;
  border-radius: var(--radius-lg);
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.calc-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
}

/* ---- Responsive Calculator ---- */
@media (max-width: 900px) {
  .calc-card-inner {
    grid-template-columns: 1fr;
  }

  .calc-card-input {
    border-right: none;
    border-bottom: 1px solid var(--gray-100);
    padding: 32px 24px;
  }

  .calc-card-results {
    padding: 32px 24px;
  }

  .calc-bill-amount {
    font-size: 2.6rem;
  }

  .calc-hero {
    padding: 120px 0 60px;
  }

  .calc-hero-title {
    font-size: clamp(1.6rem, 5vw, 2.4rem);
  }
}

@media (max-width: 580px) {
  .calc-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .calc-card-input,
  .calc-card-results {
    padding: 24px 18px;
  }

  .calc-info-chips {
    gap: 8px;
  }

  .calc-chip {
    font-size: 0.72rem;
    padding: 6px 10px;
  }

  .calc-bill-compare-label {
    min-width: 80px;
    font-size: 0.75rem;
  }

  .calc-bill-compare-val {
    min-width: 60px;
    font-size: 0.82rem;
  }

  .calc-savings-highlight {
    padding: 16px 18px;
    gap: 12px;
  }

  .calc-savings-highlight-val {
    font-size: 1.4rem;
  }

  .calc-savings-grid {
    gap: 10px;
  }
}

/* ---- Content Blocks ---- */
.calc-content-block {
  max-width: 820px;
  margin: 0 auto;
}

.calc-content-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--dark-800);
  margin-bottom: 20px;
  line-height: 1.25;
}

.calc-content-title span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.calc-content-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  font-weight: 700;
  color: var(--dark-800);
  margin-bottom: 16px;
}

.calc-content-block p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 16px;
}

.calc-content-block p:last-child {
  margin-bottom: 0;
}

.calc-content-cta-block {
  text-align: center;
  background: linear-gradient(135deg, var(--green-50) 0%, #ffffff 100%);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
}

/* Ordered list */
.calc-ordered-list {
  list-style: none;
  counter-reset: calc-step;
  margin: 20px 0;
  padding: 0;
}

.calc-ordered-list li {
  counter-increment: calc-step;
  position: relative;
  padding-left: 40px;
  margin-bottom: 16px;
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.calc-ordered-list li::before {
  content: counter(calc-step);
  position: absolute;
  left: 0;
  top: 2px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Benefits Grid */
.calc-benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.calc-benefit-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #ffffff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.calc-benefit-row:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.calc-benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
  background: var(--green-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-600);
}

.calc-benefit-icon svg {
  width: 22px;
  height: 22px;
}

.calc-benefit-row strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-800);
  margin-bottom: 4px;
}

.calc-benefit-row p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 700px) {
  .calc-benefits-grid {
    grid-template-columns: 1fr;
  }

  .calc-content-cta-block {
    padding: 32px 20px;
  }
}

/* ---- Journey Timeline ---- */
.calc-journey-timeline {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  padding-left: 48px;
}

.calc-journey-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 23px;
  width: 3px;
  background: linear-gradient(180deg, var(--green-300) 0%, var(--green-600) 100%);
  border-radius: 2px;
}

.calc-journey-step {
  position: relative;
  padding-bottom: 40px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.calc-journey-step:last-child {
  padding-bottom: 0;
}

.calc-journey-dot {
  position: absolute;
  left: -48px;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
  z-index: 1;
  flex-shrink: 0;
}

.calc-journey-content {
  background: #ffffff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
  flex: 1;
  transition: box-shadow 0.3s ease;
}

.calc-journey-content:hover {
  box-shadow: var(--shadow-md);
}

.calc-journey-content h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-800);
  margin-bottom: 6px;
}

.calc-journey-content p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.55;
}

/* ---- FAQ Accordion ---- */
.calc-faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.calc-faq-item {
  background: #ffffff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.calc-faq-item[open] {
  box-shadow: var(--shadow-md);
  border-color: var(--green-200);
}

.calc-faq-q {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark-800);
  list-style: none;
  transition: background 0.2s ease;
}

.calc-faq-q:hover {
  background: var(--gray-50);
}

.calc-faq-q::-webkit-details-marker {
  display: none;
}

.calc-faq-chevron {
  width: 20px;
  height: 20px;
  margin-left: auto;
  color: var(--gray-400);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.calc-faq-item[open] .calc-faq-chevron {
  transform: rotate(180deg);
  color: var(--green-500);
}

.calc-faq-a {
  padding: 0 24px 20px 56px;
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.65;
}


/* ============================================
   GALLERY PAGE STYLES
   ============================================ */

/* ---- Gallery Hero ---- */
.gallery-hero {
  padding: 160px 0 72px;
  background: var(--gradient-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.gallery-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: rgba(34, 197, 94, 0.08);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.gallery-hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: rgba(74, 222, 128, 0.06);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.gallery-hero .section-title {
  color: #ffffff;
  margin-bottom: 16px;
}

.gallery-hero .section-subtitle {
  color: rgba(255, 255, 255, 0.65);
  max-width: 560px;
  margin: 0 auto;
}

.gallery-hero .section-badge {
  background: rgba(34, 197, 94, 0.15);
  color: var(--green-300);
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.gallery-hero-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.gallery-hero-stat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  font-weight: 500;
}

.gallery-hero-stat svg {
  color: var(--green-400);
}

/* ---- Gallery Section ---- */
.gallery-section {
  padding: 72px 0 100px;
  background: var(--gray-50);
}

/* ---- Gallery Masonry Grid ---- */
.gallery-masonry {
  columns: 3;
  column-gap: 24px;
}

.gallery-card {
  break-inside: avoid;
  margin-bottom: 24px;
}

.gallery-card-inner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-card-inner:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.gallery-card-inner img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.gallery-card-inner:hover img {
  transform: scale(1.06);
}

/* ---- Gallery Card Overlay ---- */
.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.65) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.gallery-card-inner:hover .gallery-card-overlay {
  opacity: 1;
}

.gallery-card-zoom {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.25s ease;
  transform: scale(0.85);
  opacity: 0;
}

.gallery-card-inner:hover .gallery-card-zoom {
  transform: scale(1);
  opacity: 1;
}

.gallery-card-zoom:hover {
  background: var(--green-600);
  border-color: var(--green-600);
  transform: scale(1.1);
}

.gallery-card-zoom svg {
  width: 20px;
  height: 20px;
}

.gallery-card-caption {
  transform: translateY(8px);
  transition: transform 0.35s ease;
}

.gallery-card-inner:hover .gallery-card-caption {
  transform: translateY(0);
}

.gallery-card-caption-text {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

/* ---- Gallery Lightbox ---- */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}

.gallery-lightbox.active {
  display: flex;
}

.gallery-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.gallery-lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10001;
  transition: all 0.25s ease;
}

.gallery-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.18);
}

.gallery-lightbox-close svg {
  width: 24px;
  height: 24px;
}

.gallery-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10001;
  transition: all 0.25s ease;
}

.gallery-lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.18);
}

.gallery-lightbox-nav svg {
  width: 28px;
  height: 28px;
}

.gallery-lightbox-prev { left: 24px; }
.gallery-lightbox-next { right: 24px; }

.gallery-lightbox-content {
  position: relative;
  z-index: 10001;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gallery-lightbox-content img {
  max-width: 90vw;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
}

.gallery-lightbox-caption {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  font-weight: 500;
  margin-top: 20px;
  text-align: center;
}

.gallery-lightbox-counter {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.82rem;
  margin-top: 8px;
  letter-spacing: 0.1em;
}

/* ---- Gallery Empty State ---- */
.gallery-empty {
  text-align: center;
  padding: 100px 20px;
  color: var(--gray-400);
}

.gallery-empty-icon {
  margin-bottom: 20px;
  color: var(--gray-300);
}

.gallery-empty h3 {
  font-size: 1.3rem;
  color: var(--dark-800);
  margin-bottom: 8px;
}

.gallery-empty p {
  font-size: 0.95rem;
  max-width: 400px;
  margin: 0 auto;
}

/* ---- Gallery Responsive ---- */
@media (max-width: 1024px) {
  .gallery-masonry {
    columns: 2;
    column-gap: 20px;
  }

  .gallery-card {
    margin-bottom: 20px;
  }
}

@media (max-width: 600px) {
  .gallery-hero {
    padding: 120px 0 56px;
  }

  .gallery-section {
    padding: 48px 0 72px;
  }

  .gallery-masonry {
    columns: 1;
    column-gap: 0;
  }

  .gallery-card {
    margin-bottom: 16px;
  }

  .gallery-hero-stats {
    gap: 20px;
  }

  .gallery-lightbox-nav {
    width: 40px;
    height: 40px;
  }

  .gallery-lightbox-prev { left: 12px; }
  .gallery-lightbox-next { right: 12px; }
}


/* ============================================
   ELEMENTOR COMPATIBILITY OVERRIDES
   ============================================
   Elementor's frontend.css resets container widths, section padding,
   and heading styles. These overrides restore the theme's design on
   pages that use our custom templates (not built with Elementor).
   ============================================ */

/* Prevent Elementor from constraining our containers */
body.elementor-default .site-main .container,
body.elementor-page .site-main .container {
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* Restore section backgrounds that Elementor strips */
body.elementor-default .gallery-hero,
body.elementor-page .gallery-hero {
  padding: 140px 0 60px;
  background: var(--gradient-dark);
  text-align: center;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

body.elementor-default .gallery-hero .section-title,
body.elementor-page .gallery-hero .section-title {
  color: #ffffff;
}

body.elementor-default .gallery-hero .section-subtitle,
body.elementor-page .gallery-hero .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

body.elementor-default .gallery-hero .section-badge,
body.elementor-page .gallery-hero .section-badge {
  background: rgba(34, 197, 94, 0.2);
  color: var(--green-300);
}

/* Same fix for contact-hero and other dark hero sections */
body.elementor-default .contact-hero,
body.elementor-page .contact-hero {
  padding: 140px 0 60px;
  background: var(--gradient-dark);
  text-align: center;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

/* Restore heading styles Elementor overrides */
body.elementor-default .section-title,
body.elementor-page .section-title {
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
}

body.elementor-default .section-title span,
body.elementor-page .section-title span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Restore gallery grid on Elementor pages */
body.elementor-default .gallery-grid,
body.elementor-page .gallery-grid {
  columns: 3;
  column-gap: 20px;
}

body.elementor-default .gallery-item,
body.elementor-page .gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
}

/* Ensure landing page templates are full-width */
body.elementor-default .site-main--landing,
body.elementor-page .site-main--landing {
  padding: 0;
  max-width: 100%;
  width: 100%;
}

/* Prevent Elementor from adding extra padding to our sections */
body.elementor-default .section,
body.elementor-page .section {
  padding: 100px 0;
}

body.elementor-default .gallery-section,
body.elementor-page .gallery-section {
  padding: 60px 0 100px;
}

@media (max-width: 900px) {
  body.elementor-default .gallery-grid,
  body.elementor-page .gallery-grid {
    columns: 2;
    column-gap: 16px;
  }
}

@media (max-width: 520px) {
  body.elementor-default .gallery-grid,
  body.elementor-page .gallery-grid {
    columns: 1;
  }
}
