                                                @import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

:root {
  color-scheme: light;
  font-family: 'outfit', system-ui, sans-serif;

  /* Core palette */
  --sun: #F97316;
  --sun-bright: #FDBA74;
  --sun-deep: #C2410C;
  --sky: #0C1B3A;
  --sky-mid: #152347;
  --sky-light: #1E3260;
  --cloud: #F0F4FF;
  --cloud-dark: #CBD5E8;
  --white: #FFFFFF;
  --text: #0C1B3A;
  --muted: #546082;
  --card: #FFFFFF;
  --border: #E2E8F5;
  --shadow-card: 0 4px 24px rgba(12,27,58,0.08), 0 1px 4px rgba(12,27,58,0.04);
  --shadow-elevated: 0 16px 48px rgba(12,27,58,0.14), 0 4px 12px rgba(12,27,58,0.08);

  /* Gradients */
  --grad-sun: linear-gradient(135deg, #F97316 0%, #FBBF24 100%);
  --grad-sky: linear-gradient(160deg, #0C1B3A 0%, #1E3260 60%, #152347 100%);
  --grad-hero-overlay: linear-gradient(135deg, rgba(12,27,58,0.93) 0%, rgba(21,35,71,0.80) 100%);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cloud);
  color: var(--text);
  font-family: 'outfit', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'outfit', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.6em;
}

a { color: inherit; text-decoration: none; }

/* ─────────────────────────────────────────────
   ANNOUNCEMENT BAR
───────────────────────────────────────────── */
.header-top {
  background: var(--grad-sun);
  color: var(--sky);
  text-align: center;
  padding: 0.55rem 1.5rem;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.header-top p { margin: 0; }

.header-top a {
  font-weight: 700;
  color: var(--sky);
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 1px;
  transition: opacity 0.2s;
}
.header-top a:hover { opacity: 0.75; }

/* ─────────────────────────────────────────────
   HEADER / NAV
───────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--sky);
  box-shadow: 0 2px 24px rgba(12,27,58,0.25);
}

.header-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  padding: 0.55rem clamp(1rem, 4vw, 2.5rem);
  position: relative;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex: 1;
  min-width: 0;
  order: 1;
}

.logo-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 10px;
  filter: drop-shadow(0 2px 8px rgba(249,115,22,0.35));
}

.sun-tagline {
  font-size: 0.48rem;
  color: var(--sun-bright);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 3px;
  display: block;
}

.brand-title {
  font-family: 'outfit', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: white;
  margin: 0;
}

.brand-subtitle {
  font-size: 0.78rem;
  color: var(--cloud-dark);
  margin: 0;
  opacity: 0.7;
}

.nav-menu-wrap {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-shrink: 0;
  order: 2;
  z-index: 5;
}

/* Menu toggle (circular staggered bars) — desktop + mobile */
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-toggle:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

.nav-toggle:active {
  transform: scale(0.96);
}

.nav-toggle-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 18px;
}

.nav-toggle-bar {
  display: block;
  height: 2.5px;
  width: 100%;
  border-radius: 2px;
  background: var(--sky);
  transition: transform 0.25s ease, opacity 0.2s ease, width 0.2s ease;
}

.nav-toggle-bar--mid {
  width: 62%;
  align-self: flex-end;
}

.site-header.nav-is-open .nav-toggle-bar:first-child {
  transform: translateY(7.5px) rotate(45deg);
}

.site-header.nav-is-open .nav-toggle-bar--mid {
  opacity: 0;
  width: 0;
}

.site-header.nav-is-open .nav-toggle-bar:last-child {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Nav */
.primary-nav {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0.2rem;
  position: absolute;
  top: 0;
  right: calc(100% + 0.65rem);
  transform: translateX(16px) scale(0.98);
  width: min(300px, calc(100vw - 6rem));
  min-width: 236px;

  background: rgba(12, 27, 58, 0.98);
  border: 1px solid rgba(226, 232, 245, 0.22);
  border-radius: 0;
  box-shadow: 0 18px 50px rgba(12, 27, 58, 0.45);

  z-index: 10;
  padding: 0;
  margin: 0;

  overflow: hidden;
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  transform-origin: top right;
  transition:
    max-height 0.32s ease,
    opacity 0.22s ease,
    transform 0.32s ease;
}

.site-header.nav-is-open .primary-nav {
  max-height: 360px;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
  padding: 0.45rem;
}

.tab-link {
  background: transparent;
  border: none;
  padding: 0.55rem 1.1rem;
  border-radius: 8px;
  flex: 0 0 auto;
  width: auto;
  text-align: center;
  font-family: 'outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.01em;
}

/* Tab list inside the flyout panel */
.site-header.nav-is-open .primary-nav .tab-link {
  width: 100%;
  box-sizing: border-box;
  text-align: left;
  padding: 0.85rem 1rem;
  border-radius: 0;
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.site-header.nav-is-open .primary-nav .tab-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.site-header.nav-is-open .primary-nav .tab-link.active {
  background: var(--sun);
  color: #fff;
  font-weight: 700;
}

.site-header.nav-is-open .primary-nav .tab-link:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.tab-link:hover {
  background: rgba(255,255,255,0.08);
  color: white;
}

.tab-link.active {
  background: var(--sun);
  color: white;
  font-weight: 600;
}

/* CTA group */
.cta-group {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
  order: 3;
  margin-left: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0.6rem 1.3rem;
  font-family: 'outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn.primary {
  background: var(--grad-sun);
  color: var(--sky);
}

.btn.primary:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(249,115,22,0.35);
}

.btn.secondary {
  background: transparent;
  border-color: rgba(255,255,255,0.35);
  color: white;
}

.btn.secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

.btn.full-width { width: 100%; }

/* ─────────────────────────────────────────────
   MAIN LAYOUT
───────────────────────────────────────────── */
main {
  padding: 0 clamp(1rem, 4vw, 3rem) 4rem;
}

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--sky);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem) clamp(2rem, 4vw, 3.5rem);
  color: white;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-bottom: 3rem;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--grad-hero-overlay);
}

/* Decorative sun glow */
.hero::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(251,191,36,0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 2;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.7s ease;
  will-change: transform;
}

.hero-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 1;
  transform: scale(1);
  transition: transform 0.7s ease;
}

.hero-slide.is-active {
  transform: scale(1.01);
}

.hero-slide-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-text {
  position: relative;
  z-index: 3;
  align-self: center;
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sun-bright);
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--sun-bright);
  border-radius: 2px;
}

.hero h1 {
  font-family: 'outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(1.2rem, 2.6vw, 2.0rem);
  margin: 0 0 1rem;
  color: white;
  line-height: 1.15;
}

.lead {
  font-size: 1rem;
  color: rgba(255,255,255,0.82);
  margin: 0 0 1.75rem;
  line-height: 1.65;
  max-width: 520px;
}

.hero-cta {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
}

.hero-stats div {
  border-left: 3px solid var(--sun);
  padding-left: 1rem;
}

.hero-stats .stat-value {
  font-family: 'outfit', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: white;
  margin: 0;
}

.hero-stats .stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

.hero-visual {
  position: relative;
  z-index: 3;
  margin: 0;
  align-self: center;
}

.hero-visual__card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 2rem 1.75rem;
  box-shadow: 0 24px 48px rgba(0,0,0,0.2);
}

.hero-visual__card p {
  color: rgba(255,255,255,0.88);
  margin: 0 0 1rem;
  font-size: 0.97rem;
  line-height: 1.6;
}

.hero-visual__card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-visual__card ul li {
  padding: 0.55rem 0;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hero-visual__card ul li::before {
  content: '☀';
  color: var(--sun-bright);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.hero-visual__card ul li:last-child { border-bottom: none; }

/* Hero dots */
.hero-dots {
  position: absolute;
  bottom: 1.25rem;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  z-index: 5;
  pointer-events: none;
}

.hero-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.75);
  background: transparent;
  cursor: pointer;
  pointer-events: auto;
  padding: 0;
  transition: all 0.25s;
}

.hero-dot.is-active {
  background: var(--sun);
  border-color: var(--sun);
  transform: scale(1.12);
}

/* ─────────────────────────────────────────────
   INTRO SECTION
───────────────────────────────────────────── */
.intro {
  max-width: 1120px;
  margin: 0 auto 3rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.intro-content {
  flex: 1;
  min-width: 260px;
}

.intro-document {
  flex: 0 0 380px;
  max-width: 100%;
  overflow: hidden;
  border-radius: 16px;
}

.intro-certificate-image {
  width: 100%;
  height: auto;
  max-height: 300px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-card);
  display: block;
  object-fit: cover;
}

.intro h2 {
  font-size: clamp(1.25rem, 2.0vw, 1.7rem);
  color: var(--sky);
  margin-bottom: 1rem;
  text-align: left;
}

.intro p {
  color: var(--muted);
  font-size: 1rem;
  margin: 0 0 0.75rem;
}

@media (max-width: 900px) {
  .intro {
    flex-direction: column;
    text-align: left;
    gap: 1rem;
  }

  .intro-document {
    flex: 0 0 auto;
  }

  .intro-certificate-image {
    max-height: 260px;
  }
}
/* ─────────────────────────────────────────────
   STATS
───────────────────────────────────────────── */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1rem;
  margin-bottom: 3rem;
}

.stats article {
  background: var(--sky);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stats article::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-sun);
}

.stat-value {
  font-family: 'outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--sun-bright);
  margin: 0;
}

.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin: 0.4rem 0 0;
  line-height: 1.4;
}

/* ─────────────────────────────────────────────
   SERVICE PREVIEW (HOME)
───────────────────────────────────────────── */
.service-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.service-preview article {
  background: var(--card);
  border-radius: 16px;
  padding: 1.75rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.service-preview article::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-sun);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-preview article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
}

.service-preview article:hover::after { transform: scaleX(1); }

.service-preview article h3 {
  font-size: 1rem;
  color: var(--sky);
  margin-bottom: 0.5rem;
}

.service-preview article p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
}

/* ─────────────────────────────────────────────
   PARTNER LOGOS
───────────────────────────────────────────── */
.partners-section {
  margin: 0 0 2.5rem;
  text-align: center;
}

.partners-section h2 {
  font-size: clamp(1.1rem, 1.9vw, 1.6rem);
  color: var(--sky);
  margin-bottom: 0.85rem;
}

.partners-scroll {
  overflow: hidden;
  padding: 0.3rem 0.25rem 0.9rem;
  position: relative;
}

.partners-track {
  display: flex;
  gap: 1.15rem;
  width: max-content;
  animation: partners-slide 24s linear infinite;
}

.partners-scroll img {
  flex: 0 0 280px;
  width: 280px;
  height: 150px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-card);
  padding: 0.9rem;
}

.partners-scroll:hover .partners-track {
  animation-play-state: paused;
}

@keyframes partners-slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 700px) {
  .partners-scroll img {
    flex-basis: 220px;
    width: 220px;
    height: 120px;
  }
}

/* ─────────────────────────────────────────────
   TAB PANELS
───────────────────────────────────────────── */
.tab-panel { display: none; padding-top: 0; scroll-margin-top: 120px; }
.tab-panel.active { display: block; }

/* ─────────────────────────────────────────────
   SECTION HEADER
───────────────────────────────────────────── */
.section-header {
  max-width: 700px;
  margin: 2.5rem auto 2rem;
  text-align: center;
}

.section-header h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  color: var(--sky);
  margin-bottom: 0.5rem;
}

.section-header p { color: var(--muted); margin: 0; }

/* ─────────────────────────────────────────────
   ABOUT
───────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.about-card {
  background: var(--card);
  border-radius: 20px;
  padding: 1.75rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  height: 100%;
}

.about-card h3 {
  font-size: 1.05rem;
  color: var(--sky);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.about-card h3::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 18px;
  background: var(--grad-sun);
  border-radius: 2px;
  flex-shrink: 0;
}

.about-card p { color: var(--muted); margin: 0; font-size: 0.93rem; line-height: 1.65; }
.about-card .values-list { margin: 0.5rem 0 0; }

.values-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: grid;
  gap: 0.6rem;
}

.values-list li {
  font-size: 0.9rem;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.values-list li::before {
  content: '✦';
  color: var(--sun);
  font-size: 0.7rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.values-list strong {
  color: var(--sky);
  font-weight: 600;
  display: inline;
}

/* Two-column */
.two-column {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 1.75rem;
  margin-top: 1.25rem;
}

.two-column p { color: var(--muted); }

/* ─────────────────────────────────────────────
   SERVICES
───────────────────────────────────────────── */
.service-block {
  background: var(--card);
  border-radius: 20px;
  padding: 1.5rem 1.75rem 1.75rem;
  margin-bottom: 1.25rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.service-block h3 {
  font-size: 1.15rem;
  color: var(--sky);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0.75rem;
}

.service-block > p { color: var(--muted); font-size: 0.93rem; margin: 0 0 1rem; }

.service-block ul { margin: 0 0 0 1.1rem; padding: 0; }
.service-block li { color: var(--muted); font-size: 0.9rem; padding: 0.35rem 0; }
.service-block li + li { border-top: 1px solid var(--border); }
.service-block li strong { color: var(--sky); font-weight: 600; }

.columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 1.5rem;
  align-items: flex-start;
}

.columns > div { padding: 0.25rem 0; }
.columns h4 { font-size: 0.9rem; font-weight: 600; color: var(--sky); margin: 1rem 0 0.3rem; }
.columns > div > h4:first-of-type { margin-top: 0; }
.columns ul { margin: 0.25rem 0 0 1rem; padding: 0; }
.columns li { font-size: 0.88rem; color: var(--muted); padding: 0.2rem 0; }

/* ─────────────────────────────────────────────
   CONTACT
───────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px,1fr));
  gap: 1.75rem;
  margin-bottom: 2rem;
}

.contact-grid > div {
  background: var(--card);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.contact-grid > div h3 {
  font-size: 1.2rem;
  color: var(--sky);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border);
}

.contact-grid address {
  font-style: normal;
  margin: 0 0 1.25rem;
  color: var(--muted);
  line-height: 1.6;
  padding: 1rem;
  background: var(--cloud);
  border-radius: 12px;
  border-left: 3px solid var(--sun);
}

.contact-grid address strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--sky);
  font-family: 'outfit', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
}

.contact-grid address span { display: block; font-size: 0.88rem; }

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.25rem;
}

.contact-list li {
  padding: 0.6rem 0.75rem;
  border-radius: 10px;
  font-size: 0.9rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s;
}

.contact-list li:hover { background: var(--cloud); }
.contact-list li a { color: var(--sky); font-weight: 500; }
.contact-list li a:hover { color: var(--sun-deep); }

.contact-grid p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.9rem;
}

.contact-grid p strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--sky);
  font-weight: 600;
  font-size: 0.88rem;
}

.contact-grid p span {
  display: block;
  color: var(--muted);
}

.whatsapp-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  padding: 0.65rem 0.85rem;
  background: #f0fdf4;
  border-radius: 10px;
  border: 1px solid #bbf7d0;
  font-size: 0.9rem;
  color: var(--muted);
}

.whatsapp-line a {
  font-weight: 600;
  color: #16a34a;
}

.whatsapp-line a:hover { text-decoration: underline; }

.service-areas { margin-top: 1rem; }

.service-areas strong {
  font-family: 'outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--sky);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.6rem;
}

.service-areas__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-areas__list li {
  font-size: 0.85rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
  color: var(--muted);
}

.service-areas__list li:last-child { border-bottom: none; }

.area-name {
  font-weight: 700;
  color: var(--sky);
}

/* CONTACT FORM */
.contact-form {
  background: var(--card);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.contact-form h3 {
  font-size: 1.2rem;
  color: var(--sky);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border);
}

.contact-form label {
  display: flex;
  flex-direction: column;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--sky);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  gap: 0.4rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 0.75rem 1rem;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  font-family: 'outfit', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cloud);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--sun);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.12);
  background: white;
}

.contact-form textarea { resize: vertical; }

.contact-form .btn.primary {
  font-size: 1rem;
  padding: 0.85rem;
  border-radius: 10px;
  letter-spacing: 0.02em;
  margin-top: 0.5rem;
}

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0.75rem 0 0;
}

/* WHY CONTACT */
.why-contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px,1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.why-contact article {
  background: var(--card);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.why-contact article::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-sun);
}

.why-contact article h4 {
  font-size: 0.95rem;
  color: var(--sky);
  margin-bottom: 0.35rem;
}

.why-contact article p {
  font-size: 0.84rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

/* ─────────────────────────────────────────────
   RECENT INSTALLATIONS
───────────────────────────────────────────── */
.recent-installations {
  margin: 2rem 0 3rem;
  text-align: center;
}

.recent-installations h2 {
  font-size: clamp(1.1rem, 1.95vw, 1.6rem);
  color: var(--sky);
  margin-bottom: 0.5rem;
}

.installations-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 1.5rem;
  margin-top: 1.75rem;
  text-align: left;
}

.installation-card {
  background: var(--card);
  border-radius: 18px;
  padding: 1.25rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
}

.installation-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
}

.installation-card h3 {
  font-size: 0.95rem;
  color: var(--sky);
  margin-bottom: 0.85rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--border);
}

.installation-gallery {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 0.85rem;
}

.installation-gallery img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--border);
  transition: transform 0.2s, opacity 0.2s;
}

.installation-gallery img:hover {
  transform: scale(1.06);
  opacity: 0.95;
  z-index: 1;
  position: relative;
}

/* ─────────────────────────────────────────────
   CUSTOMER FEEDBACK / TESTIMONIALS
───────────────────────────────────────────── */
.testimonials {
  margin: 0 0 3rem;
  text-align: center;
}

.testimonials h2 {
  font-size: clamp(1.1rem, 1.85vw, 1.55rem);
  color: var(--sky);
  margin-bottom: 0.5rem;
}

.testimonials-intro {
  max-width: 640px;
  margin: 0 auto 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.testimonial-video-card {
  max-width: 840px;
  margin: 0 auto;
  background: var(--card);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  padding: 1.25rem 1.5rem 1.4rem;
}

.testimonial-video-wrapper {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
}

.testimonial-video-wrapper .video-watermark {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 72px;
  height: 72px;
  object-fit: contain;
  padding: 8px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.35);
  pointer-events: none;
  user-select: none;
  z-index: 2;
}

.testimonial-video-wrapper video {
  display: block;
  width: 100%;
  height: auto;
  max-height: 480px;
}

.testimonial-caption {
  margin: 0.9rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}
/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
footer {
  background: var(--sky);
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 1.25rem 1rem;
  font-size: 0.85rem;
}

footer p { margin: 0; }

/* ─────────────────────────────────────────────
   SOCIAL LINKS
───────────────────────────────────────────── */
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.social-links a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sky);
  padding: 0.35rem 0.85rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  transition: all 0.2s;
}

.social-links a:hover {
  background: var(--sky);
  color: white;
  border-color: var(--sky);
}

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 960px) {
  .cta-group {
    margin-left: 0;
    width: 100%;
    flex: 1 1 100%;
  }

  .cta-group .btn {
    flex: 1;
  }

  .primary-nav {
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: stretch;
    align-items: stretch;
    right: calc(100% + 0.55rem);
    min-width: min(232px, calc(100vw - 5rem));
    width: min(300px, calc(100vw - 4rem));
  }
  .hero { grid-template-columns: 1fr; gap: 2rem; }
  .about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  main { padding: 0 0 3rem; }

  .site-header { border-radius: 0; }

  .hero {
    margin-left: 0;
    margin-right: 0;
    padding: 2rem 1.25rem 2.5rem;
  }

  .hero-visual__card { padding: 1.25rem; }

  .intro, .stats, .service-preview, .recent-installations {
    padding: 0 1rem;
  }

  .section-header, .service-block, .about-grid, .contact-grid,
  .why-contact, .two-column, .columns, .installations-list {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .tab-panel { padding: 0; }

  .primary-nav .tab-link {
    flex: 1 1 calc(50% - 0.25rem);
    min-width: 110px;
  }

  .hero-stats { flex-wrap: wrap; gap: 1rem; }
  
  .primary-nav {
    min-width: min(220px, calc(100vw - 4.25rem));
    width: min(280px, calc(100vw - 4.25rem));
  }
}
                        