/* ============================================================
   INDEX PAGE — HERO SECTION (ADD THIS MISSING CSS)
   ============================================================ */

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  padding: 4rem 2rem;
  overflow: hidden;
  position: relative;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  color: #1e293b;
  margin-bottom: 1rem;
}

.hero-content h1 .yellow {
  color: var(--primary);
}

.hero-content p {
  font-size: 1.1rem;
  color: #475569;
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-badges {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.hero-badge-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
}

.hero-badge-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
}

.hero-badge-text span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.hero-img-side {
  position: relative;
}

.hero-img-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-leaf {
  position: absolute;
  font-size: 2rem;
  color: var(--primary);
  opacity: 0.6;
  animation: floatLeaf 3s ease-in-out infinite;
}

.hero-leaf-1 {
  top: -20px;
  right: -20px;
  transform: rotate(15deg);
}

.hero-leaf-2 {
  bottom: -20px;
  left: -20px;
  transform: rotate(-15deg);
  animation-delay: 1.5s;
}

@keyframes floatLeaf {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(5deg); }
}

/* ============================================================
   ABOUT SECTION FIX
   ============================================================ */
.about-sec {
  padding: 5rem 2rem;
  background: var(--white);
}

.about-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-img-col {
  position: relative;
}

.about-img-main {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-img-main img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.about-float-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--primary);
  color: var(--dark);
  border-radius: 16px;
  padding: 1rem 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.about-float-card .afc-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.about-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: 30px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 1rem;
}

.about-line {
  width: 60px;
  height: 3px;
  background: var(--primary);
  margin: 0 0 1.5rem 0;
  border-radius: 3px;
}

.about-desc {
  color: var(--text-alt);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about-vm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.about-vm-card {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 1rem;
  border: 1px solid var(--border-light);
}

.about-vm-card .avm-icon {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.about-vm-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.about-vm-card p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.about-feature {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.about-feature-icon {
  width: 28px;
  height: 28px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: white;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Mobile Responsive for Index */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  
  .about-inner {
    grid-template-columns: 1fr;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .about-title {
    font-size: 1.6rem;
  }
  
  .hero-badges {
    justify-content: center;
  }
  
  .hero-btns {
    justify-content: center;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-content p {
    margin: 0 auto 1.5rem;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 2rem 1rem;
  }
  
  .about-vm {
    grid-template-columns: 1fr;
  }
  
  .hero-badge {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 1.6rem;
  }
}
/* ============================================================
   IMPROVED LOGO STYLES - Better Look
   ============================================================ */

/* Logo Container */
.lke-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 10px;
}

/* Logo Image */
.lke-logo-img {
  height: 48px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.lke-logo-img:hover {
  transform: scale(1.03);
  opacity: 0.95;
}

/* Fallback (text logo) */
.lke-logo-fallback {
  display: none;
  align-items: center;
  gap: 10px;
}

.lke-logo-fallback .lke-logo-icon {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--dark);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.lke-logo-fallback .lke-logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.5px;
}

.lke-logo-fallback .lke-logo-text span {
  color: var(--primary);
}

/* Hover effect on fallback */
.lke-logo:hover .lke-logo-fallback .lke-logo-icon {
  background: var(--primary-hover);
  transform: scale(1.05);
}

/* ============================================================
   MOBILE RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .lke-logo-img {
    height: 38px;
    max-width: 140px;
  }
  
  .lke-logo-fallback .lke-logo-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
  
  .lke-logo-fallback .lke-logo-text {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .lke-logo-img {
    height: 32px;
    max-width: 120px;
  }
}
:root {
  /* ── Brand Colors ─────────────────────────────────────── */
  --primary:        #20d420;          /* Solar yellow — main accent    */
  --primary-hover:  #d97706;          /* Yellow hover / darker         */
  --primary-light:  #04397a;          /* Light yellow background       */
  --primary-bg:     rgba(245,158,11,0.08); /* Yellow card background   */

  /* ── Dark / Navy ──────────────────────────────────────── */
  --dark:           #0c1e35;             /* Main dark bg (header/footer)  */
  --dark-2:         #0f2d4a;          /* Section dark bg               */
  --dark-3:         #1a3050;          /* Borders inside dark bg        */
  --dark-card:      #1e293b;          /* Dark card bg                  */

  /* ── Text ─────────────────────────────────────────────── */
  --text:           #1e293b;          /* Main body text                */
  --text-alt:       #475569;          /* Paragraph text                */
  --text-muted:     #64748b;          /* Muted / secondary text        */
  --text-light:     #94a3b8;          /* Light text on dark bg         */

  /* ── Backgrounds ──────────────────────────────────────── */
  --white:          #ffffff;            /* Main bg                       */
  --bg-light:       #f9fafb;          /* Alternate section bg          */
  --border:         #e2e8f0;          /* Card / input borders          */
  --border-light:   #e8ecf0;          /* Lighter border variant        */

  /* ── Social Brand Colors ──────────────────────────────── */
  --wa-green:       #25D366;
  --fb-blue:        #1877F2;
  --li-blue:        #0A66C2;
  --tw-blue:        #1DA1F2;
  --ig-gradient:    linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
  --yt-red:         #FF0000;
}

/* ============================================================
   GLOBAL RESET & BASE
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
}
a { text-decoration: none; }
img { display: block; max-width: 100%; }

/* ============================================================
   HEADER
   ============================================================ */
.lke-header {
  background: linear-gradient(135deg, #10247D, #035221);
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.lke-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.85rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.lke-logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
}
.lke-logo-icon {
  width: 42px; height: 42px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; color: var(--dark); flex-shrink: 0;
}
.lke-logo-text { font-size: 1.3rem; font-weight: 800; color: var(--white); letter-spacing: 0.3px; }
.lke-logo-text span { color: var(--primary); }
.lke-nav ul {
  list-style: none;
  display: flex; align-items: center; gap: 2rem;
}
.lke-nav ul a {
  color: #e5e7eb;
  font-weight: 500; font-size: 0.95rem;
  transition: color 0.2s;
}
.lke-nav ul a:hover,
.lke-nav ul a.active { color: var(--primary); }
.lke-hdr-cta {
  background: var(--primary);
  color: var(--dark);
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  font-weight: 700; font-size: 0.92rem;
  display: flex; align-items: center; gap: 0.4rem;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.lke-hdr-cta:hover { background: var(--primary-hover); transform: translateY(-1px); }

/* Hamburger */
.lke-hamburger {
  display: none;
  background: none; border: none;
  color: var(--white); font-size: 1.5rem; cursor: pointer;
  padding: 0.2rem 0.4rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.lke-footer {
  background: linear-gradient(135deg, #10247D, #035221);
  color: var(--text-light);
  padding: 4rem 2rem 0;
}
.lke-footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--dark-3);
}
.lke-footer-brand .lke-footer-logo {
  display: flex; align-items: center; gap: 0.55rem;
  margin-bottom: 1rem; text-decoration: none;
}
.lke-footer-logo-icon {
  width: 38px; height: 38px;
  background: var(--primary); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; color: var(--dark); flex-shrink: 0;
}
.lke-footer-logo-text { font-size: 1.2rem; font-weight: 800; color: var(--white); }
.lke-footer-logo-text span { color: var(--primary); }
.lke-footer-brand p { font-size: 0.83rem; line-height: 1.7; margin-bottom: 1.2rem; }
.lke-footer-social { display: flex; gap: 0.6rem; }
.lke-footer-social a {
  width: 34px; height: 34px;
  background: #209c02; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-light); font-size: 0.85rem;
  transition: background 0.2s, color 0.2s;
}
.lke-footer-social a:hover { color: var(--white); }
.lke-footer-social a:nth-child(1):hover { background: var(--fb-blue); }
.lke-footer-social a:nth-child(2):hover { background: var(--ig-gradient); }
.lke-footer-social a:nth-child(3):hover { background: var(--li-blue); }
.lke-footer-social a:nth-child(4):hover { background: var(--wa-green); }
.lke-footer-col h4 { color: var(--white); font-size: 1rem; font-weight: 700; margin-bottom: 1.2rem; }
.lke-footer-col ul { list-style: none; }
.lke-footer-col ul li { margin-bottom: 0.6rem; }
.lke-footer-col ul li a {
  color: var(--text-light); font-size: 0.85rem;
  transition: color 0.2s;
}
.lke-footer-col ul li a:hover { color: var(--primary); }
.lke-footer-bottom {
  max-width: 1280px; margin: 0 auto;
  padding: 1.2rem 0;
  text-align: center; font-size: 0.82rem; color: var(--text-muted);
}
.lke-footer-bottom a {
  color: var(--primary); font-weight: 600; transition: opacity 0.2s;
}
.lke-footer-bottom a:hover { opacity: 0.8; }

/* ============================================================
   SHARED UTILITIES
   ============================================================ */
.lke-btn-yellow {
  background: var(--primary); color: var(--dark);
  padding: 0.75rem 1.8rem; border-radius: 6px;
  font-weight: 700; font-size: 0.95rem;
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: background 0.2s, transform 0.15s;
  border: none; cursor: pointer;
}
.lke-btn-yellow:hover { background: var(--primary-hover); transform: translateY(-2px); }
.lke-btn-outline {
  background: transparent; color: var(--text);
  padding: 0.75rem 1.8rem; border-radius: 6px;
  font-weight: 600; font-size: 0.95rem;
  border: 2px solid var(--border);
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: border-color 0.2s, transform 0.15s;
}
.lke-btn-outline:hover { border-color: var(--primary); transform: translateY(-2px); }
.lke-btn-dark {
  background: var(--dark); color: var(--white);
  padding: 0.75rem 1.8rem; border-radius: 6px;
  font-weight: 700;
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: background 0.2s;
}
.lke-btn-dark:hover { background: #1a3050; }
.lke-sec-title {
  font-size: 2rem; font-weight: 800; text-align: center;
  color: var(--text); margin-bottom: 0.4rem;
}
.lke-sec-line {
  width: 50px; height: 3px;
  background: var(--primary);
  margin: 0.5rem auto 1.2rem; border-radius: 10px;
}
.lke-sec-sub {
  text-align: center; color: var(--text-muted);
  max-width: 600px; margin: 0 auto; font-size: 0.95rem;
}
.lke-wrap { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.lke-sec { padding: 5rem 2rem; }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.float-wa {
  position: fixed;
  bottom: 90px; right: 24px;
  z-index: 9999;
  width: 54px; height: 54px;
  background: var(--wa-green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--white);
  box-shadow: 0 6px 20px rgba(37,211,102,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: wa-pulse 2.5s infinite;
}
.float-wa:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,0.6); }
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 6px 20px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.3); }
  50%      { box-shadow: 0 6px 20px rgba(37,211,102,0.45), 0 0 0 10px rgba(37,211,102,0); }
}
.float-wa-tooltip {
  position: absolute; right: 62px;
  background: var(--dark); color: var(--white);
  font-size: 0.75rem; font-weight: 600;
  padding: 0.35rem 0.8rem; border-radius: 6px;
  white-space: nowrap; opacity: 0; pointer-events: none;
  transition: opacity 0.2s;
}
.float-wa-tooltip::after {
  content: ''; position: absolute;
  right: -5px; top: 50%; transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--dark);
}
.float-wa:hover .float-wa-tooltip { opacity: 1; }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  width: 46px; height: 46px;
  background: var(--primary); color: var(--dark);
  border: none; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; cursor: pointer;
  box-shadow: 0 4px 16px rgba(245,158,11,0.35);
  transition: background 0.2s, transform 0.2s, opacity 0.3s;
  opacity: 0; pointer-events: none;
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--primary-hover); transform: translateY(-3px); }

/* ============================================================
   MOBILE RESPONSIVE — GLOBAL
   ============================================================ */

/* ── Header ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .lke-nav { display: none; }
  .lke-nav.open {
    display: flex;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--dark);
    padding: 1rem 2rem 1.5rem;
    border-top: 1px solid var(--dark-3);
    z-index: 999;
  }
  .lke-nav.open ul { flex-direction: column; gap: 1rem; width: 100%; }
  .lke-nav.open ul a { font-size: 1rem; }
  .lke-header { position: relative; }
  .lke-hamburger { display: block; }
}
@media (max-width: 480px) {
  .lke-hdr-cta { padding: 0.5rem 1rem; font-size: 0.85rem; }
  .lke-logo-text { font-size: 1.1rem; }
  .lke-header-inner { padding: 0.75rem 1rem; }
}

/* ── Footer ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .lke-footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .lke-footer-inner { grid-template-columns: 1fr; }
  .lke-footer-inner > * { justify-self: center; }
  .lke-footer-brand, .lke-footer-col { text-align: center; }
  .lke-footer-social { justify-content: center; }
  .lke-footer { padding: 3rem 1.2rem 0; }
}

/* ── Floating Buttons ────────────────────────────────────── */
@media (max-width: 480px) {
  .float-wa { width: 48px; height: 48px; font-size: 1.3rem; bottom: 80px; right: 16px; }
  .back-to-top { width: 40px; height: 40px; font-size: 1rem; bottom: 20px; right: 16px; }
}

/* ============================================================
   MOBILE RESPONSIVE — SOLUTIONS PAGE
   ============================================================ */
@media (max-width: 1100px) {
  .sol-product-grid { grid-template-columns: repeat(3,1fr) !important; }
  .sol-industry-grid { grid-template-columns: repeat(4,1fr); }
  .sol-why-grid { grid-template-columns: repeat(4,1fr) !important; }
  .sol-steps { grid-template-columns: repeat(4,1fr); }
  .sol-steps::before { display: none; }
}
@media (max-width: 900px) {
  .sol-hero-content h1 { font-size: 2.2rem !important; }
  .sol-2col { grid-template-columns: 1fr !important; }
  .sol-product-grid { grid-template-columns: repeat(2,1fr) !important; }
  .sol-industry-grid { grid-template-columns: repeat(4,1fr); }
  .sol-why-grid { grid-template-columns: repeat(2,1fr) !important; }
  .sol-trading-grid { grid-template-columns: 1fr !important; }
  .sol-steps { grid-template-columns: repeat(3,1fr); }
  .sol-support-card { flex-direction: column; }
  .sol-process { justify-content: flex-start; overflow-x: auto; }
  .sol-num-label h2 { font-size: 1.1rem; }
}
@media (max-width: 600px) {
  .sol-hero { padding: 4rem 1.2rem !important; min-height: auto !important; }
  .sol-hero-content h1 { font-size: 1.7rem !important; }
  .sol-hero-btns { flex-direction: column; align-items: center; }
  .sol-hero-btns a { width: 100%; justify-content: center; }
  .sol-hero-tags { justify-content: center; }
  .sol-hero-tag { font-size: 0.72rem; }
  .sol-sec { padding: 3rem 1.2rem !important; }
  .sol-product-grid { grid-template-columns: repeat(2,1fr) !important; }
  .sol-img-grid { grid-template-columns: 1fr !important; }
  .sol-industry-grid { grid-template-columns: repeat(2,1fr); }
  .sol-why-grid { grid-template-columns: repeat(2,1fr) !important; }
  .sol-steps { grid-template-columns: repeat(2,1fr); }
  .sol-checklist { grid-template-columns: 1fr !important; }
  .sol-save-card { flex-direction: column; text-align: center; }
  .sol-panel { padding: 1.4rem !important; }
  .sol-heading { font-size: 1.5rem !important; }
  /* Quick nav: normal flow on mobile, scroll horizontally */
  .sol-quick-nav { position: static !important; top: auto !important; padding: 0.6rem 1rem !important; }
  .sol-quick-nav-inner { flex-wrap: nowrap !important; overflow-x: auto !important; justify-content: flex-start !important; -webkit-overflow-scrolling: touch; padding-bottom: 0.2rem; }
  .sol-quick-nav-inner::-webkit-scrollbar { display: none; }
  /* Trading cards: single column */
  .sol-trading-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 380px) {
  .sol-product-grid { grid-template-columns: 1fr !important; }
  .sol-img-grid { grid-template-columns: 1fr !important; }
  .sol-why-grid { grid-template-columns: 1fr !important; }
}

/* ============================================================ 
   MOBILE RESPONSIVE — INDEX PAGE
   ============================================================ */
@media (max-width: 1100px) {
  .why-grid { grid-template-columns: repeat(3,1fr); }
  .services-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 900px) {
  .hero { min-height: auto !important; padding: 2rem 0; }
  .hero-inner { grid-template-columns: 1fr !important; gap: 2rem; }
  .hero-content h1 { font-size: 2.2rem !important; }
  .hero-img-wrap img { height: 280px !important; }
  .about-inner { grid-template-columns: 1fr !important; gap: 2.5rem; }
  .about-img-main img { height: 280px !important; }
  .faq-wrap h2 { font-size: 1.6rem; }
  .shq-inner { grid-template-columns: 1fr !important; gap: 2.5rem; }
  .shq-content h2 { font-size: 1.7rem !important; }
  .contact-bar-inner { flex-wrap: wrap; gap: 1.5rem; }
  .how-steps { grid-template-columns: repeat(3,1fr) !important; }
  .how-steps::before { display: none; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: 1fr !important; }
  .services-grid { grid-template-columns: 1fr !important; }
  .values-grid { grid-template-columns: 1fr !important; gap: 1rem !important; }
}
@media (max-width: 600px) {
  .lke-sec { padding: 3rem 1.2rem !important; }
  .lke-sec-title { font-size: 1.6rem; }
  .hero-content h1 { font-size: 1.9rem !important; }
  .hero-btns { flex-direction: column; }
  .hero-btns a { width: 100%; justify-content: center; }
  .hero-badges { gap: 1rem; }
  .hero-img-wrap img { height: 240px !important; }
  .hero-leaf { display: none; }
  .about-title { font-size: 1.5rem; }
  .about-img-main img { height: 230px !important; }
  .about-vm { grid-template-columns: 1fr !important; }
  .about-float-card { display: none; }
  .why-grid { display: grid !important; grid-template-columns: 1fr !important; gap: 1rem !important; padding: 0.4rem 0.2rem 1.2rem !important; overflow: visible !important; scroll-snap-type: none !important; }
  .why-grid::-webkit-scrollbar { display: none; }
  .why-card { flex: none !important; width: auto !important; scroll-snap-align: none !important; padding: 1.3rem 0.9rem !important; text-align: center !important; }
  .why-card h3, .why-card p { text-align: center !important; }
  .how-steps { grid-template-columns: repeat(2,1fr) !important; gap: 1.2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card-body, .service-card-body h3, .service-card-body p { text-align: center !important; }
  .values-grid { grid-template-columns: 1fr; gap: 1rem; }
  .value-item, .value-item h4, .value-item p { text-align: center !important; }
  .value-item { padding: 1.4rem 1rem; }
  .contact-bar-inner { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
  .contact-bar-inner .lke-btn-yellow { width: 100%; justify-content: center; }
  .shq-btns { flex-direction: column; }
  .shq-btns a { width: 100%; justify-content: center; }
  .shq-form-row { grid-template-columns: 1fr !important; }
  .shq-form-card { padding: 1.5rem 1.2rem !important; }
  .faq-sec { padding: 3rem 1.2rem !important; }
  .faq-wrap h2 { font-size: 1.4rem; }
  .team-grid { grid-template-columns: repeat(2,1fr) !important; }
}
@media (max-width: 380px) {
  .hero-content h1 { font-size: 1.6rem !important; }
  .why-card { flex: 0 0 96%; }
  .how-steps { grid-template-columns: 1fr !important; }
  .services-grid { grid-template-columns: 1fr !important; }
  .values-grid { grid-template-columns: 1fr !important; }
  .team-grid { grid-template-columns: 1fr !important; }
}

/* ============================================================
   MOBILE RESPONSIVE — ABOUT PAGE
   ============================================================ */
@media (max-width: 900px) {
  .ab-hero-content h1 { font-size: 2rem !important; }
  .ab-intro-grid { grid-template-columns: 1fr !important; }
  .ab-mv-grid { grid-template-columns: 1fr !important; }
  .ab-services-grid { grid-template-columns: repeat(2,1fr) !important; }
  .ab-team-grid { grid-template-columns: repeat(2,1fr) !important; }
  .ab-testi-grid { grid-template-columns: 1fr !important; }
  .ab-stats-inner { grid-template-columns: repeat(2,1fr) !important; }
  .ab-why-grid { grid-template-columns: repeat(3,1fr) !important; }
  .ab-tl-v { padding-left: 2rem; }
  .ab-tl-v-dot { left: -2rem; }
  .ab-cert-grid { grid-template-columns: repeat(2,1fr) !important; }
}
@media (max-width: 600px) {
  .ab-sec { padding: 3rem 1.2rem !important; }
  .ab-hero-content h1 { font-size: 1.7rem !important; }
  .ab-hero-btns { flex-direction: column; align-items: center; }
  .ab-hero-btns a { width: 100%; justify-content: center; }
  .ab-why-grid { grid-template-columns: repeat(2,1fr) !important; }
  .ab-services-grid { grid-template-columns: 1fr !important; }
  .ab-team-grid { grid-template-columns: 1fr !important; }
  .ab-cert-grid { grid-template-columns: 1fr !important; }
  .ab-stats-inner { grid-template-columns: repeat(2,1fr) !important; }
  .ab-stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 1rem; }
  .ab-stat-item:last-child { border-bottom: none; }
  .ab-testi-grid { grid-template-columns: 1fr !important; }
  .ab-stat-row { grid-template-columns: 1fr !important; }
  .ab-tl-v { padding-left: 1.8rem; }
  .ab-journey { padding: 3rem 1.2rem !important; }
}
@media (max-width: 380px) {
  .ab-why-grid { grid-template-columns: 1fr !important; }
}

/* ============================================================
   MOBILE RESPONSIVE — CONTACT PAGE
   ============================================================ */
@media (max-width: 900px) {
  .ct-hero-content h1 { font-size: 2rem !important; }
  .ct-info-inner { grid-template-columns: repeat(2,1fr) !important; }
  .ct-main-inner { grid-template-columns: 1fr !important; }
}
@media (max-width: 600px) {
  .ct-hero { padding: 3.5rem 1.2rem !important; min-height: auto !important; }
  .ct-hero-content h1 { font-size: 1.6rem !important; }
  .ct-hero-btns { flex-direction: column; align-items: center; }
  .ct-hero-btns a { width: 100%; justify-content: center; }
  .ct-info-inner { grid-template-columns: 1fr !important; }
  .ct-info-card { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.1) !important; }
  .ct-info-card:last-child { border-bottom: none !important; }
  .ct-form-row { grid-template-columns: 1fr !important; }
  .ct-form-card { padding: 1.5rem 1.2rem !important; }
  .ct-git-card { padding: 1.5rem 1.2rem !important; }
  .ct-faq-wrap h2 { font-size: 1.4rem; }
  .ct-cta h2 { font-size: 1.5rem !important; }
}
.ct-main {
  padding: 4.5rem 2rem;
  background: linear-gradient(135deg, #f0f4ff 0%, #f9fafb 50%, #fff7ed 100%);
  position: relative;
  scroll-margin-top: 72px;
}
.about-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
/* Image Column */
.about-img-col {
  position: relative;
}
.about-img-main {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 55px rgba(0,0,0,0.13);
}
.about-img-main img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}
/* Floating mission card */
.about-float-card {
  position: absolute;
  bottom: -10px;
  right: -10px;
  background: var(--dark);
  color: var(--white);
  border-radius: 16px;
  padding: 1.1rem 1.4rem;
  z-index: 2;
  min-width: 170px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.about-float-card .afc-icon {
  width: 38px;
  height: 38px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 0.6rem;
}
.about-float-card strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 0.2rem;
}
.about-float-card span {
  font-size: 0.78rem;
  color: var(--text-light);
}
/* Content Column */
.about-tag {
  display: inline-block;
  background: var(--primary);
  color: var(--dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 30px;
  margin-bottom: 1rem;
}
.about-title {
  font-size: 2rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 0.5rem;
}
.about-line {
  width: 50px;
  height: 3px;
  background: var(--primary);
  border-radius: 10px;
  margin: 0.8rem 0 1.2rem;
}
.about-desc {
  color: var(--text-alt);
  font-size: 0.96rem;
  line-height: 1.8;
  margin-bottom: 1.8rem;
}
/* Vision & Mission pills */
.about-vm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.8rem;
}
.about-vm-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.1rem;
}
.about-vm-card .avm-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 0.6rem;
}
.about-vm-card h4 {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.3rem;
}
.about-vm-card p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}
/* Feature Points */
.about-features {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.8rem;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}
.about-feature-icon {
  width: 28px;
  height: 28px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--dark);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 3px;
}
.about-feature strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.15rem;
}
.about-feature p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-float-card { right: 10px; bottom: 10px; }
}
@media (max-width: 480px) {
  .about-title { font-size: 1.6rem; }
  .about-img-main img { height: 260px; }
  .about-vm { grid-template-columns: 1fr; }
  .about-float-card { display: none; }
}

/* ============================================================
   2. WHY CHOOSE SOLAR ENERGY
============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.why-card {
  background: #fff;
  border: 1.5px solid #f0f2f5;
  border-radius: 20px;
  padding: 2rem;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.09);
}
/* individual accent colours via data-color */
.why-card[data-color="green"]:hover  { border-color: #22c55e; }
.why-card[data-color="yellow"]:hover { border-color: var(--primary); }
.why-card[data-color="blue"]:hover   { border-color: #3b82f6; }
.why-card[data-color="purple"]:hover { border-color: #a855f7; }
.why-card[data-color="slate"]:hover  { border-color: var(--text-muted); }
.why-card[data-color="orange"]:hover { border-color: #f97316; }

.why-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 1.4rem;
}
/* icon colours */
.why-icon.ic-green  { background: #f0fdf4; color: #16a34a; }
.why-icon.ic-yellow { background: #fffbeb; color: var(--primary); }
.why-icon.ic-blue   { background: #eff6ff; color: #2563eb; }
.why-icon.ic-purple { background: #faf5ff; color: #9333ea; }
.why-icon.ic-slate  { background: #f1f5f9; color: var(--text-alt); }
.why-icon.ic-orange { background: #fff7ed; color: #ea580c; }

.why-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.6rem;
}
.why-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   3. HOW IT WORKS
============================================================ */
.how-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin-top: 3rem;
  position: relative;
}
/* single dashed connecting line behind all icons */
.how-steps::before {
  content: '';
  position: absolute;
  top: 34px;
  left: calc(100% / 12);
  right: calc(100% / 12);
  border-top: 2px dashed var(--primary);
  z-index: 0;
}
.how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}
.how-step-icon {
  width: 68px;
  height: 68px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--dark);
  background: #fff;
  margin-bottom: 0.9rem;
}
.how-step h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.25rem;
}
.how-step span {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.how-step-num {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.15rem;
}

/* ============================================================
   4. OUR SERVICES
============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
  margin-top: 2.5rem;
}
.service-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}
.service-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.service-card-body {
  padding: 1rem;
  background: #fff;
}
.service-card-body h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.3rem;
}
.service-card-body p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ============================================================
   5. OUR VALUES  — Solar palette: deep navy sky + sun yellow
============================================================ */
.values-sec {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 50%, var(--dark) 100%);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}
/* decorative sun glow */
.values-sec::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(245,158,11,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.values-sec::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(245,158,11,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.values-sec .lke-sec-title { color: var(--white); position: relative; z-index: 1; }
.values-sec .lke-sec-line  { background: var(--primary); position: relative; z-index: 1; }
.values-sec .lke-sec-sub   { color: var(--text-light); position: relative; z-index: 1; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.value-item {
  text-align: center;
  padding: 2.2rem 1.5rem;
  border: 1px solid rgba(245,158,11,0.15);
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
  align-items: center;
  backdrop-filter: blur(4px);
}
.value-item:hover {
  border-color: var(--primary);
  background: rgba(245,158,11,0.08);
  transform: translateY(-6px);
}
.value-icon {
  width: 72px;
  height: 72px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 1.2rem;
  transition: background 0.25s, color 0.25s;
}
.value-item:hover .value-icon {
  background: var(--primary);
  color: var(--dark);
}
.value-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.value-item p {
  font-size: 0.83rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   6. FAQ SECTION (full-width accordion)
============================================================ */
.faq-sec {
  padding: 5rem 2rem;
}
.faq-wrap {
  max-width: 860px;
  margin: 0 auto;
}
.faq-wrap h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  text-align: center;
  margin-bottom: 0.4rem;
}
/* card-style items */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.faq-item {
  background: #fff;
  border: 1.5px solid var(--border-light);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item.open {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(245,158,11,0.1);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.4rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--dark);
  user-select: none;
  gap: 1rem;
}
.faq-question .faq-icon {
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.25s, background 0.2s, color 0.2s;
}
.faq-item.open .faq-question .faq-icon {
  background: var(--primary);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  display: none;
  padding: 0 1.4rem 1.2rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  border-top: 1px solid #f3f4f6;
}
.faq-item.open .faq-answer { display: block; }

/* ============================================================
   7. STILL HAVE QUESTIONS — full contact section
============================================================ */
.shq-sec {
  position: relative;
  padding: 6rem 2rem;
  overflow: hidden;
}
/* Background image + overlay */
.shq-bg {
  position: absolute;
  inset: 0;
  background: url('https://picsum.photos/seed/solarpanel/1920/900') center/cover no-repeat;
  z-index: 0;
}
.shq-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12,30,53,0.93) 0%, rgba(15,45,74,0.88) 100%);
}
/* Section header */
.shq-header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 3.5rem;
}
.shq-header h2 {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--text-light);
  margin-bottom: 0.8rem;
}
.shq-header h2 span { color: var(--primary); }
.shq-header p {
  color: var(--text-light);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
/* Body grid */
.shq-body {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 2.5rem;
  align-items: start;
  position: relative;
  z-index: 1;
}
/* ---- LEFT: Contact info cards ---- */
.shq-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.shq-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 1.3rem 1.5rem;
  backdrop-filter: blur(6px);
  transition: background-color 0.2s, border-color 0.2s, transform 0.2s;
  text-decoration: none;
}
.shq-info-card:hover {
  background: rgba(245,158,11,0.1);
  border-color: rgba(245,158,11,0.5);
  transform: translateX(4px);
}
.shq-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}
.shq-info-icon.email { background: #2563eb; }
.shq-info-icon.call  { background: #16a34a; }
.shq-info-icon.visit { background: #ef4444; }
.shq-info-icon.whatsapp { background: #25d366; }
.shq-info-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.shq-info-text p {
  font-size: 0.82rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.5;
}
/* ---- RIGHT: Contact Form ---- */
.shq-form-card {
  background: #fff;
  border-radius: 20px;
  padding: 2.2rem 2rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.shq-form-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1.5rem;
}
.shq-form-group {
  margin-bottom: 1.2rem;
}
.shq-form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.4rem;
}
.shq-form-group label span { color: var(--primary); }
.shq-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.shq-form-group input,
.shq-form-group select,
.shq-form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.shq-form-group input:focus,
.shq-form-group select:focus,
.shq-form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(245,158,11,0.12);
}
.shq-form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%230c1e35' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.shq-form-group textarea {
  height: 120px;
  resize: vertical;
}
.shq-form-group input::placeholder,
.shq-form-group textarea::placeholder { color: #a0aec0; }
.shq-submit-btn {
  width: 100%;
  background: var(--primary);
  color: var(--dark);
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: background 0.2s, transform 0.15s;
  margin-top: 0.5rem;
}
.shq-submit-btn:hover { background: var(--primary-hover); transform: translateY(-2px); }

/* Responsive */
@media (max-width: 900px) {
  .shq-body          { grid-template-columns: 1fr; }
  .shq-header h2     { font-size: 2rem; }
}
@media (max-width: 600px) {
  .shq-sec           { padding: 4rem 1.2rem; }
  .shq-header h2     { font-size: 1.6rem; }
  .shq-form-row      { grid-template-columns: 1fr; }
  .shq-form-card     { padding: 1.5rem 1.2rem; }
}

/* ============================================================
   8. GET IN TOUCH BAR
============================================================ */
.contact-bar {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 2rem;
}
.contact-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
.contact-bar-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.contact-bar-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--dark);
  flex-shrink: 0;
}
.contact-bar-text strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.1rem;
}
.contact-bar-text span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ============================================================
   RESPONSIVE — FULL MOBILE FRIENDLY
============================================================ */

/* Tablet: ≤1100px */
@media (max-width: 1100px) {
  /* why-grid already 3-col — no change needed at 1100px */
  .services-grid     { grid-template-columns: repeat(3, 1fr); }
  .how-steps         { grid-template-columns: repeat(3, 1fr); }
  .how-steps::before { display: none; }
  /* values already 3-col — no change needed */
}

/* Small tablet: ≤900px */
@media (max-width: 900px) {
  /* Hero */
  .hero               { min-height: auto; padding: 2rem 0; }
  .hero-inner         { grid-template-columns: 1fr; gap: 2rem; }
  .hero-content h1    { font-size: 2.2rem; }
  .hero-content p     { max-width: 100%; }
  .hero-img-wrap img  { height: 300px; }

  /* About */
  .about-inner        { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img-main img { height: 300px; }
  .about-float-card   { right: 10px; bottom: 10px; }

  /* How It Works */
  .how-steps          { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .how-steps::before  { display: none; }

  /* FAQ */
  .faq-wrap h2        { font-size: 1.6rem; }

  /* Contact bar */
  .contact-bar-inner  { flex-wrap: wrap; gap: 1.5rem; }
}

/* Mobile: ≤600px */
@media (max-width: 600px) {
  .lke-sec            { padding: 3rem 1.2rem; }
  .lke-sec-title      { font-size: 1.6rem; }

  /* Hero */
  .hero-content h1    { font-size: 1.9rem; }
  .hero-btns          { flex-direction: column; }
  .hero-btns a        { width: 100%; justify-content: center; }
  .hero-badges        { gap: 1rem; }
  .hero-img-wrap img  { height: 240px; }
  .hero-leaf          { display: none; }

  /* About */
  .about-title        { font-size: 1.5rem; }
  .about-img-main img { height: 230px; }
  .about-vm           { grid-template-columns: 1fr; }
  .about-float-card   { display: none; }

  /* Why — single-column card stack on mobile */
  .why-grid { display: grid !important; grid-template-columns: 1fr !important; gap: 1rem !important; padding: 0.4rem 0.2rem 1.2rem !important; overflow: visible !important; scroll-snap-type: none !important; }
  .why-grid::-webkit-scrollbar { display: none; }
  .why-card { flex: none !important; width: auto !important; scroll-snap-align: none !important; padding: 1.6rem !important; }
  .why-icon           { width: 50px; height: 50px; font-size: 1.1rem; margin: 0 auto 1rem; }

  /* How It Works */
  .how-steps          { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }

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

  /* Values */
  .values-grid { grid-template-columns: 1fr; gap: 1rem; }
  .value-item         { padding: 1.4rem 1rem; }
  .value-icon         { width: 56px; height: 56px; font-size: 1.2rem; margin-bottom: 0.9rem; }
  .value-item h4      { font-size: 0.88rem; }
  .value-item p       { font-size: 0.78rem; }

  /* FAQ */
  .faq-wrap           { padding: 0; }
  .faq-wrap h2        { font-size: 1.4rem; }

  /* Contact bar */
  .contact-bar-inner  { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
  .contact-bar-inner .lke-btn-yellow { width: 100%; justify-content: center; }
}

/* Extra small: ≤380px */
@media (max-width: 380px) {
  .hero-content h1    { font-size: 1.6rem; }
  .why-card           { flex: 0 0 96%; }
  .how-steps          { grid-template-columns: 1fr; }
  .services-grid      { grid-template-columns: 1fr; }
  .values-grid        { grid-template-columns: 1fr; gap: 0.8rem; }
}

/* ============================================================
   FROM: about.php
============================================================ */

/* ===== ABOUT PAGE ===== */

/* HERO — centered */
.ab-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 2rem;
  overflow: hidden;
  text-align: center;
}
.ab-hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1509391366360-2e959784a276?w=1920&h=800&fit=crop&auto=format') center/cover no-repeat;
}
.ab-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(12, 30, 53, 0.83);
}
.ab-hero-content { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.ab-hero-content h1 { font-size: 2.8rem; font-weight: 900; color: var(--white); margin-bottom: 0.8rem; }
.ab-hero-content h1 span { color: var(--primary); }
.ab-hero-content p { color: var(--text-light); font-size: 1rem; margin-bottom: 1.8rem; line-height: 1.7; }
.ab-hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.ab-btn-yellow { background: var(--primary); color: var(--dark); padding: 0.75rem 1.8rem; border-radius: 6px; font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; transition: background 0.2s; }
.ab-btn-yellow:hover { background: var(--primary-hover); }
.ab-btn-outline { background: transparent; color: var(--white); padding: 0.75rem 1.8rem; border-radius: 6px; font-weight: 600; border: 2px solid rgba(255,255,255,0.35); text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; transition: border-color 0.2s; }
.ab-btn-outline:hover { border-color: var(--primary); color: var(--primary); }

/* Section utility */
.ab-sec { padding: 5rem 2rem; }
.ab-wrap { max-width: 1280px; margin: 0 auto; }
.ab-title { font-size: 1.9rem; font-weight: 900; color: var(--dark); margin-bottom: 0.4rem; }
.ab-title-center { text-align: center; }
.ab-line { width: 50px; height: 3px; background: var(--primary); border-radius: 10px; margin: 0.5rem 0 1.5rem; }
.ab-line-center { margin-left: auto; margin-right: auto; }
.ab-sub-center { text-align: center; color: var(--text-muted); font-size: 0.95rem; max-width: 600px; margin: 0 auto 0.5rem; }

/* About intro */
.ab-intro-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3.5rem; align-items: center; }
.ab-intro-img { border-radius: 20px; overflow: hidden; box-shadow: 0 16px 50px rgba(0,0,0,0.13); position: relative; }
.ab-intro-img img { width: 100%; height: 420px; object-fit: cover; display: block; }
.ab-founded-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: var(--primary); color: var(--dark);
  padding: 0.8rem 1.2rem; border-radius: 12px;
  font-weight: 800; font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(245,158,11,0.4);
}
.ab-founded-badge span { display: block; font-size: 0.72rem; font-weight: 600; }
.ab-intro-tag { display: inline-block; background: var(--primary); color: var(--dark); font-size: 0.78rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 0.3rem 1rem; border-radius: 30px; margin-bottom: 1rem; }
.ab-intro-desc { color: var(--text-alt); font-size: 0.95rem; line-height: 1.85; margin-bottom: 1.2rem; }
.ab-intro-points { list-style: none; margin-bottom: 1.8rem; display: flex; flex-direction: column; gap: 0.6rem; }
.ab-intro-points li { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.88rem; color: var(--text-alt); }
.ab-intro-points li i { color: var(--primary); margin-top: 3px; flex-shrink: 0; }
.ab-stat-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.ab-stat-box { background: var(--bg-light); border: 1.5px solid var(--border); border-radius: 14px; padding: 1.2rem; text-align: center; }
.ab-stat-box strong { display: block; font-size: 1.6rem; font-weight: 900; color: var(--primary); margin-bottom: 0.2rem; }
.ab-stat-box span { font-size: 0.78rem; color: var(--text-muted); }

/* Journey — vertical timeline style */
.ab-journey { padding: 5rem 2rem; background: var(--bg-light); }
.ab-journey-inner { max-width: 900px; margin: 0 auto; }
.ab-tl-v { position: relative; padding-left: 2.5rem; margin-top: 2rem; }
.ab-tl-v::before { content: ''; position: absolute; left: 17px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--primary), var(--border)); }
.ab-tl-v-item { position: relative; margin-bottom: 2.2rem; }
.ab-tl-v-item:last-child { margin-bottom: 0; }
.ab-tl-v-dot {
  position: absolute; left: -2.5rem;
  width: 36px; height: 36px;
  background: var(--dark); border: 3px solid var(--primary);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; color: var(--primary); flex-shrink: 0;
}
.ab-tl-v-dot.highlight { background: var(--primary); border-color: var(--dark); color: var(--dark); }
.ab-tl-v-body {
  background: #fff; border: 1.5px solid var(--border-light);
  border-radius: 16px; padding: 1.4rem 1.6rem;
  margin-left: 0.8rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.ab-tl-v-item:hover .ab-tl-v-body { border-color: var(--primary); box-shadow: 0 4px 20px rgba(245,158,11,0.1); }
.ab-tl-v-body.highlight-card { border-color: var(--primary); background: #fffbeb; }
.ab-tl-v-year { font-size: 0.78rem; font-weight: 700; color: var(--primary); letter-spacing: 0.5px; margin-bottom: 0.3rem; }
.ab-tl-v-body h4 { font-size: 1rem; font-weight: 800; color: var(--dark); margin-bottom: 0.4rem; }
.ab-tl-v-body p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; margin: 0; }
.ab-tl-v-badge { display: inline-block; background: var(--primary); color: var(--dark); font-size: 0.7rem; font-weight: 700; padding: 0.2rem 0.7rem; border-radius: 20px; margin-bottom: 0.5rem; }

/* Why Choose Us */
.ab-why-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 1.2rem; margin-top: 2rem; }
.ab-why-card { text-align: center; padding: 1.5rem 0.8rem; border: 1.5px solid var(--border-light); border-radius: 16px; background: #fff; transition: border-color 0.2s, transform 0.2s; }
.ab-why-card:hover { border-color: var(--primary); transform: translateY(-4px); }
.ab-why-icon { width: 52px; height: 52px; background: var(--primary-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--primary); margin: 0 auto 0.8rem; }
.ab-why-card h4 { font-size: 0.82rem; font-weight: 700; color: var(--dark); margin-bottom: 0.3rem; }
.ab-why-card p { font-size: 0.74rem; color: var(--text-muted); line-height: 1.4; margin: 0; }

/* Our Services */
.ab-services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 2rem; }
.ab-svc-card { border: 1.5px solid var(--border-light); border-radius: 18px; overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; }
.ab-svc-card:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(0,0,0,0.09); }
.ab-svc-img { width: 100%; height: 180px; object-fit: cover; display: block; }
.ab-svc-body { padding: 1.3rem; }
.ab-svc-body h3 { font-size: 0.98rem; font-weight: 700; color: var(--dark); margin-bottom: 0.35rem; }
.ab-svc-body p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.55; margin-bottom: 0.9rem; }
.ab-svc-link { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.82rem; font-weight: 700; color: var(--primary); text-decoration: none; }
.ab-svc-link:hover { color: var(--primary-hover); }

/* Mission & Vision — redesigned */
.ab-mv-sec { padding: 5rem 2rem; background: var(--dark); position: relative; overflow: hidden; }
.ab-mv-sec::before { content: ''; position: absolute; top: -80px; right: -80px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(245,158,11,0.15) 0%, transparent 70%); pointer-events: none; }
.ab-mv-sec::after { content: ''; position: absolute; bottom: -60px; left: -60px; width: 240px; height: 240px; background: radial-gradient(circle, rgba(245,158,11,0.1) 0%, transparent 70%); pointer-events: none; }
.ab-mv-header { text-align: center; margin-bottom: 3rem; position: relative; z-index: 1; }
.ab-mv-header h2 { font-size: 2rem; font-weight: 900; color: var(--white); margin-bottom: 0.4rem; }
.ab-mv-header .ab-mv-line { width: 50px; height: 3px; background: var(--primary); border-radius: 10px; margin: 0.5rem auto 1rem; }
.ab-mv-header p { color: var(--text-light); font-size: 0.95rem; max-width: 560px; margin: 0 auto; line-height: 1.7; }
.ab-mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; }
.ab-mv-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 20px;
  padding: 2.2rem;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.ab-mv-card:hover { background: rgba(245,158,11,0.08); border-color: var(--primary); transform: translateY(-4px); }
.ab-mv-icon-wrap {
  width: 64px; height: 64px;
  background: var(--primary); border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--dark);
  margin-bottom: 1.3rem;
}
.ab-mv-card h3 { font-size: 1.2rem; font-weight: 800; color: var(--white); margin-bottom: 0.8rem; }
.ab-mv-card .ab-mv-quote { font-size: 0.92rem; color: var(--primary); font-style: italic; font-weight: 600; margin-bottom: 1rem; line-height: 1.6; }
.ab-mv-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.75; margin: 0; }
.ab-mv-points { list-style: none; margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.ab-mv-points li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.83rem; color: var(--text-light); }
.ab-mv-points li i { color: var(--primary); margin-top: 3px; flex-shrink: 0; }

/* Stats bar */
.ab-stats-bar { background: var(--dark-2); padding: 3rem 2rem; }
.ab-stats-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.ab-stat-item { text-align: center; border-right: 1px solid rgba(255,255,255,0.08); padding: 0.5rem; }
.ab-stat-item:last-child { border-right: none; }
.ab-stat-item i { font-size: 1.6rem; color: var(--primary); margin-bottom: 0.6rem; display: block; }
.ab-stat-item strong { display: block; font-size: 2rem; font-weight: 900; color: var(--white); line-height: 1; margin-bottom: 0.3rem; }
.ab-stat-item span { font-size: 0.8rem; color: var(--text-light); }

/* Team */
.ab-team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.8rem; margin-top: 2rem; }
.ab-team-card { border: 1.5px solid var(--border-light); border-radius: 18px; overflow: hidden; text-align: center; transition: transform 0.2s, box-shadow 0.2s; }
.ab-team-card:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(0,0,0,0.09); }
.ab-team-img { width: 100%; height: 220px; object-fit: cover; object-position: top; display: block; }
.ab-team-body { padding: 1.2rem; }
.ab-team-body h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.15rem; }
.ab-team-body .ab-role { font-size: 0.82rem; color: var(--primary); font-weight: 600; margin-bottom: 0.6rem; }
.ab-team-body p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 0.9rem; }
.ab-team-socials { display: flex; gap: 0.5rem; justify-content: center; }
.ab-team-socials a { width: 30px; height: 30px; background: #f1f5f9; border-radius: 6px; display: flex; align-items: center; justify-content: center; color: var(--dark); font-size: 0.78rem; text-decoration: none; transition: background 0.2s; }
.ab-team-socials a:hover { background: var(--primary); }

/* Certifications */
.ab-cert-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.2rem; margin-top: 2rem; }
.ab-cert-card { border: 1.5px solid var(--border-light); border-radius: 16px; padding: 1.5rem 1.2rem; text-align: center; transition: border-color 0.2s, transform 0.2s; }
.ab-cert-card:hover { border-color: var(--primary); transform: translateY(-3px); }
.ab-cert-icon { width: 52px; height: 52px; background: var(--primary-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--primary); margin: 0 auto 0.9rem; }
.ab-cert-card h4 { font-size: 0.88rem; font-weight: 700; color: var(--dark); margin-bottom: 0.3rem; }
.ab-cert-card p { font-size: 0.76rem; color: var(--text-muted); line-height: 1.5; margin: 0; }

/* Testimonials */
.ab-testi { padding: 5rem 2rem; background: var(--bg-light); }
.ab-testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 2rem; }
.ab-testi-card { background: #fff; border: 1.5px solid var(--border-light); border-radius: 18px; padding: 1.8rem; transition: transform 0.2s, box-shadow 0.2s; }
.ab-testi-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,0.08); }
.ab-testi-stars { color: var(--primary); font-size: 0.85rem; margin-bottom: 1rem; }
.ab-testi-text { font-size: 0.88rem; color: var(--text-alt); line-height: 1.7; margin-bottom: 1.2rem; font-style: italic; }
.ab-testi-author { display: flex; align-items: center; gap: 0.8rem; }
.ab-testi-avatar { width: 40px; height: 40px; background: var(--dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); font-weight: 700; font-size: 0.9rem; flex-shrink: 0; }
.ab-testi-name strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--dark); }
.ab-testi-name span { font-size: 0.76rem; color: var(--text-muted); }

/* CTA */
.ab-cta { background: linear-gradient(135deg,var(--dark),var(--dark-2)); padding: 4.5rem 2rem; text-align: center; position: relative; overflow: hidden; }
.ab-cta::before { content: ''; position: absolute; top: -100px; right: -100px; width: 350px; height: 350px; background: radial-gradient(circle,rgba(245,158,11,0.15) 0%,transparent 70%); pointer-events: none; }
.ab-cta h2 { font-size: 2rem; font-weight: 900; color: var(--white); margin-bottom: 0.6rem; position: relative; z-index: 1; }
.ab-cta p { color: var(--text-light); margin-bottom: 1.8rem; position: relative; z-index: 1; }
.ab-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.ab-cta-btn1 { background: var(--primary); color: var(--dark); padding: 0.85rem 2rem; border-radius: 8px; font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; transition: background 0.2s; }
.ab-cta-btn1:hover { background: var(--primary-hover); }
.ab-cta-btn2 { background: transparent; color: var(--white); padding: 0.85rem 2rem; border-radius: 8px; font-weight: 600; border: 2px solid rgba(255,255,255,0.3); text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; transition: border-color 0.2s; }
.ab-cta-btn2:hover { border-color: var(--primary); color: var(--primary); }

/* Responsive */
@media(max-width:1100px) { .ab-why-grid{grid-template-columns:repeat(3,1fr);} .ab-cert-grid{grid-template-columns:repeat(2,1fr);} }
@media(max-width:900px) {
  .ab-intro-grid{grid-template-columns:1fr;}
  .ab-mv-grid{grid-template-columns:1fr;}
  .ab-services-grid{grid-template-columns:repeat(2,1fr);}
  .ab-team-grid{grid-template-columns:repeat(2,1fr);}
  .ab-testi-grid{grid-template-columns:1fr;}
  .ab-stats-inner{grid-template-columns:repeat(2,1fr);}
  .ab-why-grid{grid-template-columns:repeat(3,1fr);}
  .ab-hero-content h1{font-size:2rem;}
}
@media(max-width:600px) {
  .ab-why-grid{grid-template-columns:repeat(2,1fr);}
  .ab-services-grid{grid-template-columns:1fr;}
  .ab-team-grid{grid-template-columns:1fr;}
  .ab-cert-grid{grid-template-columns:1fr;}
  .ab-stats-inner{grid-template-columns:repeat(2,1fr);}
  .ab-stat-item{border-right:none; border-bottom:1px solid rgba(255,255,255,0.08); padding-bottom:1rem;}
  .ab-hero-content h1{font-size:1.7rem;}
  .ab-hero-btns{flex-direction:column; align-items:center;}
}

/* ============================================================
   FROM: contact.php
============================================================ */

/* ===== CONTACT PAGE ===== */

/* HERO — centered */
.ct-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 2rem;
  overflow: hidden;
  text-align: center;
}
.ct-hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1509391366360-2e959784a276?w=1920&h=700&fit=crop&auto=format') center/cover no-repeat;
}
.ct-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(12, 30, 53, 0.82);
}
.ct-hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.ct-hero-content h1 {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}
.ct-hero-content p {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 1.8rem;
  line-height: 1.7;
}
.ct-hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.ct-btn-solid {
  background: #fff;
  color: var(--dark);
  padding: 0.7rem 1.6rem;
  border-radius: 6px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: background 0.2s;
}
.ct-btn-solid:hover { background: var(--primary); }
.ct-btn-outline-w {
  background: transparent;
  color: var(--white);
  padding: 0.7rem 1.6rem;
  border-radius: 6px;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.4);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.ct-btn-outline-w:hover { border-color: var(--primary); color: var(--primary); }

/* ---- INFO BAR ---- */
.ct-info-bar {
  background: linear-gradient(135deg, #10247D 0%, #035221 100%);
  padding: 0;
  border-bottom: none;
  position: relative;
  overflow: hidden;
}
.ct-info-bar::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.ct-info-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative; z-index: 1;
}
.ct-info-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.2rem 1.5rem;
  border: none;
  border-right: 1px solid rgba(255,255,255,0.1);
  border-radius: 0;
  background: transparent;
  transition: background 0.22s;
}
.ct-info-card:last-child { border-right: none; }
.ct-info-card:hover { background: rgba(255,255,255,0.06); }
.ct-info-circle {
  width: 58px;
  height: 58px;
  background: rgba(245,158,11,0.18);
  border: 2px solid rgba(245,158,11,0.45);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #f59e0b;
  margin-bottom: 1rem;
  transition: background 0.22s, border-color 0.22s;
}
.ct-info-circle.email { background: rgba(37,99,235,0.18); border-color: rgba(37,99,235,0.45); color: #2563eb; }
.ct-info-circle.call { background: rgba(22,163,74,0.18); border-color: rgba(22,163,74,0.45); color: #16a34a; }
.ct-info-circle.visit { background: rgba(239,68,68,0.18); border-color: rgba(239,68,68,0.45); color: #ef4444; }
.ct-info-card:hover .ct-info-circle {
  background: rgba(245,158,11,0.28);
  border-color: #f59e0b;
}
.ct-info-card:hover .ct-info-circle.email {
  background: rgba(37,99,235,0.28);
  border-color: #2563eb;
}
.ct-info-card:hover .ct-info-circle.call {
  background: rgba(22,163,74,0.28);
  border-color: #16a34a;
}
.ct-info-card:hover .ct-info-circle.visit {
  background: rgba(239,68,68,0.28);
  border-color: #ef4444;
}
.ct-info-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.3rem;
}
.ct-info-card .ct-info-sub {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.52);
  margin-bottom: 0.4rem;
}
.ct-info-card .ct-info-val {
  font-size: 0.88rem;
  font-weight: 600;
  color: #f59e0b;
  line-height: 1.55;
}

/* ---- MAIN: FORM + GET IN TOUCH ---- */
.ct-main {
  padding: 4.5rem 2rem;
  background: linear-gradient(135deg, #f0f4ff 0%, #f9fafb 50%, #fff7ed 100%);
  position: relative;
  scroll-margin-top: 72px;
}
.ct-main-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2rem;
  align-items: start;
}

/* Form card */
.ct-form-card {
  background: #fff;
  border-radius: 20px;
  padding: 2.4rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.ct-form-card h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.4rem;
}
.ct-form-card .ct-form-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.6rem;
  line-height: 1.6;
}
.ct-form-card .ct-form-sub span { color: var(--primary); font-weight: 600; }
.ct-fg { margin-bottom: 1.1rem; }
.ct-fg label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.4rem;
}
.ct-fg label span { color: var(--primary); }
.ct-fg input,
.ct-fg select,
.ct-fg textarea {
  width: 100%;
  padding: 0.78rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.ct-fg input:focus,
.ct-fg select:focus,
.ct-fg textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(245,158,11,0.1);
}
.ct-fg input::placeholder,
.ct-fg textarea::placeholder { color: #a0aec0; }
.ct-fg select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%230c1e35' d='M0 0l6 8 6-8z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.ct-fg textarea { height: 130px; resize: vertical; }
.ct-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.ct-submit {
  width: 100%;
  background: var(--dark);
  color: var(--white);
  border: none;
  padding: 0.9rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: background 0.2s, transform 0.15s;
  margin-top: 0.3rem;
}
.ct-submit:hover { background: var(--primary); color: var(--dark); transform: translateY(-2px); }

/* Get in Touch card */
.ct-git-card {
  background: linear-gradient(135deg, #10247D 0%, #035221 100%);
  border-radius: 20px;
  padding: 2.4rem;
  position: relative;
  overflow: hidden;
}
.ct-git-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(245,158,11,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.ct-git-card::after {
  content: '';
  position: absolute;
  bottom: -50px; left: -50px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(245,158,11,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.ct-git-card h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.4rem;
  position: relative; z-index: 1;
}
.ct-git-card .ct-git-sub {
  font-size: 0.83rem;
  color: var(--text-light);
  margin-bottom: 1.8rem;
  line-height: 1.6;
  position: relative; z-index: 1;
}
.ct-git-items { display: flex; flex-direction: column; gap: 1.2rem; position: relative; z-index: 1; }
.ct-git-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ct-git-item:last-of-type { border-bottom: none; padding-bottom: 0; }
.ct-git-icon {
  width: 44px;
  height: 44px;
  background: rgba(245,158,11,0.2);
  border: 1.5px solid rgba(245,158,11,0.45);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #f59e0b;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}
.ct-git-icon.email { background: rgba(37,99,235,0.18); border-color: rgba(37,99,235,0.45); color: #2563eb; }
.ct-git-icon.call { background: rgba(22,163,74,0.18); border-color: rgba(22,163,74,0.45); color: #16a34a; }
.ct-git-icon.visit { background: rgba(239,68,68,0.18); border-color: rgba(239,68,68,0.45); color: #ef4444; }
.ct-git-item:hover .ct-git-icon {
  background: rgba(245,158,11,0.32);
  border-color: #f59e0b;
}
.ct-git-item:hover .ct-git-icon.email {
  background: rgba(37,99,235,0.28);
  border-color: #2563eb;
}
.ct-git-item:hover .ct-git-icon.call {
  background: rgba(22,163,74,0.28);
  border-color: #16a34a;
}
.ct-git-item:hover .ct-git-icon.visit {
  background: rgba(239,68,68,0.28);
  border-color: #ef4444;
}
.ct-git-text strong {
  display: block;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}
.ct-git-text span {
  color: var(--text-light);
  font-size: 0.82rem;
  line-height: 1.5;
}
/* Social row */
.ct-git-social { margin-top: 1.5rem; position: relative; z-index: 1; }
.ct-git-social h4 { color: var(--white); font-size: 0.9rem; font-weight: 700; margin-bottom: 0.8rem; }
.ct-social-row { display: flex; gap: 0.6rem; }
.ct-social-row a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-light); font-size: 0.82rem; text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.ct-social-row a:nth-child(1):hover { background: #1877F2; color: var(--white); border-color: #1877F2; }
.ct-social-row a:nth-child(2):hover { background: #1DA1F2; color: var(--white); border-color: #1DA1F2; }
.ct-social-row a:nth-child(3):hover { background: #0A66C2; color: var(--white); border-color: #0A66C2; }
.ct-social-row a:nth-child(4):hover { background: linear-gradient(45deg,#f09433,#dc2743,#bc1888); color: var(--white); }
.ct-social-row a:nth-child(5):hover { background: #FF0000; color: var(--white); border-color: #FF0000; }

/* MAP */
.ct-map { padding: 0 2rem 4rem; background: var(--bg-light); }
.ct-map-inner { max-width: 1100px; margin: 0 auto; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.ct-map-inner iframe { width: 100%; height: 400px; border: none; display: block; }

/* FAQ */
.ct-faq { padding: 4rem 2rem; background: #fff; }
.ct-faq-wrap { max-width: 820px; margin: 0 auto; }
.ct-faq-wrap h2 { font-size: 1.8rem; font-weight: 800; color: var(--dark); text-align: center; margin-bottom: 0.4rem; }
.ct-faq-line { width: 50px; height: 3px; background: var(--primary); border-radius: 10px; margin: 0.5rem auto 2rem; }
.ct-faq-item { border: 1.5px solid var(--border-light); border-radius: 12px; margin-bottom: 0.75rem; overflow: hidden; transition: border-color 0.2s; }
.ct-faq-item.open { border-color: var(--primary); }
.ct-faq-q { display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.3rem; cursor: pointer; font-weight: 600; font-size: 0.95rem; color: var(--dark); user-select: none; gap: 1rem; }
.ct-faq-q .ct-plus { width: 26px; height: 26px; border: 1.5px solid var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; color: var(--primary); flex-shrink: 0; transition: transform 0.25s, background 0.2s; }
.ct-faq-item.open .ct-faq-q .ct-plus { background: var(--primary); color: var(--white); transform: rotate(45deg); }
.ct-faq-a { display: none; padding: 0 1.3rem 1rem; font-size: 0.87rem; color: var(--text-muted); line-height: 1.7; border-top: 1px solid #f3f4f6; }
.ct-faq-item.open .ct-faq-a { display: block; }

/* CTA */
.ct-cta { position: relative; padding: 5rem 2rem; overflow: hidden; }
.ct-cta-bg { position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1497440001374-f26997328c1b?w=1920&h=600&fit=crop&auto=format') center/cover no-repeat; }
.ct-cta-bg::after { content: ''; position: absolute; inset: 0; background: rgba(12,30,53,0.88); }
.ct-cta-inner { max-width: 800px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.ct-cta h2 { font-size: 2rem; font-weight: 900; color: var(--white); margin-bottom: 0.8rem; }
.ct-cta p { color: var(--text-light); margin-bottom: 1.8rem; font-size: 0.95rem; }
.ct-cta-btn { background: var(--primary); color: var(--dark); padding: 0.9rem 2.2rem; border-radius: 8px; font-weight: 700; font-size: 1rem; display: inline-flex; align-items: center; gap: 0.5rem; text-decoration: none; transition: background 0.2s, transform 0.15s; }
.ct-cta-btn:hover { background: var(--primary-hover); transform: translateY(-2px); }

/* Responsive */
@media (max-width: 900px) {
  .ct-info-inner { grid-template-columns: repeat(2,1fr); }
  .ct-info-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .ct-info-card:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }
  .ct-info-card:nth-last-child(-n+2) { border-bottom: none; }
  .ct-main-inner { grid-template-columns: 1fr; }
  .ct-hero-content h1 { font-size: 2rem; }
}
@media (max-width: 540px) {
  .ct-info-inner { grid-template-columns: 1fr; }
  .ct-form-row { grid-template-columns: 1fr; }
  .ct-hero-content h1 { font-size: 1.6rem; }
  .ct-hero-btns { flex-direction: column; align-items: center; }
}

/* ============================================================
   FROM: solutions.php
============================================================ */

/* ===== SOLUTIONS PAGE ===== */
.sol-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5.5rem 2rem;
  overflow: hidden;
  text-align: center;
}
.sol-hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1473341304170-971dccb5ac1e?w=1920&h=800&fit=crop&auto=format') center/cover no-repeat;
}
.sol-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(12,30,53,0.85);
}
.sol-hero-content {
  position: relative; z-index: 1;
  max-width: 820px; margin: 0 auto;
}
.sol-hero-content h1 {
  font-size: 3rem; font-weight: 900; color: var(--white);
  text-transform: uppercase; line-height: 1.18; margin-bottom: 0.8rem;
}
.sol-hero-content h1 span { color: var(--primary); }
.sol-hero-content .sol-hero-sub {
  color: var(--text-light); font-size: 1rem;
  margin-bottom: 1.2rem; letter-spacing: 0.3px; line-height: 1.6;
}
.sol-hero-tags {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-bottom: 1.5rem; justify-content: center;
}
.sol-hero-tag {
  background: rgba(245,158,11,0.12); color: #fbbf24;
  font-size: 0.8rem; padding: 0.35rem 1rem; border-radius: 20px;
  border: 1px solid rgba(245,158,11,0.25); font-weight: 500;
}
.sol-hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.6rem; justify-content: center; }
.sol-btn-y { background: var(--primary); color: var(--dark); padding: 0.8rem 2rem; border-radius: 6px; font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; transition: background 0.2s, transform 0.15s; }
.sol-btn-y:hover { background: var(--primary-hover); transform: translateY(-2px); }
.sol-btn-o { background: transparent; color: var(--white); padding: 0.8rem 2rem; border-radius: 6px; font-weight: 600; border: 2px solid rgba(255,255,255,0.35); text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; transition: border-color 0.2s; }
.sol-btn-o:hover { border-color: var(--primary); color: var(--primary); }

/* Section utility */
.sol-sec { padding:4rem 2rem; }
.sol-wrap { max-width:1280px; margin:0 auto; }
.sol-heading { font-size:1.8rem; font-weight:900; color:var(--dark); text-align:center; margin-bottom:0.4rem; letter-spacing:0.5px; text-transform:uppercase; }
.sol-line { width:50px; height:3px; background:var(--primary); border-radius:10px; margin:0.5rem auto 2.5rem; }

/* Numbered section label */
.sol-num-label { display:flex; align-items:center; gap:0.8rem; margin-bottom:1.5rem; }
.sol-num-badge { width:36px; height:36px; background:var(--dark); color:var(--primary); border-radius:8px; display:flex; align-items:center; justify-content:center; font-weight:900; font-size:1rem; flex-shrink:0; }
.sol-num-label h2 { font-size:1.3rem; font-weight:800; color:var(--dark); margin:0; }

/* Product grid (small cards) */
.sol-product-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1.2rem; margin-bottom:1.5rem; }
.sol-product-card { border:1.5px solid var(--border-light); border-radius:16px; padding:1.3rem; text-align:center; background:#fff; transition:border-color 0.2s, transform 0.2s; }
.sol-product-card:hover { border-color:var(--primary); transform:translateY(-3px); }
.sol-product-img { width:64px; height:64px; background:#f1f5f9; border-radius:12px; margin:0 auto 0.9rem; display:flex; align-items:center; justify-content:center; font-size:1.5rem; color:var(--dark); }
.sol-product-card h4 { font-size:0.85rem; font-weight:700; color:var(--dark); margin-bottom:0.3rem; }
.sol-product-card p { font-size:0.74rem; color:var(--text-muted); line-height:1.4; margin:0; }

/* Trading cards */
.sol-trading-card {
  background:var(--white);
  border:1.5px solid var(--border-light);
  border-radius:20px;
  overflow:hidden;
  transition:transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.sol-trading-card:hover {
  transform:translateY(-6px);
  box-shadow:0 16px 40px rgba(0,0,0,0.1);
  border-color:var(--primary);
}
.sol-trading-icon {
  width:42px;
  height:42px;
  background:var(--primary);
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.1rem;
  color:var(--dark);
  margin-bottom:0.9rem;
}
@media(max-width:900px) {
  .sol-trading-grid { grid-template-columns:1fr !important; }
  .sol-trading-grid .sol-trading-card { text-align:center; }
  .sol-trading-grid .sol-trading-icon { margin:0 auto 0.9rem !important; }
  .sol-trading-grid .sol-trading-card ul { align-items:center; }
  .sol-trading-grid .sol-trading-card a { margin:0 auto; }
}

/* Split grid for 2 solution sections side by side */
.sol-2col { display:grid; grid-template-columns:1fr 1fr; gap:2rem; }
.sol-panel { background:#fff; border:1.5px solid var(--border-light); border-radius:20px; padding:2rem; }

/* Checklist */
.sol-checklist { list-style:none; padding:0; margin:0; display:grid; grid-template-columns:1fr 1fr; gap:0.6rem; }
.sol-checklist li { display:flex; align-items:center; gap:0.6rem; font-size:0.85rem; color:var(--text-alt); }
.sol-checklist li i { color:var(--primary); font-size:0.75rem; flex-shrink:0; }

/* Infrastructure image */
.sol-infra-img { width:100%; height:220px; object-fit:cover; border-radius:12px; margin-top:1.2rem; display:block; }

/* Process steps */
.sol-process { display:flex; align-items:center; justify-content:center; gap:0; flex-wrap:wrap; margin-top:1.2rem; background:var(--bg-light); border-radius:14px; padding:1.2rem; }
.sol-process-step { text-align:center; padding:0.5rem 0.8rem; }
.sol-process-icon { width:44px; height:44px; background:var(--dark); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1rem; color:var(--primary); margin:0 auto 0.5rem; }
.sol-process-step span { font-size:0.72rem; color:var(--text-muted); display:block; }
.sol-process-arrow { color:var(--primary); font-size:0.9rem; padding:0 0.3rem; margin-bottom:0.5rem; }

/* Savings card */
.sol-save-card { background:linear-gradient(135deg,var(--dark),var(--dark-2)); border-radius:14px; padding:1.4rem; margin-top:1.2rem; display:flex; align-items:center; justify-content:space-between; gap:1rem; }
.sol-save-card p { color:var(--text-light); font-size:0.82rem; line-height:1.5; margin:0; flex:1; }
.sol-save-card strong { display:block; color:#fff; font-size:0.88rem; font-weight:700; margin-bottom:0.3rem; }
.sol-save-pct { text-align:center; flex-shrink:0; }
.sol-save-pct .pct-num { font-size:2.5rem; font-weight:900; color:var(--primary); line-height:1; }
.sol-save-pct .pct-lbl { font-size:0.72rem; color:var(--text-light); }

/* Industries */
.sol-industry-grid { display:grid; grid-template-columns:repeat(8,1fr); gap:1rem; margin-top:1.5rem; }
.sol-industry-item { text-align:center; }
.sol-industry-icon { width:52px; height:52px; background:var(--bg-light); border:1.5px solid var(--border-light); border-radius:12px; display:flex; align-items:center; justify-content:center; font-size:1.2rem; color:var(--dark); margin:0 auto 0.6rem; transition:all 0.2s; }
.sol-industry-item:hover .sol-industry-icon { background:var(--primary); color:var(--dark); border-color:var(--primary); }
.sol-industry-item span { font-size:0.72rem; color:var(--text-muted); font-weight:500; line-height:1.3; display:block; }

/* Why LK Energy grid */
.sol-why-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1.2rem; margin-top:1.5rem; }
.sol-why-item { text-align:center; padding:1.5rem 1rem; border:1.5px solid var(--border-light); border-radius:16px; background:#fff; transition:border-color 0.2s, transform 0.2s; }
.sol-why-item:hover { border-color:var(--primary); transform:translateY(-3px); }
.sol-why-icon { width:48px; height:48px; background:var(--primary-light); border-radius:12px; display:flex; align-items:center; justify-content:center; font-size:1.1rem; color:var(--primary); margin:0 auto 0.8rem; }
.sol-why-item h4 { font-size:0.82rem; font-weight:700; color:var(--dark); margin-bottom:0.25rem; }
.sol-why-item p { font-size:0.73rem; color:var(--text-muted); margin:0; line-height:1.4; }

/* How we work */
.sol-steps { display:grid; grid-template-columns:repeat(7,1fr); gap:0.5rem; margin-top:1.5rem; position:relative; }
.sol-steps::before { content:''; position:absolute; top:22px; left:4%; right:4%; border-top:2px dashed var(--border); z-index:0; }
.sol-step { text-align:center; position:relative; z-index:1; }
.sol-step-icon { width:44px; height:44px; background:#fff; border:2px solid var(--primary); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1rem; color:var(--dark); margin:0 auto 0.7rem; }
.sol-step h5 { font-size:0.72rem; font-weight:700; color:var(--dark); margin-bottom:0.2rem; }
.sol-step span { font-size:0.68rem; color:var(--text-muted); display:block; line-height:1.3; }

/* CTA */
.sol-cta { position:relative; padding:5rem 2rem; overflow:hidden; }
.sol-cta-bg { position:absolute; inset:0; background:url('https://picsum.photos/seed/solarcta/1920/500') center/cover no-repeat; }
.sol-cta-bg::after { content:''; position:absolute; inset:0; background:rgba(12,30,53,0.88); }
.sol-cta-inner { position:relative; z-index:1; max-width:900px; margin:0 auto; text-align:center; }
.sol-cta-inner h2 { font-size:2.2rem; font-weight:900; color:#fff; margin-bottom:0.8rem; }
.sol-cta-btn { background:var(--primary); color:var(--dark); padding:0.9rem 2.2rem; border-radius:8px; font-weight:700; font-size:1rem; display:inline-flex; align-items:center; gap:0.5rem; text-decoration:none; transition:background 0.2s, transform 0.15s; }
.sol-cta-btn:hover { background:var(--primary-hover); transform:translateY(-2px); }

/* Support card in service section */
.sol-support-card { background:var(--dark); border-radius:16px; padding:1.5rem; display:flex; align-items:flex-start; gap:1rem; }
.sol-support-icon { width:50px; height:50px; background:var(--primary); border-radius:12px; display:flex; align-items:center; justify-content:center; font-size:1.3rem; color:var(--dark); flex-shrink:0; }
.sol-support-card h4 { color:#fff; font-size:1rem; font-weight:700; margin-bottom:0.3rem; }
.sol-support-card p { color:var(--text-light); font-size:0.82rem; line-height:1.5; margin-bottom:0.8rem; }
.sol-support-btn { background:var(--primary); color:var(--dark); padding:0.5rem 1.2rem; border-radius:6px; font-weight:700; font-size:0.83rem; text-decoration:none; display:inline-flex; align-items:center; gap:0.4rem; }

/* Responsive */
@media(max-width:1100px) {
  .sol-product-grid{grid-template-columns:repeat(3,1fr);}
  .sol-industry-grid{grid-template-columns:repeat(4,1fr);}
  .sol-why-grid{grid-template-columns:repeat(4,1fr);}
  .sol-steps{grid-template-columns:repeat(4,1fr);}
  .sol-steps::before{display:none;}
}
@media(max-width:900px) {
  .sol-2col{grid-template-columns:1fr;}
  .sol-product-grid{grid-template-columns:repeat(2,1fr);}
  .sol-industry-grid{grid-template-columns:repeat(4,1fr);}
  .sol-why-grid{grid-template-columns:repeat(2,1fr);}
  .sol-hero-content h1{font-size:2rem;}
  .sol-steps{grid-template-columns:repeat(4,1fr);}
}
@media(max-width:600px) {
  .sol-product-grid{grid-template-columns:repeat(2,1fr);}
  .sol-industry-grid{grid-template-columns:repeat(2,1fr);}
  .sol-why-grid{grid-template-columns:repeat(2,1fr);}
  .sol-hero-content h1{font-size:1.6rem;}
  .sol-hero-btns{flex-direction:column;}
  .sol-steps{grid-template-columns:repeat(2,1fr);}
  .sol-checklist{grid-template-columns:1fr;}
  .sol-save-card{flex-direction:column; text-align:center;}
}

/* ============================================================
   HERO SLIDER  (.hs-*)
   ============================================================ */
.hs {
  position: relative;
  width: 100%;
  height: 92vh;
  min-height: 620px;
  max-height: 920px;
  overflow: hidden;
}

/* Track */
.hs-track { position: relative; width: 100%; height: 100%; }

/* Slides — fade transition with subtle Ken Burns zoom */
.hs-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
  pointer-events: none;
}
.hs-slide.active { opacity: 1; z-index: 2; pointer-events: auto; }

.hs-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.07);
  transition: transform 7s ease;
}
.hs-slide.active .hs-bg { transform: scale(1); }

/* Gradient overlay — strong on left, fades right */
.hs-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    110deg,
    rgba(10,22,42,0.92) 0%,
    rgba(10,22,42,0.68) 50%,
    rgba(10,22,42,0.28) 100%
  );
}

/* Content area */
.hs-content {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  padding: 0 5% 82px;
  z-index: 3;
}
.hs-inner { max-width: 680px; }

/* Staggered entrance animation on active slide */
.hs-slide .hs-tag,
.hs-slide h1,
.hs-slide p,
.hs-slide .hs-btns,
.hs-slide .hs-badges {
  opacity: 0;
  transform: translateY(22px);
}
.hs-slide.active .hs-tag    { animation: hsFadeUp 0.55s ease 0.15s forwards; }
.hs-slide.active h1         { animation: hsFadeUp 0.55s ease 0.30s forwards; }
.hs-slide.active p          { animation: hsFadeUp 0.55s ease 0.45s forwards; }
.hs-slide.active .hs-btns   { animation: hsFadeUp 0.55s ease 0.57s forwards; }
.hs-slide.active .hs-badges { animation: hsFadeUp 0.55s ease 0.68s forwards; }

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

/* Tag pill */
.hs-tag {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: rgba(245,158,11,0.14);
  border: 1px solid rgba(245,158,11,0.4);
  color: #fbbf24; font-size: 0.78rem; font-weight: 700;
  padding: 0.38rem 1.1rem; border-radius: 30px;
  letter-spacing: 0.5px; margin-bottom: 1.1rem;
  text-transform: uppercase;
}

/* Heading */
.hs-inner h1 {
  font-size: 3.2rem; font-weight: 900; color: #fff;
  line-height: 1.18; margin-bottom: 1.1rem;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.hs-inner h1 span { color: var(--primary); }

/* Sub-text */
.hs-inner p {
  font-size: 1.02rem; color: rgba(255,255,255,0.82);
  line-height: 1.78; margin-bottom: 1.9rem; max-width: 540px;
}

/* CTA buttons */
.hs-btns { display: flex; gap: 1rem; margin-bottom: 1.9rem; flex-wrap: wrap; }

.hs-btn-primary {
  background: var(--primary); color: #1e293b;
  padding: 0.82rem 1.9rem; border-radius: 6px;
  font-weight: 700; font-size: 0.95rem;
  display: inline-flex; align-items: center; gap: 0.5rem;
  text-decoration: none; transition: background 0.2s, transform 0.15s;
}
.hs-btn-primary:hover { background: var(--primary-hover); transform: translateY(-2px); }

.hs-btn-outline {
  background: transparent; color: #fff;
  padding: 0.82rem 1.9rem; border-radius: 6px;
  font-weight: 600; font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.4);
  display: inline-flex; align-items: center; gap: 0.5rem;
  text-decoration: none; transition: all 0.2s;
}
.hs-btn-outline:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }

/* Feature badges */
.hs-badges { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.hs-badge {
  display: flex; align-items: center; gap: 0.45rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px; padding: 0.48rem 0.95rem;
  backdrop-filter: blur(4px);
  transition: background 0.2s, border-color 0.2s;
}
.hs-badge:hover { background: rgba(245,158,11,0.14); border-color: rgba(245,158,11,0.4); }
.hs-badge i { color: var(--primary); font-size: 0.85rem; }
.hs-badge span { color: #fff; font-size: 0.78rem; font-weight: 600; }

/* Prev / Next arrows */
.hs-arrow {
  position: absolute; top: 46%; transform: translateY(-50%);
  z-index: 10; width: 50px; height: 50px;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.28);
  border-radius: 50%; color: #fff; font-size: 1rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(6px);
  transition: all 0.22s;
}
.hs-arrow:hover {
  background: var(--primary); border-color: var(--primary);
  color: #1e293b; transform: translateY(-50%) scale(1.1);
}
.hs-prev { left: 1.5rem; }
.hs-next { right: 1.5rem; }

/* Dot indicators */
.hs-dots {
  position: absolute; bottom: 93px; left: 50%;
  transform: translateX(-50%);
  z-index: 10; display: flex; gap: 0.55rem; align-items: center;
}
.hs-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none; cursor: pointer; padding: 0;
  transition: all 0.3s ease;
}
.hs-dot.active { background: var(--primary); width: 26px; border-radius: 5px; }

/* Slide counter (top-right) */
.hs-counter {
  position: absolute; top: 1.5rem; right: 1.8rem; z-index: 10;
  display: flex; align-items: baseline; gap: 0.2rem;
  font-size: 0.75rem; color: rgba(255,255,255,0.4); font-weight: 600; letter-spacing: 0.5px;
}
.hs-counter strong { font-size: 1.1rem; font-weight: 900; color: var(--primary); }
.hs-sep { margin: 0 0.15rem; }

/* Stats strip at bottom */
.hs-stats {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 10;
  background: rgba(10,22,42,0.88); backdrop-filter: blur(12px);
  display: grid; grid-template-columns: repeat(4,1fr);
  padding: 1rem 2rem 0.95rem;
}
.hs-stat {
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  padding: 0 0.5rem;
}
.hs-stat:last-child { border-right: none; }
.hs-stat strong { display: block; font-size: 1.55rem; font-weight: 900; color: var(--primary); line-height: 1; margin-bottom: 0.2rem; }
.hs-stat span { font-size: 0.72rem; color: rgba(255,255,255,0.58); }

/* Progress bar — sits at the very top of the stats strip */
.hs-progress {
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: rgba(255,255,255,0.1); z-index: 1;
}
.hs-progress-bar { height: 100%; width: 0%; background: var(--primary); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hs-inner h1 { font-size: 2.7rem; }
}
@media (max-width: 900px) {
  .hs { height: 88vh; min-height: 540px; }
  .hs-inner h1 { font-size: 2.2rem; }
  .hs-content { padding: 0 4% 82px; }
  .hs-arrow { width: 42px; height: 42px; font-size: 0.85rem; }
  .hs-prev { left: 1rem; }
  .hs-next { right: 1rem; }
  .hs-dots { bottom: 87px; }
}
@media (max-width: 600px) {
  .hs { height: 100svh; min-height: 600px; max-height: none; }
  .hs-content { padding: 0 1.3rem 118px; align-items: flex-end; }
  .hs-inner { max-width: 100%; text-align: center; }
  .hs-inner p { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hs-inner h1 { font-size: 1.85rem; }
  .hs-btns { justify-content: center; }
  .hs-btn-primary, .hs-btn-outline { flex: 1; justify-content: center; min-width: 130px; }
  .hs-badges { justify-content: center; }
  .hs-arrow { display: none; }
  .hs-dots { bottom: 118px; }
  .hs-stats { grid-template-columns: repeat(2,1fr); padding: 0.85rem 1rem; }
  .hs-stat:nth-child(3) { border-right: none; }
  .hs-stat:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.08); }
  .hs-stat strong { font-size: 1.2rem; }
  .hs-counter { display: none; }
}
@media (max-width: 380px) {
  .hs-inner h1 { font-size: 1.6rem; }
  .hs-badge { font-size: 0.72rem; padding: 0.4rem 0.7rem; }
}



/* ============================================================
   SOLUTIONS PAGE — Image Cards & Visual Redesign
   ============================================================ */

/* Stats bar after hero */
.sol-stats-bar {
  background: var(--dark);
  padding: 2.5rem 2rem;
  border-bottom: 1px solid var(--dark-3);
}
.sol-stats-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1rem;
}
.sol-stat-item { text-align:center; border-right: 1px solid var(--dark-3); padding: 0.5rem 1rem; }
.sol-stat-item:last-child { border-right: none; }
.sol-stat-item strong { display:block; font-size:2rem; font-weight:900; color:var(--primary); line-height:1; margin-bottom:0.3rem; }
.sol-stat-item span { font-size:0.8rem; color:var(--text-light); }

/* Section banner header */
.sol-section-banner {
  position:relative; border-radius:16px; overflow:hidden;
  margin-bottom:2rem; height:200px;
}
.sol-section-banner img { width:100%; height:100%; object-fit:cover; display:block; }
.sol-section-banner-overlay {
  position:absolute; inset:0;
  background:linear-gradient(90deg,rgba(12,30,53,0.88) 40%,rgba(12,30,53,0.3) 100%);
  display:flex; align-items:center; padding:2rem;
}
.sol-section-banner-overlay .sol-num-label { margin-bottom:0; }
.sol-section-banner-overlay .sol-num-badge { background:var(--primary); color:var(--dark); width:42px; height:42px; font-size:1.1rem; }
.sol-section-banner-overlay h2 { color:var(--white); font-size:1.4rem; margin:0; }

/* Image product cards */
.sol-img-grid {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:1.2rem; margin-bottom:1.5rem;
}
.sol-img-card {
  border-radius:14px; overflow:hidden;
  border:1.5px solid var(--border-light);
  background:var(--white);
  transition:transform 0.22s, box-shadow 0.22s, border-color 0.22s;
}
.sol-img-card:hover { transform:translateY(-5px); box-shadow:0 12px 30px rgba(0,0,0,0.1); border-color:var(--primary); }
.sol-img-card img { width:100%; height:140px; object-fit:cover; display:block; }
.sol-img-card-body { padding:0.95rem 1rem; }
.sol-img-card-body h4 { font-size:0.88rem; font-weight:700; color:var(--dark); margin-bottom:0.25rem; }
.sol-img-card-body p  { font-size:0.76rem; color:var(--text-muted); margin:0; line-height:1.4; }

/* Horizontal feature row */
.sol-feature-row {
  display:grid; grid-template-columns:1fr 1fr; gap:2rem;
  align-items:center; margin-top:1.5rem;
}
.sol-feature-img { border-radius:14px; overflow:hidden; }
.sol-feature-img img { width:100%; height:240px; object-fit:cover; display:block; }
.sol-feature-list { display:flex; flex-direction:column; gap:0.75rem; }
.sol-feature-list li {
  display:flex; align-items:flex-start; gap:0.8rem;
  font-size:0.88rem; color:var(--text-alt); list-style:none;
}
.sol-feature-list li i { color:var(--primary); margin-top:3px; flex-shrink:0; }
.sol-feature-list li strong { display:block; font-size:0.9rem; font-weight:700; color:var(--dark); margin-bottom:0.1rem; }

/* Section intro text */
.sol-section-desc {
  font-size:0.9rem; color:var(--text-alt); line-height:1.7;
  margin-bottom:1.5rem; max-width:700px;
}

/* Industries visual grid */
.sol-industry-grid-v2 {
  display:grid; grid-template-columns:repeat(4,1fr); gap:1.2rem; margin-top:1.5rem;
}
.sol-industry-card {
  background:var(--white); border:1.5px solid var(--border-light);
  border-radius:14px; overflow:hidden;
  transition:border-color 0.2s, transform 0.2s;
  text-align:center;
}
.sol-industry-card:hover { border-color:var(--primary); transform:translateY(-3px); }
.sol-industry-card img { width:100%; height:110px; object-fit:cover; display:block; }
.sol-industry-card-body { padding:0.8rem 0.6rem; }
.sol-industry-card-body i { font-size:1.4rem; color:var(--primary); margin-bottom:0.4rem; display:block; }
.sol-industry-card-body span { font-size:0.78rem; font-weight:600; color:var(--dark); }

/* Why Choose — horizontal list */
.sol-why-list {
  display:grid; grid-template-columns:repeat(4,1fr); gap:1.2rem; margin-top:1.5rem;
}
.sol-why-list-item {
  background:var(--bg-light); border:1.5px solid var(--border-light);
  border-radius:14px; padding:1.4rem 1rem; text-align:center;
  transition:border-color 0.2s, transform 0.2s;
}
.sol-why-list-item:hover { border-color:var(--primary); transform:translateY(-3px); }
.sol-why-list-item i { font-size:1.6rem; color:var(--primary); margin-bottom:0.7rem; display:block; }
.sol-why-list-item h4 { font-size:0.85rem; font-weight:700; color:var(--dark); margin-bottom:0.3rem; }
.sol-why-list-item p  { font-size:0.75rem; color:var(--text-muted); margin:0; line-height:1.4; }

/* Section divider accent */
.sol-divider {
  max-width:1280px; margin:0 auto;
  border:none; border-top:2px dashed var(--border-light);
}

/* Mobile */
@media(max-width:900px) {
  .sol-img-grid { grid-template-columns:repeat(2,1fr) !important; }
  .sol-feature-row { grid-template-columns:1fr !important; }
  .sol-industry-grid-v2 { grid-template-columns:repeat(2,1fr) !important; }
  .sol-why-list { grid-template-columns:repeat(2,1fr) !important; }
  .sol-stats-inner { grid-template-columns:repeat(2,1fr) !important; }
  .sol-stat-item { border-right:none; border-bottom:1px solid var(--dark-3); padding-bottom:1rem; }
  .sol-stat-item:last-child { border-bottom:none; }
}
@media(max-width:600px) {
  .sol-img-grid { grid-template-columns:repeat(2,1fr) !important; }
  .sol-industry-grid-v2 { grid-template-columns:repeat(2,1fr) !important; }
  .sol-why-list { grid-template-columns:1fr !important; }
  .sol-section-banner { height:140px; }
  .sol-section-banner-overlay h2 { font-size:1rem; }
}

/* ============================================================
   CONTACT PAGE — Form Background Fix
   ============================================================ */

/* ============================================================
   GET QUOTE MODAL
   ============================================================ */
.gq-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.26s ease;
}
.gq-modal.open { opacity: 1; }

.gq-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10,22,42,0.76);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.gq-card {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 20px;
  padding: 2.2rem 2rem;
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 60px rgba(0,0,0,0.32);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.3s ease;
}
.gq-modal.open .gq-card {
  transform: translateY(0) scale(1);
}

.gq-card::-webkit-scrollbar { width: 5px; }
.gq-card::-webkit-scrollbar-track { background: #f1f5f9; border-radius: 10px; }
.gq-card::-webkit-scrollbar-thumb { background: #f59e0b; border-radius: 10px; }

.gq-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  background: #f1f5f9;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: #1e293b;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.gq-close:hover { background: #f59e0b; color: #fff; transform: rotate(90deg); }

.gq-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.7rem;
  padding-right: 2.2rem;
}
.gq-header-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background: #f59e0b;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #1e293b;
}
.gq-header h2 { font-size: 1.35rem; font-weight: 800; color: #1e293b; margin: 0 0 0.25rem; }
.gq-header p  { font-size: 0.83rem; color: #64748b; margin: 0; line-height: 1.5; }
.gq-header p strong { color: #f59e0b; }

.gq-form .ct-fg { margin-bottom: 1.05rem; }
.gq-form .ct-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.gq-form .ct-fg textarea { height: 105px; }

@media (max-width: 600px) {
  .gq-card { padding: 1.7rem 1.2rem; border-radius: 16px; }
  .gq-form .ct-form-row { grid-template-columns: 1fr; }
  .gq-header h2 { font-size: 1.15rem; }
  .gq-header-icon { width: 42px; height: 42px; font-size: 1rem; }
}