/* ══════════════════════════════════════════════════════════════
   home.css — Indo Thai Global  (fresh build)
══════════════════════════════════════════════════════════════ */
p {
  text-align: justify;
}

/* ── Scroll reveal — ONE simple system, no conflicts ──────── */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-up    { transform: translateY(40px); }
/* Clamp reveal-left/right to prevent horizontal scroll */
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal-up.in-view,
.reveal-left.in-view,
.reveal-right.in-view {
  opacity: 1;
  transform: translate(0, 0);
}

/* Clip any section that might overflow horizontally */
.home-about,
.home-industries,
.home-why,
.home-vm,
.home-cta,
.enquiry-section,
.panel-supply,
.section {
  overflow-x: hidden;
}


/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  z-index: 0;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;;
  width: 100%;
  padding: 6rem 9rem 0rem 8rem;
}
.hero-slides {
  position: relative;
  width: 95%;
  max-width: 1300px;
  height: 620px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(10,45,85,0.22);
  margin: 0 auto;
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: 100% 100%;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1.1s ease;
}
.hero-slide.is-active { 
  opacity: 1; 
  transform: scale(1);
  background-position: center center;
}
.hero-slide-overlay {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  background: linear-gradient(180deg,
    rgba(10,45,85,0.40) 0%,
    rgba(10,45,85,0.20) 40%,
    rgba(10,45,85,0.60) 80%,
    rgba(10,45,85,0.88) 100%);
}
/* ── Slide text (heading + subtext per slide) ──────────────── */
.hero-slide-text {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 clamp(1.2rem, 6vw, 5rem);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0s, transform 0s;
}

/* When the slide becomes active, fade-up the text with a delay */
.hero-slide.is-active .hero-slide-text {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.85s ease 0.75s, transform 0.85s ease 0.75s;
}

.hero-slide-heading {
  font-family: var(--font-sans, sans-serif);
  font-weight: 800;
  font-size: clamp(1.8rem, 5vw, 4rem);
  line-height: 1.1;
  color: #fff;
  text-shadow: 0 4px 40px rgba(0,0,0,0.5);
  margin: 0 0 1rem;
  letter-spacing: 0.02em;
}

.hero-slide-sub {
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  font-weight: 300;
  color: rgba(255,255,255,0.80);
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

.hero-glow {
  position: absolute; z-index: 1;
  top: -10%; right: -5%;
  width: 60vw; height: 60vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(90,200,232,0.14) 0%, transparent 65%);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 3;
  text-align: center;
  max-width: 780px;
  padding: 0 clamp(1.2rem,5vw,2rem);
}
.hero-h1 {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.05;
  color: #fff;
  text-shadow: 0 4px 40px rgba(0,0,0,0.4);
  margin-bottom: 1.2rem;
}
.hero-p {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto 2rem;
}
.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-slide-arrow {
  position: absolute; 
  top: unset;
  bottom: 1.5rem;
  transform: none;
  z-index: 5;
  width: 50px; height: 50px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(0,0,0,0.28);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.85);
  font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  line-height: 0;
}

.hero-slide-prev { 
  left: clamp(1rem,3vw,2.5rem);
  right: unset;
  padding-left: 2px;
}

.hero-slide-next { 
  right: clamp(1rem,3vw,2.5rem);
  left: unset;
  padding-left: 2px;
}
.hero-slide-arrow:hover {
  background: rgba(90,200,232,0.35);
  border-color: var(--teal, #5ac8e8);
  transform: scale(1.08);   /* ← removed translateY(-50%) from here too */
}
.hero-slide-dots {
  position: absolute; bottom: 3rem; left: 50%; transform: translateX(-50%);
  z-index: 5; display: flex; gap: 6px; align-items: center;
}
.hero-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.30);
  border: none; cursor: pointer;
  transition: background 0.25s, width 0.25s; padding: 0;
}
.hero-dot.is-active { background: var(--teal,#5ac8e8); width: 22px; border-radius: 3px; }
.scroll-hint {
  position: absolute; bottom: 4.5rem; left: 50%; transform: translateX(-50%);
  z-index: 4; display: flex; flex-direction: column; align-items: center; gap: 5px;
}
.scroll-line {
  width: 1px; height: 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
.scroll-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--teal,#5ac8e8); }
@keyframes scrollPulse { 0%,100%{opacity:0.35} 50%{opacity:1} }

@media (max-width: 1439px) and (min-width: 1025px) {
  .hero-slides { height: 460px; }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .hero-slides { height: 400px; }
}

@media (max-width: 1024px) {
  .hero-slides { height: 400px; }
}

@media (max-width: 768px) {
  .hero { padding: 1.2rem 1rem 0rem 1rem; }
  .hero-slides { height: 260px; border-radius: 16px; }
  .hero-slide { background-size: cover; background-position: center center; }
  .hero-slide-heading { font-size: clamp(1rem, 5vw, 1.6rem); }
  .hero-slide-sub { font-size: clamp(0.75rem, 3vw, 0.9rem); }
}

@media (max-width: 768px) and (orientation: landscape) {
  .hero-slides { height: 220px; }
}

@media (max-width: 480px) {
  .hero-slide-arrow { display: flex; width: 36px; height: 36px; font-size: 0.9rem; }
  .hero-slide-prev { left: clamp(1rem,3vw,2.5rem); right: unset; bottom: 1.5rem; }
  .hero-slide-next { right: clamp(1rem,3vw,2.5rem); left: unset; bottom: 1.5rem; }
}

@media (max-width: 360px) {
  .hero-slides { height: 200px; border-radius: 12px; }
}

/* ══════════════════════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════════════════════ */
.home-about { background: #ffffff; }
.home-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* ── Dual-image stack (RIGHT side) ── */
.ha-images-stack {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 20px;
}

.ha-stack-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(13,42,26,0.14);
  background: linear-gradient(135deg, #c8eeff, #9dd8f0);
}

.ha-stack-img--top {
  height: 260px;
}

.ha-stack-img--bottom {
  height: 200px;
  margin-left: 32px;
}

.ha-stack-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}
.ha-stack-img:hover img { transform: scale(1.06); }

.ha-stack-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(10,61,40,0.80) 0%, transparent 100%);
  padding: 1.2rem 1.4rem 1rem;
}
.ha-stack-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.90);
}

/* Badge pinned top-right of the stack */
.ha-stack-badge {
  position: absolute;
  top: 0px;
  right: -10px;
  z-index: 4;
  background: linear-gradient(120deg,#2a9abf,#5ac8e8);
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow: 0 8px 28px rgba(13,42,26,0.28);
  text-align: center;
}
.ha-stack-badge .ha-badge-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: #b0f0e0;
  line-height: 1;
}
.ha-stack-badge .ha-badge-text {
  font-size: 0.46rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.70);
  line-height: 1.5;
  padding: 0 6px;
}

/* ── Text side ── */
.ha-title { font-size:clamp(2rem,3.5vw,3rem);font-weight:800;color:var(--text-dark,#0d2a1a);line-height:1.12;margin-bottom:1.2rem; }
.ha-text p { font-size:0.95rem;text-align: justify;line-height:1.85;color:var(--text-mid,#1a5040);margin-bottom:1rem; }
.ha-divider { width:40px;height:2px;background:linear-gradient(90deg,#5ac8e8,#5ac8e8);border-radius:2px;margin:1.6rem 0; }
.ha-details { display:flex;flex-direction:column; }
.ha-row { display:flex;gap:1rem;padding:0.8rem 0;border-bottom:1px solid rgba(90,200,232,0.18);align-items:baseline;font-size:0.9rem; }
.ha-row:first-child { border-top:1px solid rgba(90,200,232,0.18); }
.ha-key { font-size:0.62rem;letter-spacing:0.1em;text-transform:uppercase;color:#5ac8e8;min-width:110px;flex-shrink:0; }
.ha-val { color:var(--text-mid,#1a5040); }

@media(max-width:768px){
  .home-about-grid { grid-template-columns:1fr; gap:2.5rem; }
  .ha-stack-img--bottom { margin-left: 0; }
  .ha-stack-badge { top:-14px; right:-8px; width:76px; height:76px; }
}


/* ══════════════════════════════════════════════════════════════
   INDUSTRIES
══════════════════════════════════════════════════════════════ */
.home-industries { background: #f5fafd; }

/* Wider container — reduces side gap */
.ind-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3.5rem);
}

.sec-title { font-size:clamp(2rem,4vw,3rem);font-weight:800;color:var(--text-dark,#0d2a1a);margin-bottom:0.5rem;line-height:1.1; }
.sec-sub { color:var(--text-light,#3a7860);font-size:1rem;max-width:540px;margin:0 auto;line-height:1.75; }

.ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.ind-card {
  background: #fff;
  border: 1px solid rgba(90,200,232,0.18);
  border-radius: 18px;
  padding: 2.2rem 1.8rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s, opacity 0.65s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Subtle teal top accent bar */
.ind-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #5ac8e8, #5ac8e8);
  border-radius: 18px 18px 0 0;
  opacity: 0;
  transition: opacity 0.3s;
}
.ind-card:hover::before { opacity: 1; }

.ind-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(90,200,232,0.14);
  border-color: rgba(90,200,232,0.35);
}

.ind-icon {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  line-height: 1;
  display: block;
}

.ind-card h4 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark, #0d2a1a);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ind-card p {
  color: var(--text-light, #3a7860);
  font-size: 0.87rem;
  line-height: 1.7;
  margin: 0 0 1rem;
}

/* Bullet detail list inside card */
.ind-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(90,200,232,0.18);
  padding-top: 0.9rem;
  text-align: left;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.ind-list li {
  font-size: 0.80rem;
  color: var(--text-mid, #1a5040);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 7px;
}
.ind-list li::before {
  content: '→';
  color: #5ac8e8;
  font-size: 0.72rem;
  flex-shrink: 0;
  margin-top: 1px;
}

@media(max-width:900px)  { .ind-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:480px)  { .ind-grid { grid-template-columns: 1fr; } }


/* ══════════════════════════════════════════════════════════════
   WHY CHOOSE US
══════════════════════════════════════════════════════════════ */
.home-why { background: #f5fafd; }

.why-new-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* ── Cards column ── */
.why-cards-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.why-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #fff;
  border: 1px solid rgba(90,200,232,0.18);
  border-radius: 14px;
  padding: 1.1rem 1.3rem;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s;
}
.why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(90,200,232,0.13);
  border-color: rgba(90,200,232,0.40);
}

.why-card-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: rgba(90,200,232,0.10);
  border: 1px solid rgba(90,200,232,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.why-card-body h6 {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark, #0d2a1a);
  margin: 0 0 0.25rem;
}
.why-card-body p {
  font-size: 0.84rem;
  color: var(--text-light, #3a7860);
  line-height: 1.65;
  margin: 0;
}

/* ── Image column ── */
.why-new-img-side {
  position: relative;
}

.why-new-img-wrap {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(13,42,26,0.14);
  min-height: 480px;
  background: linear-gradient(135deg,#d4eef9,#9dd8f0);
}

.why-new-img-wrap img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}
.why-new-img-wrap:hover img { transform: scale(1.04); }

.why-new-img-wrap.why-img-ph { background: linear-gradient(135deg,#d4eef9,#9dd8f0); }
.why-ph-inner {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.8rem; text-align: center; color: #1a5040;
}
.why-ph-inner p { font-size: 0.9rem; opacity: 0.7; }

@media(max-width:900px){
  .why-new-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .why-new-img-wrap, .why-new-img-wrap img { min-height: 280px; }
}


/* ══════════════════════════════════════════════════════════════
   VISION & MISSION
══════════════════════════════════════════════════════════════ */
.home-vm { background: #ffffff; }
 
/* Each row */
.vm-row {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 5rem;
  align-items: center;
  padding: 3.5rem 0;
  border-bottom: 1px solid rgba(90,200,232,0.12);
}
.vm-row:last-child { border-bottom: none; }
 
/* Reversed row — figure on right */
.vm-row--reverse {
  grid-template-columns: 1.8fr 1fr;
}
 
/* ── Figure side ── */
.vm-figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
 
.vm-figure-ring {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
 
/* Pulsing outer ring */
.vm-figure-ring::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px dashed;
  opacity: 0.35;
  animation: vmSpin 18s linear infinite;
}
 
@keyframes vmSpin { to { transform: rotate(360deg); } }
 
.vm-ring--mission {
  background: radial-gradient(circle at 35% 35%, #e4f7fd, #a8e4f5);
  box-shadow: 0 16px 48px rgba(90,200,232,0.22);
}
.vm-ring--mission::before { border-color: #5ac8e8; }
 
.vm-ring--vision {
  background: radial-gradient(circle at 35% 35%, #e4f4fc, #aaddee);
  box-shadow: 0 16px 48px rgba(90,200,232,0.22);
}
.vm-ring--vision::before { border-color: #5ac8e8; }
 
.vm-ring--values {
  background: radial-gradient(circle at 35% 35%, #e4f7fd, #a8e4f5);
  box-shadow: 0 16px 48px rgba(42,154,191,0.18);
}
.vm-ring--values::before { border-color: #2a9abf; }
 
.vm-figure-emoji {
  font-size: 4.5rem;
  line-height: 1;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.12));
}
 
.vm-figure-icon {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 4px 12px rgba(42,154,191,0.18));
}
.vm-figure-icon svg {
  width: 100%;
  height: 100%;
}
 
.vm-figure-label {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5ac8e8;
  font-weight: 600;
}
 
/* ── Content side ── */
.vm-tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.vm-tag--mission { background: rgba(90,200,232,0.12); color: #2a9abf; }
.vm-tag--vision  { background: rgba(90,200,232,0.12); color: #1a7aaa; }
.vm-tag--values  { background: rgba(42,154,191,0.10);  color: #2a9abf; }
 
.vm-heading {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--text-dark, #0d2a1a);
  line-height: 1.2;
  margin-bottom: 1rem;
}
 
.vm-body {
  font-size: 0.94rem;
  color: var(--text-mid, #1a5040);
  line-height: 1.85;
  margin-bottom: 1.4rem;
}
 
.vm-points {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.vm-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-mid, #1a5040);
  line-height: 1.6;
  flex-wrap: nowrap;
}
 
.vm-points li strong {
  flex-shrink: 0;
  min-width: 130px;
}
.vm-points li::before {
  content: '→';
  color: #5ac8e8;
  font-size: 0.78rem;
  flex-shrink: 0;
  margin-top: 2px;
}
 
@media(max-width:900px) {
  .vm-row,
  .vm-row--reverse {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 2.5rem 0;
  }
  .vm-row--reverse .vm-figure { order: -1; }
  .vm-figure-ring { width: 140px; height: 140px; }
  .vm-figure-emoji { font-size: 3.5rem; }
  .vm-figure-icon { width: 70px; height: 70px; }
  .vm-points li { flex-wrap: nowrap; align-items: flex-start; }
  .vm-points li strong { min-width: auto; display: inline; }
  .vm-points li::before { margin-top: 2px; flex-shrink: 0; }
}

/* ══════════════════════════════════════════════════════════════
   ENQUIRY
══════════════════════════════════════════════════════════════ */
.enquiry-section {
  position: relative;
  padding: clamp(5rem,9vw,7rem) 0;
  background: linear-gradient(135deg, #1a6a9a 0%, #1a7aaa 45%, #1a88bb 100%);
  overflow: hidden;
}

/* Decorative blobs */
.eq-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.18;
}
.eq-blob--1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, #5ac8e8, transparent);
  top: -120px; left: -100px;
}
.eq-blob--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #5ac8e8, transparent);
  bottom: -80px; right: -80px;
}

/* Layout */
.eq-wrap {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* ── Left info panel ── */
.eq-label-light {
  color: rgba(90,200,232,0.80) !important;
}
.enquiry-left { position: sticky; top: 100px; }

.enquiry-title {
  font-size: clamp(2.2rem,4vw,3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.enquiry-subtitle {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  max-width: 320px;
  margin-bottom: 2rem;
}

/* Perks */
.eq-perks {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.eq-perk {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.80);
}
.eq-perk-icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(90,200,232,0.18);
  border: 1px solid rgba(90,200,232,0.30);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}

.eq-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.10);
  margin-bottom: 1.8rem;
}

/* Contact strip */
.enquiry-contact-strip {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.eq-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.72);
}
.eq-contact-item a { color: rgba(255,255,255,0.72); text-decoration: none; }
.eq-contact-item a:hover { color: #5ac8e8; }
.eq-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; flex-shrink: 0;
}

/* ── Form card ── */
.eq-form-card {
  background: #fff;
  border-radius: 24px;
  padding: clamp(2rem,4vw,3rem);
  box-shadow: 0 32px 80px rgba(0,0,0,0.35);
}

.eq-form-header {
  margin-bottom: 1.8rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid rgba(90,200,232,0.16);
}
.eq-form-header h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dark, #0d2a1a);
  margin-bottom: 0.3rem;
}
.eq-form-header p {
  font-size: 0.85rem;
  color: var(--text-light, #3a7860);
}

/* Form fields */
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 1rem; }
.form-field:last-child { margin-bottom: 0; }

.form-field label {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light, #3a7860);
  font-weight: 600;
}
.req { color: #e05a5a; }

/* Input with icon */
.input-icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.input-icon {
  position: absolute;
  left: 12px;
  font-size: 0.95rem;
  pointer-events: none;
  z-index: 1;
}
.input-icon-wrap input,
.input-icon-wrap select {
  padding-left: 2.4rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  border: 1.5px solid rgba(90,200,232,0.28);
  background: #f8fcfa;
  font-family: var(--font-sans, sans-serif);
  font-size: 0.9rem;
  color: var(--text-dark, #0d2a1a);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  outline: none;
  box-sizing: border-box;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #5ac8e8;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(90,200,232,0.10);
}
.form-field textarea {
  resize: vertical;
  min-height: 110px;
}

/* Phone row */
.phone-wrap {
  display: flex;
  gap: 0.6rem;
  align-items: stretch;
}
.country-select {
  width: 115px;
  flex-shrink: 0;
  padding: 0.8rem 0.6rem !important;
  border-radius: 10px;
  border: 1.5px solid rgba(90,200,232,0.28);
  background: #f8fcfa;
  font-size: 0.85rem;
  color: var(--text-dark, #0d2a1a);
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.country-select:focus {
  border-color: #5ac8e8;
  box-shadow: 0 0 0 4px rgba(90,200,232,0.10);
}
.phone-wrap input {
  flex: 1;
}

/* Submit button */
.eq-submit-btn {
  width: 100%;
  padding: 0.95rem 1.5rem;
  background: linear-gradient(135deg, #5ac8e8 0%, #a8e4f5 55%, #c0eeff 100%);
  border: none;
  border-radius: 12px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-sans, sans-serif);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 0.5rem;
  transition: transform 0.22s, box-shadow 0.22s, filter 0.22s;
  box-shadow: 0 8px 24px rgba(90, 200, 232, 0.35);
  letter-spacing: 0.02em;
}
.eq-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(90, 200, 232, 0.45), 0 0 28px rgba(90, 200, 232, 0.28);
  filter: brightness(1.07);
}
.eq-btn-arrow {
  font-size: 1.1rem;
  transition: transform 0.22s;
}
.eq-submit-btn:hover .eq-btn-arrow { transform: translateX(4px); }

@media(max-width:960px) {
  .eq-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .enquiry-left { position: static; }
  .form-grid-2 { grid-template-columns: 1fr; }
}


/* ══════════════════════════════════════════════════════════════
   PANEL SUPPLY SECTION
══════════════════════════════════════════════════════════════ */
.panel-supply { background: #ffffff; }
.ps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.ps-img {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(13,42,26,0.14);
}
.ps-img img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.ps-img:hover img { transform: scale(1.04); }
.ps-text p { font-size:0.95rem;line-height:1.85;color:var(--text-mid,#1a5040);margin-bottom:1rem; }
.ps-list {
  list-style: none; padding: 0; margin: 1rem 0;
  display: flex; flex-direction: column; gap: 0.55rem;
}
.ps-list li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.9rem; color: var(--text-mid,#1a5040); line-height: 1.5;
}
.ps-list li::before { content:'→'; color:#5ac8e8; flex-shrink:0; margin-top:1px; }
@media(max-width:768px) {
  .ps-grid { grid-template-columns:1fr; gap:2.5rem; }
}