:root {
  --navy: #0a1628;
  --navy-mid: #112240;
  --navy-light: #1a3a5c;
  --gold: #f5b800;
  --gold-light: #ffd449;
  --white: #ffffff;
  --off-white: #f7f8fa;
  --grey: #f0f2f5;
  --text: #1e293b;
  --text-muted: #64748b;
  --radius: 12px;
  --shadow: 0 8px 32px rgba(10, 22, 40, 0.12);
  --shadow-lg: 0 20px 60px rgba(10, 22, 40, 0.18);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', serif;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
}

/* TOP BAR */
.topbar {
  background: var(--navy);
  height: 40px;
  display: flex;
  align-items: center;
  padding: 0 60px;
  position: relative;
  z-index: 100;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.topbar a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.topbar a:hover {
  color: #009dd6;
}

.topbar-location {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar-btn {
  background: #009dd6;
  color: var(--navy) !important;
  font-weight: 600 !important;
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 12px !important;
  transition: background 0.2s, transform 0.2s !important;
}

.topbar-btn:hover {
  background: var(--gold-light) !important;
  transform: scale(1.04);
}

/* NAV */
.navbar {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  padding: 0 60px;
  display: flex;
  align-items: center;
  height: 72px;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 24px rgba(10, 22, 40, 0.08);
  transition: box-shadow 0.3s;
}

.navbar-inner {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #009dd6, #ff9900);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--navy);
}

.logo-text span {
  color: #009dd6;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  margin-left: auto;
  margin-right: 36px;
}

.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #009dd6;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--navy);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--navy);
  font-weight: 600;
}

.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: white;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 22, 40, 0.25);
}

/* HERO SLIDER */
.hero {
  position: relative;
  height: 92vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  display: flex;
  align-items: center;
}

.slide.active {
  opacity: 1;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: heroZoom 8s ease-in-out infinite alternate;
}

.slide.active .slide-bg {
  animation-play-state: running;
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.06);
  }
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10, 22, 40, 0.82) 0%, rgba(10, 22, 40, 0.45) 60%, transparent 100%);
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
  width: 100%;
}

.slide-tag {
  display: inline-block;
  background: #009dd6;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s 0.2s, transform 0.6s 0.2s;
}

.slide.active .slide-tag {
  opacity: 1;
  transform: translateY(0);
}

.slide-content h1 {
  font-size: 48px;
  color: white;
  line-height: 1.50;
  max-width: 700px;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s 0.35s, transform 0.7s 0.35s;
}

.slide.active .slide-content h1 {
  opacity: 1;
  transform: translateY(0);
}

.slide-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s 0.5s, transform 0.6s 0.5s;
}

.slide.active .slide-content p {
  opacity: 1;
  transform: translateY(0);
}

.hero-btns {
  display: flex;
  gap: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s 0.65s, transform 0.6s 0.65s;
}

.slide.active .hero-btns {
  opacity: 1;
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(135deg, #009dd6, #ff9900);
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 20px rgba(245, 184, 0, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(245, 184, 0, 0.5);
}

.btn-secondary {
  background: transparent;
  color: white;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: all 0.2s;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.7);
}

.hero-dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  width: 28px;
  background: #009dd6;
}

.hero-arrows {
  position: absolute;
  bottom: 28px;
  right: 80px;
  display: flex;
  gap: 10px;
  z-index: 10;
}

.arrow-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: white;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow-btn:hover {
  background: #009dd6;
  border-color: #009dd6;
  color: var(--navy);
}

/* SECTION WRAPPER */
.section {
  padding: 30px 60px;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #009dd6;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-title.white {
  color: white;
}

.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
}

.section-sub.white {
  color: rgba(255, 255, 255, 0.72);
}

/* QUOTE FORM */
.quote-section {
  background: var(--off-white);
  padding: 80px 60px;
}

.quote-card {
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  padding: 56px 60px;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.quote-card .section-tag {
  text-align: center;
}

.quote-card .section-title {
  text-align: center;
  margin-bottom: 8px;
}

.quote-card .section-sub {
  text-align: center;
  margin: 0 auto 36px;
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.quote-grid.triple {
  grid-template-columns: 1fr 1fr 1fr;
}

.quote-grid.single {
  grid-template-columns: 1fr;
}

.form-field {
  background: var(--off-white);
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 14.5px;
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  width: 100%;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-field:focus {
  border-color: #009dd6;
  box-shadow: 0 0 0 3px rgba(245, 184, 0, 0.12);
}

select.form-field {
  appearance: none;
  cursor: pointer;
}

.btn-quote {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 48px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  width: 100%;
  margin-top: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.5px;
}

.btn-quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(10, 22, 40, 0.25);
}

.trust-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* COUNTERS */
.counters-section {
  background: var(--navy);
  padding: 72px 60px;
  position: relative;
  overflow: hidden;
}

.counters-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 184, 0, 0.08) 0%, transparent 70%);
}

.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.counter-item {
  position: relative;
}

.counter-item+.counter-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.counter-number {
  font-family: 'Playfair Display', serif;
  font-size: 54px;
  font-weight: 900;
  color: white;
  line-height: 1;
  margin-bottom: 6px;
}

.counter-number span {
  color: #009dd6;
}

.counter-number.small {
  font-size: 36px;
  padding-top: 8px;
}

.counter-underline {
  width: 40px;
  height: 3px;
  background: #009dd6;
  margin: 10px auto;
  border-radius: 2px;
}

.counter-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 400;
  line-height: 1.5;
}

/* ABOUT */
.about-section {
  background: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.about-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #009dd6;
  color: var(--navy);
  padding: 20px 28px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  font-family: 'Playfair Display', serif;
}

.about-badge .big {
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
}

.about-badge .small {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
}

.about-content {
  padding: 20px 0;
}

.about-content .section-sub {
  max-width: 100%;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--navy);
  color: var(--navy);
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  margin-top: 8px;
  transition: all 0.2s;
}

.btn-outline:hover {
  background: var(--navy);
  color: white;
}

/* WHY GO SOLAR */
.benefits-section {
  background: var(--grey);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.benefit-card {
  background: white;
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: 0 4px 20px rgba(10, 22, 40, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  border-bottom: 3px solid transparent;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: #009dd6;
}

.benefit-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(245, 184, 0, 0.15), rgba(255, 153, 0, 0.1));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}

.benefit-card h3 {
  font-size: 18px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--navy);
}

.benefit-card p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* SERVICES */
.services-section {
  background: white;
}

.services-header {
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.service-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(10, 22, 40, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.service-card:hover .service-img img {
  transform: scale(1.08);
}

.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(10, 22, 40, 0.4));
}

.service-body {
  padding: 24px 22px;
  background: white;
}

.service-body h3 {
  font-size: 17px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.service-body p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-link {
  font-size: 13px;
  font-weight: 700;
  color: #009dd6;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.service-card:hover .service-link {
  gap: 10px;
}

/* OUR CLIENTS CAROUSEL */
.clients-section {
  background: var(--off-white);
  padding: 96px 0 80px;
  overflow: hidden;
}

.clients-section .container {
  text-align: center;
  padding: 0 60px;
  margin-bottom: 56px;
}

.clients-header .section-tag {
  display: block;
}

.clients-header .section-title {
  margin-bottom: 12px;
}

.clients-header .section-sub {
  margin: 0 auto;
}

.overflow-hidden {
  overflow: hidden;
}

.clients-carousel {
  position: relative;
  width: 100%;
  padding: 20px 0;
}

.clients-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.client-logo-item {
  flex: 0 0 calc((100% - 150px) / 6);
  background: white;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(10, 22, 40, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  transition: all 0.4s ease;
  border: 1px solid rgba(10, 22, 40, 0.03);
}

.client-logo-item:hover {
  box-shadow: 0 15px 45px rgba(10, 22, 40, 0.12);
  transform: translateY(-8px);
  border-color: rgba(245, 184, 0, 0.3);
}

.client-logo-item img {
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.65;
  transition: all 0.4s ease;
}

.client-logo-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* Responsiveness for carousel */
@media (max-width: 1200px) {
  .client-logo-item {
    flex: 0 0 calc((100% - 60px) / 3);
  }
}

@media (max-width: 768px) {
  .client-logo-item {
    flex: 0 0 calc((100% - 30px) / 2);
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .client-logo-item {
    flex: 0 0 100%;
    padding: 40px;
  }
}



/* CTA BANNER */
.cta-section {
  background: var(--navy);
  padding: 96px 60px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '☀';
  position: absolute;
  font-size: 500px;
  opacity: 0.03;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #009dd6;
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-section .section-title {
  text-align: center;
  margin-bottom: 16px;
}

.cta-section .section-sub {
  text-align: center;
  margin: 0 auto 40px;
}

.btn-cta {
  display: inline-block;
  text-decoration: none;
  background: linear-gradient(135deg, #009dd6, #ff9900);
  color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 17px;
  padding: 18px 52px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 28px rgba(245, 184, 0, 0.4);
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(245, 184, 0, 0.55);
}

.cta-trust {
  margin-top: 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.cta-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* FOOTER */
.footer {
  background: #07101f;
  padding: 72px 60px 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: #009dd6;
}

.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: white;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: #009dd6;
  border-radius: 2px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s, padding-left 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul li a:hover {
  color: #009dd6;
  padding-left: 4px;
}

.footer-col ul li a::before {
  content: '›';
  color: #009dd6;
  font-size: 16px;
}

.footer-address {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  display: flex;
  gap: 10px;
}

.footer-address .icon {
  color: #009dd6;
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.footer-bottom p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom .heart {
  color: #009dd6;
}

/* ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s, transform 0.7s;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* SCROLL TO TOP */
.scroll-top {
  position: fixed;
  bottom: 36px;
  right: 36px;
  width: 46px;
  height: 46px;
  background: #009dd6;
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(245, 184, 0, 0.4);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s;
  z-index: 500;
  border: none;
}

.scroll-top.show {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-4px) scale(1.08);
}

/* ===========================
   ABOUT US PAGE
   =========================== */

/* PAGE HERO */
.page-hero {
  position: relative;
  height: 52vh;
  min-height: 200px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--navy);
  background-size: cover;
  background-position: center;
  z-index: -1;
  animation: heroZoom 10s ease-in-out infinite alternate;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10, 22, 40, 0.7) 0%, rgba(10, 22, 40, 0.4) 60%, transparent 100%);
  z-index: 0;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
  width: 100%;
}

.page-hero-content h1 {
  font-size: clamp(34px, 4.5vw, 60px);
  color: white;
  line-height: 1.15;
  margin: 16px 0 18px;
}

.page-hero-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a {
  color: #009dd6;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: white;
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.4);
}

/* MISSION / VISION */
.mv-section {
  background: var(--grey);
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 860px;
  margin: 0 auto;
}

.mv-card {
  background: white;
  border-radius: var(--radius);
  padding: 44px 36px;
  box-shadow: 0 4px 24px rgba(10, 22, 40, 0.07);
  text-align: center;
  border-top: 4px solid #009dd6;
  transition: transform 0.3s, box-shadow 0.3s;
}

.mv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.mv-icon {
  font-size: 42px;
  margin-bottom: 20px;
  display: block;
}

.mv-card h3 {
  font-size: 20px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}

.mv-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
}

.mv-list {
  list-style: none;
  margin-top: 8px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mv-list li {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
}

.mv-list li::before {
  content: '\25CF';
  position: absolute;
  left: 0;
  color: #009dd6;
  font-size: 8px;
  top: 6px;
}

/* ===========================
   SERVICES PAGE
   =========================== */
.service-details-wrap {
  padding: 0;
}

.service-detail-row {
  padding: 80px 0;
  background: white;
}

.service-detail-grid {
  display: flex;
  align-items: center;
  gap: 60px;
}

.service-detail-row.reverse .service-detail-grid {
  flex-direction: row-reverse;
}

.service-detail-img {
  flex: 1;
  position: relative;
  border-radius: 20px;
}

.service-detail-img img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.service-detail-badge {
  position: absolute;
  bottom: 30px;
  right: -30px;
  background: white;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  box-shadow: 0 10px 30px rgba(0, 157, 214, 0.15);
  border: 4px solid var(--off-white);
}

.service-detail-row.reverse .service-detail-badge {
  right: auto;
  left: -30px;
}

.service-detail-content {
  flex: 1;
}

@media (max-width: 991px) {

  .service-detail-grid,
  .service-detail-row.reverse .service-detail-grid {
    flex-direction: column;
    gap: 40px;
  }

  .service-detail-img {
    width: 100%;
  }

  .service-detail-img img {
    height: 320px;
  }

  .service-detail-badge {
    right: 20px;
    bottom: -20px;
    width: 70px;
    height: 70px;
    font-size: 30px;
  }

  .service-detail-row.reverse .service-detail-badge {
    left: 20px;
  }
}

/* CORE VALUES */
.values-section {
  background: white;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.value-item {
  padding: 36px 32px;
  border-radius: var(--radius);
  background: var(--off-white);
  border-left: 4px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.value-item:hover {
  border-left-color: #009dd6;
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.value-num {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 900;
  color: rgba(0, 157, 214, 0.18);
  line-height: 1;
  margin-bottom: 12px;
}

.value-item h4 {
  font-size: 17px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.value-item p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* WHY CHOOSE US */
.why-section {
  background: var(--grey);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-list {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.why-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
}

.why-check {
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, #009dd6, #0077a8);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

.why-image-wrap {
  position: relative;
  border-radius: 20px;
  overflow: visible;
}

.why-image-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  display: block;
}

.why-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--navy);
  color: white;
  padding: 18px 24px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 14px;
}

.why-badge-icon {
  font-size: 32px;
}

.why-badge strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #009dd6;
}

.why-badge span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

/* PROCESS */
.process-section {
  background: white;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(to right, #009dd6, rgba(0, 157, 214, 0.2));
  z-index: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px 0;
  position: relative;
  z-index: 1;
}

.process-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #009dd6, #ff9900);
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(0, 157, 214, 0.35);
  flex-shrink: 0;
}

.process-body h4 {
  font-size: 16px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.process-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* PROJECTS SECTION */
.projects-section {
  background: var(--off-white);
  padding: 96px 60px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.project-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(10, 22, 40, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.project-img {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
}

.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-img img {
  transform: scale(1.08);
}

.project-content {
  padding: 24px 28px;
  border-top: 3px solid #009dd6;
  text-align: center;
}

.project-capacity {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 8px;
}

.project-location {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.project-industry {
  font-size: 14.5px;
  color: var(--text-muted);
}

@media (max-width: 991px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* TOPBAR */
  .topbar {
    padding: 0 20px;
    height: auto;
    min-height: 40px;
  }

  .topbar-inner {
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 0;
  }

  .topbar-right .topbar-location {
    display: none;
  }

  /* NAVBAR */
  .navbar {
    padding: 0 20px;
  }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    height: calc(100vh - 72px);
    background: white;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 32px;
    padding: 20px 40px;
    transform: translateX(101%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 998;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 20px;
    color: var(--navy);
  }

  .nav-links a::after {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  /* MENU TOGGLE */
  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
  }

  .menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--navy);
    border-radius: 2px;
    transition: 0.3s;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  /* GENERAL */
  .section {
    padding: 60px 20px;
  }

  .container {
    padding: 0 15px;
  }

  .about-grid,
  .why-grid,
  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-detail-row.reverse .service-detail-grid {
    display: flex;
    flex-direction: column-reverse;
  }

  .about-img img,
  .why-image-wrap img {
    height: 350px;
  }
}

@media (max-width: 768px) {

  /* TOPBAR */
  .topbar-inner {
    justify-content: center;
    text-align: center;
  }

  .topbar-right {
    display: none;
  }

  .topbar-left {
    flex-direction: column;
    gap: 8px;
  }

  /* HERO */
  .hero {
    height: min(600px, 80vh);
  }

  .slide-content {
    padding: 0 20px;
    text-align: center;
  }

  .page-hero-content {
    padding: 0 10px !important;
  }

  .slide-content h1 {
    font-size: 28px;
    margin: 0 auto 20px;
    line-height: 1.3;
  }

  .slide-content p {
    font-size: 15px;
    margin: 0 auto 30px;
  }

  .hero-btns {
    justify-content: center;
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .hero-arrows {
    display: none;
  }

  /* QUOTE */
  .quote-section {
    padding: 40px 15px;
  }

  .quote-card {
    padding: 30px 20px;
  }

  .quote-grid {
    grid-template-columns: 1fr;
  }

  /* COUNTERS */
  .counters-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .counter-item+.counter-item::before {
    display: none;
  }

  /* CLIENTS */
  .clients-track--left {
    animation-duration: 120s;
  }

  .client-logo-item {
    min-width: 200px;
    height: 110px;
    padding: 15px 25px;
  }

  .client-logo-item img {
    max-height: 90px;
    max-width: 160px;
    filter: grayscale(0%) !important;
    opacity: 1 !important;
  }

  /* BENEFITS & SERVICES */
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* CTA */
  .cta-section {
    padding: 96px 20px;
  }

  /* FOOTER */
  .footer {
    padding: 60px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: left;
  }

  .footer-address,
  .footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  /* MISC */
  .about-badge {
    right: 10px;
    bottom: 10px;
    padding: 12px 18px;
  }

  .about-badge .big {
    font-size: 24px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .process-grid::before {
    display: none;
  }

  .projects-section {
    padding: 60px 20px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .counters-grid {
    grid-template-columns: 1fr;
  }

  .section-tag {
    font-size: 11px;
    letter-spacing: 2px;
  }

  .section-title {
    font-size: 24px;
  }
}