/* =============================================
   SHREE GANESH ELECTRICALS
   Production CSS — GeneratePress Child Theme
   All custom classes prefixed with: kd-
   ============================================= */

/* =============================================
   1. DESIGN TOKENS
   ============================================= */
:root {
  /* Brand Colors */
  --kd-primary: #1B3A5C;
  --kd-primary-dark: #112A44;
  --kd-primary-light: #2E5F8A;
  --kd-accent: #FFD100;
  --kd-accent-dark: #D4AD00;
  --kd-accent-light: #FFE34D;
  --kd-white: #FFFFFF;
  --kd-off-white: #F7F8FA;
  --kd-gray-100: #EDF0F5;
  --kd-gray-200: #DEE2E8;
  --kd-gray-300: #CED4DA;
  --kd-text: #1A2332;
  --kd-text-secondary: #556270;
  --kd-text-muted: #8892A0;
  --kd-whatsapp: #25D366;
  --kd-whatsapp-hover: #1FAF57;
  --kd-success: #28A745;

  /* Shadows */
  --kd-shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
  --kd-shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --kd-shadow-md: 0 4px 16px rgba(27,58,92,0.08);
  --kd-shadow-lg: 0 8px 30px rgba(27,58,92,0.12);
  --kd-shadow-xl: 0 16px 48px rgba(27,58,92,0.14);
  --kd-shadow-card: 0 2px 12px rgba(27,58,92,0.07);
  --kd-shadow-card-hover: 0 12px 36px rgba(27,58,92,0.14);

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

  /* Transitions */
  --kd-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --kd-transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}


/* =============================================
   2. BUTTONS
   ============================================= */
.kd-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--kd-radius-sm);
  transition: all var(--kd-transition);
  line-height: 1;
  white-space: nowrap;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
}
.kd-btn i,
.kd-btn svg { font-size: 0.9em; }

/* Primary — Accent Yellow */
.kd-btn-primary {
  background: var(--kd-accent);
  color: var(--kd-primary-dark);
  border-color: var(--kd-accent);
}
.kd-btn-primary:hover {
  background: var(--kd-accent-dark);
  border-color: var(--kd-accent-dark);
  color: var(--kd-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,209,0,0.35);
}

/* Secondary — White Outline */
.kd-btn-secondary {
  background: transparent;
  color: var(--kd-white);
  border-color: rgba(255,255,255,0.4);
}
.kd-btn-secondary:hover {
  background: var(--kd-white);
  color: var(--kd-primary);
  border-color: var(--kd-white);
  transform: translateY(-2px);
}

/* WhatsApp Green */
.kd-btn-whatsapp {
  background: var(--kd-whatsapp);
  color: var(--kd-white);
  border-color: var(--kd-whatsapp);
}
.kd-btn-whatsapp:hover {
  background: var(--kd-whatsapp-hover);
  border-color: var(--kd-whatsapp-hover);
  color: var(--kd-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
}

/* Outline — Primary Border */
.kd-btn-outline {
  background: transparent;
  color: var(--kd-primary);
  border-color: var(--kd-primary);
}
.kd-btn-outline:hover {
  background: var(--kd-primary);
  color: var(--kd-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27,58,92,0.25);
}

/* Sizes */
.kd-btn-sm { padding: 10px 22px; font-size: 0.875rem; }
.kd-btn-lg { padding: 18px 40px; font-size: 1.05rem; }


/* =============================================
   3. LOGO ICON (Custom Element)
   ============================================= */
.kd-logo-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--kd-primary), var(--kd-primary-light));
  border-radius: var(--kd-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}
.kd-logo-initials {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--kd-white);
  letter-spacing: -0.5px;
  line-height: 1;
}
.kd-logo-bolt {
  position: absolute;
  top: -4px;
  right: -4px;
  font-size: 0.5rem;
  color: var(--kd-accent);
  background: var(--kd-primary-dark);
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--kd-white);
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

/* Header scroll shadow (added via JS) */
.site-header.kd-header-scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}


/* =============================================
   4. SECTION LABELS / HEADINGS
   ============================================= */
.kd-section-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--kd-primary-light);
  margin-bottom: 1rem;
  position: relative;
  padding-left: 28px;
}
.kd-section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 3px;
  background: var(--kd-accent);
  border-radius: 2px;
}
.kd-section-label-center {
  padding-left: 0;
  text-align: center;
}
.kd-section-label-center::before { display: none; }

.kd-section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--kd-text);
  margin-bottom: 1.5rem;
}
.kd-section-subtitle {
  font-size: 1.05rem;
  color: var(--kd-text-muted);
  max-width: 600px;
  line-height: 1.7;
}
.kd-section-subtitle-center {
  margin-left: auto;
  margin-right: auto;
}

/* Section background variants */
.kd-section-alt { background-color: var(--kd-off-white); }


/* =============================================
   5. HERO SECTION (Home Page)
   ============================================= */
.kd-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px; /* Clear GP sticky header */
}
.kd-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.kd-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.kd-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(17,42,68,0.92) 0%,
    rgba(27,58,92,0.8) 50%,
    rgba(46,95,138,0.7) 100%
  );
  z-index: 1;
}
.kd-hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

/* Hero Badge */
.kd-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255,209,0,0.15);
  border: 1px solid rgba(255,209,0,0.3);
  border-radius: var(--kd-radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--kd-accent);
  margin-bottom: 2rem;
}
.kd-hero-badge i { font-size: 0.8em; }

/* Hero Title */
.kd-hero-title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  color: var(--kd-white);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.kd-hero-title span { color: var(--kd-accent); }

/* Hero Description */
.kd-hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 560px;
}

/* Hero Button Group */
.kd-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}


/* =============================================
   6. PAGE HERO (Inner Pages)
   ============================================= */
.kd-page-hero {
  background: linear-gradient(
    135deg,
    var(--kd-primary-dark) 0%,
    var(--kd-primary) 50%,
    var(--kd-primary-light) 100%
  );
  padding: clamp(100px, 15vw, 160px) 0 clamp(60px, 10vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.kd-page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,209,0,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.kd-page-hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--kd-white);
  font-weight: 800;
  margin-bottom: 1rem;
}

/* Breadcrumb */
.kd-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}
.kd-breadcrumb a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color var(--kd-transition);
}
.kd-breadcrumb a:hover { color: var(--kd-accent); }
.kd-breadcrumb .kd-breadcrumb-current { color: var(--kd-accent); }
.kd-breadcrumb .kd-breadcrumb-sep {
  font-size: 0.6em;
  opacity: 0.6;
}


/* =============================================
   7. STATS BAR
   ============================================= */
.kd-stats {
  background: var(--kd-primary-dark);
  position: relative;
  overflow: hidden;
}
.kd-stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--kd-accent), var(--kd-accent-light), var(--kd-accent));
}
.kd-stat {
  text-align: center;
  padding: 1rem;
  position: relative;
}
.kd-stat::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.1);
}
.kd-stat:last-child::after { display: none; }

.kd-stat__number {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--kd-accent);
  line-height: 1;
  margin-bottom: 6px;
}
.kd-stat__label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}


/* =============================================
   8. SERVICE CARDS (Overview — Home Page)
   ============================================= */
.kd-service-card {
  background: var(--kd-white);
  border-radius: var(--kd-radius-md);
  padding: 2.5rem;
  box-shadow: var(--kd-shadow-card);
  border: 1px solid var(--kd-gray-100);
  transition: all var(--kd-transition);
  position: relative;
  overflow: hidden;
}
.kd-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--kd-accent);
  transform: scaleY(0);
  transition: transform var(--kd-transition);
  transform-origin: bottom;
}
.kd-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--kd-shadow-card-hover);
}
.kd-service-card:hover::before { transform: scaleY(1); }

.kd-service-card__icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(27,58,92,0.08), rgba(27,58,92,0.04));
  border-radius: var(--kd-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  color: var(--kd-primary);
  margin-bottom: 1.5rem;
  transition: all var(--kd-transition);
}
.kd-service-card:hover .kd-service-card__icon {
  background: linear-gradient(135deg, var(--kd-primary), var(--kd-primary-light));
  color: var(--kd-accent);
}
.kd-service-card__title {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--kd-text);
}
.kd-service-card__desc {
  font-size: 0.875rem;
  color: var(--kd-text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.kd-service-card__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--kd-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: gap var(--kd-transition), color var(--kd-transition);
}
.kd-service-card__link:hover {
  color: var(--kd-primary-light);
  gap: 10px;
}


/* =============================================
   9. SERVICE DETAIL CARDS (Services Page)
   ============================================= */
.kd-service-detail {
  background: var(--kd-white);
  border-radius: var(--kd-radius-lg);
  overflow: hidden;
  box-shadow: var(--kd-shadow-card);
  border: 1px solid var(--kd-gray-100);
  transition: all var(--kd-transition);
}
.kd-service-detail:hover {
  transform: translateY(-4px);
  box-shadow: var(--kd-shadow-card-hover);
}
.kd-service-detail__img {
  height: 220px;
  background: linear-gradient(135deg, var(--kd-primary), var(--kd-primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--kd-accent);
  font-size: 3rem;
  overflow: hidden;
}
.kd-service-detail__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.kd-service-detail__body { padding: 2.5rem; }
.kd-service-detail__title {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--kd-text);
}
.kd-service-detail__desc {
  font-size: 0.875rem;
  color: var(--kd-text-secondary);
  margin-bottom: 1.5rem;
}
.kd-service-detail__features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 2rem;
}
.kd-service-detail__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--kd-text-secondary);
}
.kd-service-detail__feature i {
  color: var(--kd-success);
  font-size: 0.8em;
}


/* =============================================
   10. WHY CHOOSE US / FEATURE ITEMS
   ============================================= */
.kd-feature-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.kd-feature-item__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(255,209,0,0.12);
  border-radius: var(--kd-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--kd-accent-dark);
  font-size: 1rem;
}
.kd-feature-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--kd-text);
}
.kd-feature-item p {
  font-size: 0.875rem;
  color: var(--kd-text-muted);
  margin-bottom: 0;
}


/* =============================================
   11. TESTIMONIAL CARDS
   ============================================= */
.kd-testimonial {
  background: var(--kd-white);
  border-radius: var(--kd-radius-md);
  padding: 2.5rem;
  box-shadow: var(--kd-shadow-card);
  border: 1px solid var(--kd-gray-100);
  transition: all var(--kd-transition);
}
.kd-testimonial:hover {
  transform: translateY(-3px);
  box-shadow: var(--kd-shadow-card-hover);
}
.kd-testimonial__stars {
  display: flex;
  gap: 3px;
  color: var(--kd-accent);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}
.kd-testimonial__quote {
  font-size: 1rem;
  color: var(--kd-text-secondary);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 2rem;
  position: relative;
  padding-left: 0;
}
.kd-testimonial__quote::before {
  content: '\201C';
  font-size: 3.5rem;
  color: var(--kd-accent);
  font-family: Georgia, serif;
  line-height: 0;
  position: absolute;
  top: 14px;
  left: -4px;
  opacity: 0.4;
}
.kd-testimonial__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.kd-testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--kd-primary), var(--kd-primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--kd-white);
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}
.kd-testimonial__name {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--kd-text);
}
.kd-testimonial__role {
  font-size: 0.8125rem;
  color: var(--kd-text-muted);
}


/* =============================================
   12. GALLERY / PROJECT CARDS
   ============================================= */
.kd-gallery-card {
  border-radius: var(--kd-radius-lg);
  overflow: hidden;
  box-shadow: var(--kd-shadow-card);
  transition: all var(--kd-transition);
}
.kd-gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--kd-shadow-card-hover);
}
.kd-gallery-card__img {
  height: 260px;
  overflow: hidden;
}
.kd-gallery-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--kd-transition-slow);
}
.kd-gallery-card:hover .kd-gallery-card__img img {
  transform: scale(1.05);
}
.kd-gallery-card__body {
  padding: 2rem;
  background: var(--kd-white);
}
.kd-gallery-card__tag {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--kd-primary-light);
  background: rgba(27,58,92,0.06);
  padding: 4px 12px;
  border-radius: var(--kd-radius-full);
  margin-bottom: 0.5rem;
}
.kd-gallery-card__title {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--kd-text);
}
.kd-gallery-card__location {
  font-size: 0.875rem;
  color: var(--kd-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}


/* =============================================
   13. CTA SECTION
   ============================================= */
.kd-cta {
  background: linear-gradient(
    135deg,
    var(--kd-primary-dark) 0%,
    var(--kd-primary) 50%,
    var(--kd-primary-light) 100%
  );
  position: relative;
  overflow: hidden;
  text-align: center;
}
.kd-cta::before {
  content: '';
  position: absolute;
  bottom: -60%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,209,0,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.kd-cta::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.kd-cta-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--kd-white);
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.kd-cta-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.kd-cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}


/* =============================================
   14. VALUE CARDS (About Page)
   ============================================= */
.kd-value-card {
  text-align: center;
  padding: 2.5rem;
  background: var(--kd-white);
  border-radius: var(--kd-radius-md);
  box-shadow: var(--kd-shadow-card);
  border: 1px solid var(--kd-gray-100);
  transition: all var(--kd-transition);
}
.kd-value-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--kd-shadow-card-hover);
}
.kd-value-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, rgba(255,209,0,0.15), rgba(255,209,0,0.05));
  border-radius: var(--kd-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--kd-accent-dark);
}
.kd-value-card__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--kd-text);
}
.kd-value-card__desc {
  font-size: 0.875rem;
  color: var(--kd-text-muted);
}


/* =============================================
   15. TIMELINE (About Page)
   ============================================= */
.kd-timeline {
  position: relative;
  padding-left: 32px;
}
.kd-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--kd-gray-200);
  border-radius: 2px;
}
.kd-timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
}
.kd-timeline-item:last-child { padding-bottom: 0; }
.kd-timeline-item::before {
  content: '';
  position: absolute;
  left: -38px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--kd-accent);
  border: 3px solid var(--kd-white);
  box-shadow: 0 0 0 3px var(--kd-gray-200);
}
.kd-timeline-item__year {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--kd-primary);
  margin-bottom: 4px;
}
.kd-timeline-item__text {
  font-size: 0.875rem;
  color: var(--kd-text-secondary);
  line-height: 1.7;
}


/* =============================================
   16. CONTACT FORM
   ============================================= */
.kd-contact-form {
  background: var(--kd-white);
  padding: 3rem;
  border-radius: var(--kd-radius-lg);
  box-shadow: var(--kd-shadow-md);
  border: 1px solid var(--kd-gray-100);
}
.kd-contact-form__title {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--kd-text);
}

/* Form Elements (targets form plugin output) */
.kd-contact-form input[type="text"],
.kd-contact-form input[type="email"],
.kd-contact-form input[type="tel"],
.kd-contact-form select,
.kd-contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--kd-gray-200);
  border-radius: var(--kd-radius-sm);
  font-size: 1rem;
  color: var(--kd-text);
  background: var(--kd-white);
  transition: border-color var(--kd-transition), box-shadow var(--kd-transition);
}
.kd-contact-form input:focus,
.kd-contact-form select:focus,
.kd-contact-form textarea:focus {
  border-color: var(--kd-primary-light);
  box-shadow: 0 0 0 3px rgba(27,58,92,0.1);
  outline: none;
}
.kd-contact-form textarea { resize: vertical; min-height: 120px; }

.kd-contact-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--kd-text);
  margin-bottom: 6px;
}

/* Submit button (inherits kd-btn-primary via plugin class mapping) */
.kd-form-submit {
  width: 100%;
  padding: 16px;
  background: var(--kd-accent);
  color: var(--kd-primary-dark);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--kd-radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--kd-transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.kd-form-submit:hover {
  background: var(--kd-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,209,0,0.35);
}


/* =============================================
   17. CONTACT INFO ITEMS
   ============================================= */
.kd-contact-info__item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.kd-contact-info__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(27,58,92,0.08), rgba(27,58,92,0.04));
  border-radius: var(--kd-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--kd-primary);
  font-size: 1.15rem;
}
.kd-contact-info__label {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--kd-text-muted);
  margin-bottom: 2px;
}
.kd-contact-info__value {
  font-size: 1rem;
  color: var(--kd-text);
  font-weight: 500;
}
.kd-contact-info__value a {
  color: var(--kd-primary);
  text-decoration: none;
  transition: color var(--kd-transition);
}
.kd-contact-info__value a:hover { color: var(--kd-primary-light); }

/* Map Container */
.kd-map {
  border-radius: var(--kd-radius-lg);
  overflow: hidden;
  box-shadow: var(--kd-shadow-md);
  border: 1px solid var(--kd-gray-100);
}
.kd-map iframe {
  width: 100%;
  height: 300px;
  border: 0;
}


/* =============================================
   18. FOOTER ENHANCEMENTS
   (Structure handled by GP Footer Builder)
   ============================================= */
.kd-footer-heading {
  font-size: 1rem;
  font-weight: 600;
  color: var(--kd-white);
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}
.kd-footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 3px;
  background: var(--kd-accent);
  border-radius: 2px;
}
.kd-footer-link {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: all var(--kd-transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.kd-footer-link:hover {
  color: var(--kd-accent);
  transform: translateX(4px);
}
.kd-footer-link i { font-size: 0.75em; }

.kd-footer-contact {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}
.kd-footer-contact i {
  color: var(--kd-accent);
  margin-top: 3px;
  font-size: 0.9rem;
}
.kd-footer-contact a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color var(--kd-transition);
}
.kd-footer-contact a:hover { color: var(--kd-accent); }

.kd-footer-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}
.kd-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 2rem 0;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.35);
}


/* =============================================
   19. FLOATING ACTION BUTTONS
   ============================================= */
.kd-floating-btns {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 998;
}
.kd-floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--kd-white);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: all var(--kd-transition);
  text-decoration: none;
  position: relative;
}
.kd-floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(0,0,0,0.28);
  color: var(--kd-white);
}
.kd-floating-btn--call { background: var(--kd-primary); }
.kd-floating-btn--whatsapp { background: var(--kd-whatsapp); }

/* WhatsApp pulse ring */
.kd-floating-btn--whatsapp::before {
  content: '';
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--kd-whatsapp);
  opacity: 0;
  animation: kd-pulse-ring 2.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
  pointer-events: none;
}
@keyframes kd-pulse-ring {
  0%   { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.5); opacity: 0; }
}


/* =============================================
   20. ABOUT IMAGE FRAME
   ============================================= */
.kd-image-frame {
  border-radius: var(--kd-radius-lg);
  overflow: hidden;
  box-shadow: var(--kd-shadow-lg);
}
.kd-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.kd-image-frame--gradient {
  position: relative;
}
.kd-image-frame--gradient::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(17,42,68,0.3), transparent);
  pointer-events: none;
}


/* =============================================
   21. SCROLL ANIMATIONS
   ============================================= */
.kd-fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.kd-fade-in.kd-visible {
  opacity: 1;
  transform: translateY(0);
}


/* =============================================
   22. RESPONSIVE — TABLET (max-width: 992px)
   ============================================= */
@media (max-width: 992px) {
  .kd-stat::after { display: none; }
  .kd-image-frame img { min-height: 320px; }
}


/* =============================================
   23. RESPONSIVE — MOBILE (max-width: 768px)
   ============================================= */
@media (max-width: 768px) {
  .kd-hero { min-height: 90vh; }
  .kd-hero-actions { flex-direction: column; }
  .kd-hero-actions .kd-btn { width: 100%; justify-content: center; }

  .kd-stat__number { font-size: 1.75rem; }
  .kd-stat::after { display: none; }

  .kd-cta-actions { flex-direction: column; align-items: center; }
  .kd-cta-actions .kd-btn { width: 100%; max-width: 320px; justify-content: center; }

  .kd-floating-btns { bottom: 20px; right: 16px; }
  .kd-floating-btn { width: 50px; height: 50px; font-size: 1.15rem; }
  .kd-floating-btn--whatsapp::before { width: 50px; height: 50px; }

  .kd-page-hero {
    padding: clamp(90px, 12vw, 120px) 0 clamp(40px, 8vw, 60px);
  }

  .kd-contact-form { padding: 1.5rem; }
}


/* =============================================
   24. RESPONSIVE — SMALL MOBILE (max-width: 480px)
   ============================================= */
@media (max-width: 480px) {
  .kd-hero-badge { font-size: 0.75rem; padding: 6px 14px; }
}


/* =============================================
   25. PRINT
   ============================================= */
@media print {
  .kd-floating-btns { display: none; }
  .kd-hero { min-height: auto; }
}
