/* =========================================================
   SOLGEL Water Solutions — Main Stylesheet
   Brand: Deep Blue #023256 | Water Blue #0487C8
          Solar Orange #FE9214 | Light Blue #98D3ED
   Font:  Poppins
   ========================================================= */

:root{
  --deep-blue: #023256;
  --deep-blue-90: rgba(2,50,86,0.9);
  --deep-blue-70: rgba(2,50,86,0.7);
  --water-blue: #0487C8;
  --solar-orange: #FE9214;
  --solar-orange-dark: #E27E00;
  --light-blue: #98D3ED;
  --white: #FFFFFF;
  --off-white: #F7FAFC;
  --ink: #142430;
  --muted: #5A6D78;
  --success: #28A745;
  --danger: #DC3545;
  --border: #E4ECF1;

  --font-base: 'Poppins', sans-serif;
  --radius: 10px;
  --shadow-sm: 0 2px 10px rgba(2,50,86,0.06);
  --shadow-md: 0 10px 30px rgba(2,50,86,0.12);
  --container-w: 1200px;
}

*{ margin:0; padding:0; box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  font-family: var(--font-base);
  color: var(--ink);
  background: var(--white);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ text-decoration:none; color:inherit; }
ul{ list-style:none; }
h1,h2,h3,h4{ font-weight:700; line-height:1.2; color: var(--deep-blue); }
.container{ max-width: var(--container-w); margin:0 auto; padding:0 24px; }
.section{ padding:96px 0; }
.text-center{ text-align:center; }

.eyebrow{
  display:inline-block; font-size:13px; font-weight:600; letter-spacing:.08em;
  text-transform:uppercase; color: var(--solar-orange-dark); margin-bottom:12px;
}
.eyebrow-light{ color: var(--light-blue); }
.section-head{ max-width:640px; margin:0 auto 48px; }
.section-head h2{ font-size: clamp(26px,3vw,36px); }
.section-head.text-center{ margin-left:auto; margin-right:auto; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; gap:8px;
  font-family: var(--font-base); font-weight:600; font-size:15px;
  padding:13px 26px; border-radius:6px; border:2px solid transparent;
  transition: all .2s ease; cursor:pointer;
}
.btn-lg{ padding:16px 32px; font-size:16px; }
.btn-solar{ background: var(--solar-orange); color: var(--white); }
.btn-solar:hover{ background: var(--solar-orange-dark); transform: translateY(-2px); }
.btn-deep-blue{ background: var(--deep-blue); color: var(--white); }
.btn-deep-blue:hover{ background: #011f36; transform: translateY(-2px); }
.btn-outline-light{ border-color: rgba(255,255,255,0.7); color: var(--white); }
.btn-outline-light:hover{ background: rgba(255,255,255,0.12); border-color: var(--white); }

.link-arrow{ font-weight:600; color: var(--water-blue); display:inline-flex; align-items:center; gap:6px; }
.link-arrow i{ transition: transform .2s; }
.link-arrow:hover i{ transform: translateX(4px); }

/* ---------- Header / Nav ---------- */
.site-header{
  position:fixed; top:0; left:0; right:0; z-index:200;
  border-bottom:1px solid var(--border);
}
.site-header::before{
  content:""; position:absolute; inset:0; z-index:-1;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 24px; gap:24px;
}
.brand{ display:flex; align-items:center; gap:10px; }
.brand-logo{ width:60px; height:60px; object-fit:contain; }
.brand-name{ font-weight:800; font-size:22px; color: var(--deep-blue); letter-spacing:.02em; }

.main-nav ul{ display:flex; gap:20px; flex-wrap:wrap; }
.main-nav a{
  font-size:13.5px; font-weight:500; color: var(--ink); position:relative; padding:6px 0;
  transition: color .2s; white-space:nowrap;
}
.main-nav a::after{
  content:""; position:absolute; left:0; bottom:0; width:0; height:2px;
  background: var(--solar-orange); transition: width .2s;
}
.main-nav a:hover, .main-nav a.active{ color: var(--water-blue); }
.main-nav a.active::after, .main-nav a:hover::after{ width:100%; }

.nav-cta{ white-space:nowrap; }
.nav-toggle{
  display:none; background:none; border:none; font-size:26px; color: var(--deep-blue); cursor:pointer;
}

@media (max-width: 1180px){
  .main-nav{
    position:fixed; top:70px; left:0; right:0; bottom:0; z-index:300;
    background: var(--white); padding:28px 24px;
    transform: translateX(100%); opacity:0;
    transition: transform .3s ease, opacity .3s ease; overflow-y:auto;
  }
  .main-nav.open{ transform: translateX(0); opacity:1; }
  .main-nav ul{ flex-direction:column; gap:2px; }
  .main-nav a{
    display:block; padding:16px 12px; font-size:15px; font-weight:500;
    border-bottom:1px solid var(--border); color:var(--ink); border-radius:6px;
  }
  .main-nav a:hover, .main-nav a.active{ background:var(--off-white); color:var(--water-blue); }
  .nav-cta{ display:none; }
  .nav-toggle{ display:block; z-index:301; position:relative; }
}

/* ---------- Hero ---------- */
.hero{
  position:relative; min-height:100vh;
  background-color: color-mix(in srgb, var(--deep-blue), white 40%);
  /*    background-color: var(--deep-blue);     */
  background-size:cover; background-position:center;
  display:flex; align-items:center;
  padding-top:90px;
}
.hero-content{ position:relative; z-index:2; color: var(--white); max-width:720px; }
.hero-overlay-solid{
  position:absolute; inset:0; z-index:1;
  background: rgba(2,50,86,0.9);
}
.badge-recognition{
  display:inline-flex; align-items:center; gap:8px;
  background: rgba(254,146,20,0.16); border:1px solid rgba(254,146,20,0.5);
  color: var(--solar-orange); font-size:13px; font-weight:600;
  padding:8px 16px; border-radius:30px; margin-bottom:24px;
}
.hero h1{
  color: var(--white); font-size: clamp(34px,5vw,54px); margin-bottom:20px; letter-spacing:-0.01em;
}
.hero-subtext{ font-size:17px; color: rgba(255,255,255,0.88); max-width:56ch; margin-bottom:36px; }
.hero-ctas{ display:flex; gap:16px; flex-wrap:wrap; }

/* ---------- Quick Intro ---------- */
.intro-section{ background: var(--off-white); }
.intro-grid{
  display:grid; grid-template-columns: 0.9fr 1.1fr; gap:64px; align-items:center;
}
.intro-image img{ border-radius: var(--radius); box-shadow: var(--shadow-md); }
.intro-copy p{ color: var(--muted); margin:18px 0 28px; }
@media (max-width: 860px){ .intro-grid{ grid-template-columns:1fr; gap:36px; } }

/* ---------- Info Cards (homepage — dark section after Who We Are) ---------- */
.info-cards-section{ background: var(--deep-blue); }
.info-cards-section .section-head h2{ color: var(--white); }
.info-cards{
  display:grid; grid-template-columns: repeat(2,1fr); gap:20px;
}
.info-card{
  background: rgba(255,255,255,0.12); border:1px solid rgba(255,255,255,0.25);
  border-radius:16px; padding:28px;
  transition: transform .3s, background .3s, box-shadow .3s;
}
.info-card:hover{ transform: translateY(-6px); background: rgba(255,255,255,0.18); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }
.info-card i{ font-size:32px; color: var(--solar-orange); margin-bottom:14px; display:block; }
.info-card h3{ font-size:18px; color: var(--white); margin-bottom:8px; }
.info-card p{ font-size:14.5px; color: #DCEAF4; line-height:1.75; margin:0; }
@media (max-width: 860px){ .info-cards{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .info-cards{ grid-template-columns:1fr; } }

/* ---------- Stats ---------- */
.stats-section{ background: var(--deep-blue); color: var(--white); }
.stats-section h2{ color: var(--white); }
.stats-grid{
  display:grid; grid-template-columns: repeat(6, 1fr); gap:20px;
}
.stat-card{
  background: rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); padding:28px 18px; text-align:center;
  transition: transform .2s, background .2s;
}
.stat-card:hover{ background: rgba(255,255,255,0.09); transform: translateY(-4px); }
.stat-card i{ font-size:30px; color: var(--solar-orange); margin-bottom:14px; display:block; }
.stat-value{ font-size:30px; font-weight:800; margin-bottom:6px; }
.stat-label{ font-size:12.5px; color: var(--light-blue); line-height:1.4; }
@media (max-width: 960px){ .stats-grid{ grid-template-columns: repeat(3,1fr); } }
@media (max-width: 560px){ .stats-grid{ grid-template-columns: repeat(2,1fr); } }

/* ---------- Products ---------- */
.products-grid{
  display:grid; grid-template-columns: repeat(3, 1fr); gap:28px;
}
.product-card{
  border:1px solid var(--border); border-radius: var(--radius); overflow:hidden;
  transition: transform .2s, box-shadow .2s; background: var(--white);
}
.product-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); }
.product-image{ aspect-ratio: 4/3; background: var(--light-blue); overflow:hidden; }
.product-image img{ width:100%; height:100%; object-fit:cover; }
.product-image.img-fallback{
  display:flex; align-items:center; justify-content:center;
  background: linear-gradient(135deg, var(--water-blue), var(--deep-blue));
}
.product-image.img-fallback img{ display:none; }
.product-body{ padding:26px; }
.product-body h3{ font-size:19px; margin-bottom:10px; }
.product-body p{ color: var(--muted); font-size:14.5px; margin-bottom:18px; }

/* Simple product card (homepage — no image) */
.product-card-simple{
  border:1px solid var(--border); border-radius: var(--radius); padding:28px;
  background: var(--white); transition: transform .2s, box-shadow .2s;
}
.product-card-simple:hover{ transform: translateY(-4px); box-shadow: var(--shadow-md); }
.product-card-simple h3{ font-size:18px; margin-bottom:10px; }
.product-card-simple p{ color: var(--muted); font-size:14.5px; line-height:1.7; margin:0; }

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

/* ---------- Partners (carousel) ---------- */
.partners-section{ background: var(--off-white); }

.partners-carousel{
  display:flex; align-items:center; gap:16px;
}
.carousel-btn{
  flex-shrink:0; width:40px; height:40px; border-radius:50%;
  border:1px solid var(--border); background:var(--white);
  color:var(--deep-blue); font-size:18px; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  transition: background .2s, color .2s;
}
.carousel-btn:hover{ background:var(--deep-blue); color:var(--white); border-color:var(--deep-blue); }
.carousel-btn:disabled{ opacity:0.3; cursor:default; }
.carousel-btn:disabled:hover{ background:var(--white); color:var(--deep-blue); border-color:var(--border); }

.carousel-track-wrap{ flex:1; overflow:hidden; }
.carousel-track{
  display:flex; gap:40px; transition:transform .4s ease;
}
.partner-logo{
  flex-shrink:0; width:160px; height:80px;
  display:flex; align-items:center; justify-content:center;
  transition:all .2s;
}
.partner-logo:hover{ transform:scale(1.05); }
.partner-logo img{ max-height:56px; max-width:100%; object-fit:contain; }

/* ---------- Footer ---------- */
.site-footer{ background: var(--deep-blue); color: rgba(255,255,255,0.85); }
.footer-grid{
  display:grid; grid-template-columns: 1.3fr 0.8fr 1fr 1.1fr; gap:40px;
  padding:72px 24px 48px;
}
.footer-col h4{ color: var(--white); font-size:16px; margin-bottom:18px; }
.footer-col ul li{ margin-bottom:10px; font-size:14px; }
.footer-col a:hover{ color: var(--solar-orange); }
.footer-about p{ margin:14px 0 18px; font-size:14px; color: rgba(255,255,255,0.7); }
.brand-footer .brand-name{ color: var(--white); }
.social-links{ display:flex; gap:12px; }
.social-links a{
  width:36px; height:36px; border-radius:50%; border:1px solid rgba(255,255,255,0.25);
  display:flex; align-items:center; justify-content:center; transition: all .2s;
}
.social-links a:hover{ background: var(--solar-orange); border-color: var(--solar-orange); }
.footer-contact li{ display:flex; gap:10px; align-items:flex-start; }
.footer-contact i{ color: var(--solar-orange); margin-top:3px; }

.newsletter-form{ display:flex; gap:8px; margin-top:6px; }
.newsletter-form input{
  flex:1; padding:11px 14px; border-radius:6px; border:1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.06); color: var(--white); font-family: var(--font-base); font-size:13.5px;
}
.newsletter-form input::placeholder{ color: rgba(255,255,255,0.55); }
.newsletter-message{ font-size:13px; margin-top:10px; min-height:18px; }
.newsletter-message.success{ color: #7EE0A0; }
.newsletter-message.error{ color: #FF9D9D; }

.footer-bottom{ border-top:1px solid rgba(255,255,255,0.12); }
.footer-bottom-inner{
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;
  padding:20px 24px; font-size:13px; color: rgba(255,255,255,0.6);
}
.footer-bottom-inner a:hover{ color: var(--white); }

@media (max-width: 960px){
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px){
  .footer-grid{ grid-template-columns: 1fr; }
	  .footer-bottom-inner{ flex-direction:column; text-align:center; }
	}

/* ---------- Team cards ---------- */
.team-grid{
  display:grid; grid-template-columns: repeat(3,1fr); gap:28px;
}
.team-card{
  background: var(--white); border:1px solid var(--border); border-radius: var(--radius);
  padding:32px 24px; text-align:center;
  transition: transform .2s, box-shadow .2s;
}
.team-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-photo{
  width:120px; height:120px; border-radius:50%; object-fit:cover; object-position:center 0%;
  margin:0 auto 18px;
}
.team-card h3{ font-size:17px; margin-bottom:4px; }
.team-role{ display:block; font-size:13px; font-weight:600; color: var(--water-blue); margin-bottom:12px; }
.team-card p{ font-size:14px; color: var(--muted); line-height:1.65; margin-bottom:16px; }
.team-links{ display:flex; justify-content:center; gap:10px; }
.team-link{
  width:36px; height:36px; border-radius:50%; display:inline-flex;
  align-items:center; justify-content:center; font-size:16px;
  transition: background .2s, color .2s;
}
a.team-link.linkedin{ background:#0077B5; color:var(--white); }
a.team-link.linkedin:hover{ background:#005983; }
a.team-link.email{ background:var(--deep-blue); color:var(--white); }
a.team-link.email:hover{ background:#011f36; }
.team-link.placeholder{ background:var(--border); color:var(--muted); cursor:default; }
@media (max-width: 860px){ .team-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px){ .team-grid{ grid-template-columns:1fr; } }

/* ---------- SDG icons ---------- */
.sdg-grid{
  display:grid; grid-template-columns: repeat(6,1fr); gap:20px; align-items:start;
}
.sdg-item{
  text-align:center;
}
.sdg-item img{ width:100%; max-width:180px; margin:0 auto 12px; display:block; }
.sdg-item p{ font-size:13px; font-weight:600; color: var(--deep-blue); line-height:1.4; margin:0; }
@media (max-width: 860px){ .sdg-grid{ grid-template-columns: repeat(3,1fr); } }
@media (max-width: 520px){ .sdg-grid{ grid-template-columns: repeat(2,1fr); } }

/* =========================================================
	   Inner-page components (About, Technology, Products, etc.)
   ========================================================= */

/* Page hero banner (shorter than homepage hero) */
.page-hero{
  position:relative; padding:180px 0 80px; color: var(--white);
  background: linear-gradient(120deg, var(--deep-blue) 0%, #01202f 100%);
  overflow:hidden;
}
.page-hero::before{
  content:""; position:absolute; inset:0;
  background: radial-gradient(circle at 85% 20%, rgba(254,146,20,0.18), transparent 55%);
}
.page-hero .container{ position:relative; z-index:2; }
.page-hero .eyebrow{ color: var(--light-blue); }
.page-hero h1{ color: var(--white); font-size: clamp(30px,4.2vw,46px); margin-bottom:16px; }
.page-hero p{ color: rgba(255,255,255,0.82); max-width:60ch; font-size:16px; }
.breadcrumb{ font-size:13px; color: rgba(255,255,255,0.6); margin-bottom:18px; }
.breadcrumb a{ color: rgba(255,255,255,0.85); }
.breadcrumb a:hover{ color: var(--solar-orange); }

/* Generic content section */
.content-section p{ color: var(--muted); margin-bottom:16px; }
.content-section h2{ margin-bottom:16px; }
.content-section h3{ font-size:19px; margin:28px 0 10px; }
.two-col{ display:grid; grid-template-columns: 1fr 1fr; gap:56px; align-items:center; }
@media (max-width:860px){ .two-col{ grid-template-columns:1fr; gap:32px; } }
.two-col img{ border-radius: var(--radius); box-shadow: var(--shadow-md); }

/* Value / feature cards */
.feature-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:24px; }
@media (max-width:860px){ .feature-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .feature-grid{ grid-template-columns:1fr; } }
.feature-card{
  border:1px solid var(--border); border-radius: var(--radius); padding:28px; text-align:left;
  transition: box-shadow .2s, transform .2s;
}
.feature-card:hover{ box-shadow: var(--shadow-md); transform: translateY(-4px); }
.feature-card i{ font-size:26px; color: var(--water-blue); margin-bottom:14px; display:block; }
.feature-card h3{ font-size:17px; margin:0 0 8px; }
.feature-card p{ font-size:13.5px; color: var(--muted); margin:0; }

/* Process / technology steps */
.tech-steps{ display:grid; grid-template-columns: repeat(4,1fr); gap:20px; }
.tech-step{
  padding:28px 22px; background: var(--deep-blue); border:1px solid var(--water-blue);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s, background .2s;
}
.tech-step:hover{ background: var(--water-blue); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.tech-step .num{ font-weight:800; color: var(--solar-orange); font-size:13px; margin-bottom:10px; display:block; }
.tech-step h3{ font-size:16px; color: var(--white); margin:0 0 8px; }
.tech-step p{ font-size:13px; color: rgba(255,255,255,0.84); margin:0; }
@media (max-width:860px){ .tech-steps{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .tech-steps{ grid-template-columns:1fr; } }

/* Advantage table (reused from spec's competitive advantage) */
table.compare{ max-width:800px; margin:0 auto; border-collapse:collapse; }
table.compare th{
  text-align:center; font-size:12px; text-transform:uppercase; letter-spacing:.05em; color: var(--muted);
  padding:14px 16px; border-bottom:2px solid var(--border);
}
table.compare td{ padding:18px 20px; border-bottom:1px solid var(--border); font-size:14.5px; vertical-align:top; }
table.compare td.feature-name{ font-weight:700; color: var(--deep-blue); width:28%; white-space:nowrap; }
table.compare td.solgel-cell{ color: var(--ink); }

/* Products page grid (fuller cards than homepage) */
.full-products-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:28px; }
@media (max-width:900px){ .full-products-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:600px){ .full-products-grid{ grid-template-columns:1fr; } }
.price-tag{ display:inline-block; margin-top:10px; font-weight:700; color: var(--deep-blue); }

/* Timeline (Projects / milestones) */
.timeline{ position:relative; padding-left:32px; border-left:2px solid var(--border); }
.timeline-item{ position:relative; padding-bottom:36px; }
.timeline-item:last-child{ padding-bottom:0; }
.timeline-item::before{
  content:""; position:absolute; left:-39px; top:4px; width:14px; height:14px; border-radius:50%;
  background: var(--solar-orange); border:3px solid var(--white); box-shadow:0 0 0 2px var(--solar-orange);
}
.timeline-item .tl-label{ font-size:12px; font-weight:700; text-transform:uppercase; color: var(--water-blue); letter-spacing:.05em; }
.timeline-item h3{ font-size:17px; margin:6px 0 8px; }
.timeline-item p{ color: var(--muted); font-size:14px; margin:0; }

/* Impact page number grid */
.impact-numbers{ display:grid; grid-template-columns: repeat(4,1fr); gap:24px; }
@media (max-width:860px){ .impact-numbers{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .impact-numbers{ grid-template-columns:1fr; } }
.impact-number-card{ text-align:center; padding:30px 16px; border:1px solid var(--border); border-radius: var(--radius); }
.impact-number-card .num{ font-size:34px; font-weight:800; color: var(--water-blue); }
.impact-number-card .lbl{ font-size:13px; color: var(--muted); margin-top:6px; }

/* Awards */
.awards-grid{ display:grid; grid-template-columns: repeat(2,1fr); gap:24px; }
@media (max-width:700px){ .awards-grid{ grid-template-columns:1fr; } }
.award-card{
  display:flex; gap:20px; padding:26px; border:1px solid var(--border); border-radius: var(--radius);
  align-items:flex-start;
}
.award-card i{ font-size:32px; color: var(--solar-orange); flex-shrink:0; }
.award-card h3{ font-size:17px; margin-bottom:6px; }
.award-card p{ color: var(--muted); font-size:14px; margin:0; }

/* News */
.news-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:26px; }
@media (max-width:900px){ .news-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:600px){ .news-grid{ grid-template-columns:1fr; } }
.news-card{ border:1px solid var(--border); border-radius: var(--radius); overflow:hidden; transition: box-shadow .2s, transform .2s; }
.news-card:hover{ box-shadow: var(--shadow-md); transform: translateY(-4px); }
.news-card .news-image{ aspect-ratio:16/10; background: linear-gradient(135deg, var(--water-blue), var(--deep-blue)); }
.news-card .news-body{ padding:22px; }
.news-date{ font-size:12px; color: var(--solar-orange-dark); font-weight:600; text-transform:uppercase; letter-spacing:.04em; }
.news-card h3{ font-size:16.5px; margin:10px 0 8px; }
.news-card p{ font-size:13.5px; color: var(--muted); }

/* Gallery */
.gallery-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:16px; }
@media (max-width:800px){ .gallery-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:520px){ .gallery-grid{ grid-template-columns:1fr; } }
.gallery-item{ aspect-ratio:4/3; border-radius:8px; overflow:hidden; background: var(--off-white); cursor:pointer; display:flex; align-items:center; justify-content:center; }
.gallery-item img{ max-width:100%; max-height:100%; object-fit:contain; transition: transform .3s; }
.gallery-item:hover img{ transform: scale(1.04); }

/* FAQ accordion */
.faq-list{ max-width:800px; margin:0 auto; }
.faq-item{ border-bottom:1px solid var(--border); }
.faq-question{
  width:100%; text-align:left; background:none; border:none; padding:20px 0; cursor:pointer;
  display:flex; justify-content:space-between; align-items:center; font-family: var(--font-base);
  font-size:15.5px; font-weight:600; color: var(--deep-blue);
}
.faq-question i{ transition: transform .2s; color: var(--water-blue); }
.faq-item.open .faq-question i{ transform: rotate(45deg); }
.faq-answer{ max-height:0; overflow:hidden; transition: max-height .25s ease; }
.faq-answer p{ padding-bottom:20px; color: var(--muted); font-size:14.5px; }

/* Contact page */
.contact-grid{ display:grid; grid-template-columns: 1fr 1.2fr; gap:56px; }
@media (max-width:900px){ .contact-grid{ grid-template-columns:1fr; gap:36px; } }
.contact-info-item{ display:flex; gap:16px; margin-bottom:26px; }
.contact-info-item i{ font-size:22px; color: var(--water-blue); }
.contact-info-item h4{ font-size:15px; margin-bottom:4px; color: var(--deep-blue); }
.contact-info-item p{ font-size:13.5px; color: var(--muted); margin:0; }
.contact-form-panel{ background: var(--off-white); border-radius: var(--radius); padding:32px; }
.contact-form-panel .form-group{ margin-bottom:16px; display:flex; flex-direction:column; gap:6px; }
.contact-form-panel label{ font-size:13px; font-weight:600; color: var(--deep-blue); }
.contact-form-panel input, .contact-form-panel textarea{
  padding:11px 14px; border:1px solid var(--border); border-radius:8px; font-family: var(--font-base); font-size:14px;
}
.contact-form-panel textarea{ min-height:120px; resize:vertical; }
.form-message{ font-size:13.5px; margin-top:6px; min-height:18px; }
.form-message.success{ color: var(--success); }
.form-message.error{ color: var(--danger); }

/* Legal pages */
.legal-content h2{ font-size:19px; margin:32px 0 12px; }
.legal-content h2:first-child{ margin-top:0; }
.legal-content p, .legal-content li{ color: var(--muted); font-size:14.5px; margin-bottom:12px; }
.legal-content ul{ padding-left:20px; list-style:disc; }
.legal-updated{ font-size:13px; color: var(--muted); margin-bottom:32px; display:block; }

/* ---------- Floating WhatsApp button ---------- */
.whatsapp-float{
  position:fixed; bottom:24px; right:24px; z-index:999;
  width:56px; height:56px; border-radius:50%;
  background:#25D366; color:var(--white); font-size:28px;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 4px 16px rgba(37,211,102,0.4);
  transition: transform .2s, box-shadow .2s;
}
.whatsapp-float:hover{ transform:scale(1.1); box-shadow:0 6px 24px rgba(37,211,102,0.55); color:var(--white); }

/* ---------- Impact Page ---------- */
.impact-hero{
  position:relative; min-height:60vh; padding-top:120px;
  background-color: var(--deep-blue);
  background-size:cover; background-position:center;
  display:flex; align-items:center;
}
.impact-hero .hero-content{ max-width:800px; }
.impact-hero .hero-content p{ font-size:16px; color:rgba(255,255,255,0.85); line-height:1.8; margin-top:16px; }

/* Charts */
.impact-charts-grid{
  display:grid; grid-template-columns:1fr 1fr; gap:32px;
}
.chart-container{
  background:var(--white); border:1px solid var(--border);
  border-radius:var(--radius); padding:24px; min-height:300px;
}
.chart-container h3{ font-size:15px; margin-bottom:16px; color:var(--deep-blue); }
@media (max-width:860px){ .impact-charts-grid{ grid-template-columns:1fr; } }

/* Impact cards (Sections 6-8) */
.impact-cards{
  display:grid; grid-template-columns:repeat(3,1fr); gap:24px;
}
.impact-card{
  background:var(--white); border:1px solid var(--border);
  border-radius:var(--radius); padding:28px;
  transition: transform .2s, box-shadow .2s;
}
.impact-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-md); }
.impact-card i{ font-size:28px; color:var(--water-blue); margin-bottom:14px; display:block; }
.impact-card h3{ font-size:16px; margin-bottom:8px; }
.impact-card p{ font-size:13.5px; color:var(--muted); line-height:1.65; margin:0; }
@media (max-width:860px){ .impact-cards{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .impact-cards{ grid-template-columns:1fr; } }

/* Impact CTA */
.impact-cta{
  background:var(--deep-blue); color:var(--white); text-align:center; padding:80px 0;
}
.impact-cta h2{ color:var(--white); font-size:clamp(26px,3vw,34px); margin-bottom:16px; }
.impact-cta p{ color:rgba(255,255,255,0.82); max-width:640px; margin:0 auto 32px; font-size:16px; line-height:1.7; }
.impact-cta .hero-ctas{ justify-content:center; }

/* ---------- Newsletter modal ---------- */
.modal-overlay{
  position:fixed; inset:0; z-index:1000;
  background:rgba(2,50,86,0.6); display:none;
  align-items:center; justify-content:center; padding:24px;
}
.modal-overlay.open{ display:flex; }
.modal-box{
  background:var(--white); border-radius:var(--radius); padding:36px 32px;
  max-width:460px; width:100%; position:relative;
  box-shadow:0 20px 60px rgba(0,0,0,0.25);
}
.modal-box h3{ font-size:20px; margin-bottom:6px; }
.modal-close{
  position:absolute; top:16px; right:16px;
  background:none; border:none; font-size:18px; color:var(--muted);
  cursor:pointer; padding:4px; line-height:1;
}
.modal-close:hover{ color:var(--ink); }
.modal-box .form-group{ margin-bottom:14px; }
.modal-box label{ font-size:13px; font-weight:600; color:var(--deep-blue); display:block; margin-bottom:4px; }
.modal-box input[type="text"],
.modal-box input[type="email"]{
  width:100%; padding:11px 14px; border:1px solid var(--border); border-radius:8px;
  font-family:var(--font-base); font-size:14px;
}

/* Quote form */
.quote-form-wrap{
  max-width:680px; margin:0 auto; background:var(--white);
  border:1px solid var(--border); border-radius:var(--radius); padding:40px;
}
.quote-form-wrap .form-grid{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.quote-form-wrap .form-grid .full{ grid-column:1 / -1; }
.quote-form-wrap .form-group{ display:flex; flex-direction:column; gap:6px; }
.quote-form-wrap label{
  font-size:14px; font-weight:600; color:var(--deep-blue);
}
.quote-form-wrap input,
.quote-form-wrap select,
.quote-form-wrap textarea{
  width:100%; padding:12px 15px; border:2px solid var(--border);
  border-radius:8px; font-family:var(--font-base); font-size:15px;
  color:var(--ink); background:var(--white);
  transition:border-color .2s, box-shadow .2s;
}
.quote-form-wrap input:focus,
.quote-form-wrap select:focus,
.quote-form-wrap textarea:focus{
  outline:none; border-color:var(--water-blue);
  box-shadow:0 0 0 3px rgba(4,135,200,0.12);
}
.quote-form-wrap textarea{ min-height:120px; resize:vertical; }
@media (max-width:600px){ .quote-form-wrap .form-grid{ grid-template-columns:1fr; } }

/* ---------- Job cards (Careers page) ---------- */
.job-card{
  border:1px solid var(--border); border-radius:var(--radius); margin-bottom:20px;
  background:var(--white); overflow:hidden;
}
.job-header{
  display:flex; justify-content:space-between; align-items:center;
  padding:24px 28px; gap:16px;
}
.job-header h3{ font-size:18px; margin-bottom:4px; }
.job-meta{ font-size:13px; color:var(--muted); }
.job-meta i{ margin-right:4px; }
.job-body{
  max-height:0; overflow:hidden; transition:max-height .3s ease;
  border-top:0 solid var(--border);
}
.job-body.open{ border-top-width:1px; }
.job-section{ padding:20px 28px; border-bottom:1px solid var(--border); }
.job-section:last-child{ border-bottom:none; }
.job-section h4{ font-size:15px; margin-bottom:8px; color:var(--deep-blue); }
.job-section p{ font-size:14px; color:var(--muted); line-height:1.7; margin:0; }
