/* ============================================
   Convex Solar Solutions - Main Stylesheet
   ============================================ */

:root {
  --primary-blue: #0B4DBB;
  --dark-blue: #003E8A;
  --green: #0B7A3E;
  --orange: #FF9800;
  --light-gray: #F7F9FC;
  --white: #FFFFFF;
  --text-dark: #1a1a2e;
  --text-muted: #6c757d;
  --shadow-sm: 0 2px 8px rgba(11, 77, 187, 0.08);
  --shadow-md: 0 8px 30px rgba(11, 77, 187, 0.12);
  --shadow-lg: 0 15px 50px rgba(11, 77, 187, 0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
  --font-family: 'Poppins', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-family);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.7;
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* ---- Loading Screen ---- */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.5rem;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-sun {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #ffc107);
  box-shadow: 0 0 30px rgba(255, 152, 0, 0.5);
  animation: pulse-sun 1.2s ease-in-out infinite;
}

.loader-text {
  font-weight: 600;
  color: var(--primary-blue);
  font-size: 0.95rem;
  letter-spacing: 1px;
}

@keyframes pulse-sun {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

/* ---- Typography Utilities ---- */
.container {
  max-width: 1200px;
}

.section-padding {
  padding: 88px 0;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 0.85rem;
  position: relative;
  letter-spacing: -0.02em;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.02rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.75;
}

.section-badge {
  display: inline-block;
  background: rgba(11, 77, 187, 0.1);
  color: var(--primary-blue);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.text-primary-blue { color: var(--primary-blue); }
.text-green { color: var(--green); }
.text-orange { color: var(--orange); }

.bg-light-gray { background-color: var(--light-gray); }

/* ---- Buttons ---- */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
  color: var(--white);
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary-custom:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
}

.btn-outline-custom {
  background: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
  padding: 10px 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-custom:hover {
  background: var(--primary-blue);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-orange {
  background: linear-gradient(135deg, var(--orange), #f57c00);
  color: var(--white);
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-orange:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 152, 0, 0.35);
}

.btn-green {
  background: linear-gradient(135deg, var(--green), #096b34);
  color: var(--white);
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-green:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(11, 122, 62, 0.35);
}

.btn-sm-custom {
  padding: 8px 20px;
  font-size: 0.85rem;
}

/* ---- Header / Navbar ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}

.site-header .navbar {
  padding: 0;
  align-items: center;
}

.site-header .navbar-brand {
  display: flex;
  align-items: center;
  margin-right: 1.5rem;
  padding: 0;
  min-height: 80px;
}

.brand-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  line-height: 0;
  transition: var(--transition);
}

.site-header.scrolled .brand-logo-wrap {
  background: transparent;
  padding: 0;
  box-shadow: none;
}

/* Header over dark banner (home hero + inner page banners) */
body.page-home .site-header:not(.scrolled),
body.page-inner .site-header:not(.scrolled) {
  background: linear-gradient(180deg, rgba(0, 35, 80, 0.82) 0%, rgba(0, 35, 80, 0.35) 75%, transparent 100%);
}

body.page-home .site-header:not(.scrolled) .nav-link:not(.dropdown-toggle),
body.page-home .site-header:not(.scrolled) .nav-link.dropdown-toggle,
body.page-inner .site-header:not(.scrolled) .nav-link:not(.dropdown-toggle),
body.page-inner .site-header:not(.scrolled) .nav-link.dropdown-toggle {
  color: rgba(255, 255, 255, 0.93);
}

body.page-home .site-header:not(.scrolled) .nav-link:not(.dropdown-toggle):hover,
body.page-home .site-header:not(.scrolled) .nav-link:not(.dropdown-toggle).active,
body.page-home .site-header:not(.scrolled) .nav-link.dropdown-toggle:hover,
body.page-home .site-header:not(.scrolled) .nav-link.dropdown-toggle.show,
body.page-inner .site-header:not(.scrolled) .nav-link:not(.dropdown-toggle):hover,
body.page-inner .site-header:not(.scrolled) .nav-link:not(.dropdown-toggle).active,
body.page-inner .site-header:not(.scrolled) .nav-link.dropdown-toggle:hover,
body.page-inner .site-header:not(.scrolled) .nav-link.dropdown-toggle.show {
  color: var(--white);
}

body.page-home .site-header:not(.scrolled) .nav-link:not(.dropdown-toggle)::after,
body.page-inner .site-header:not(.scrolled) .nav-link:not(.dropdown-toggle)::after {
  background: var(--orange);
}

body.page-home .site-header:not(.scrolled) .header-actions .btn-outline-custom,
body.page-inner .site-header:not(.scrolled) .header-actions .btn-outline-custom {
  border-color: rgba(255, 255, 255, 0.9);
  color: var(--white);
}

body.page-home .site-header:not(.scrolled) .header-actions .btn-outline-custom:hover,
body.page-inner .site-header:not(.scrolled) .header-actions .btn-outline-custom:hover {
  background: var(--white);
  color: var(--primary-blue);
  border-color: var(--white);
}

body.page-home .site-header:not(.scrolled) .navbar-toggler-icon-custom,
body.page-inner .site-header:not(.scrolled) .navbar-toggler-icon-custom {
  color: var(--white);
}

.brand-logo {
  height: 52px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}

.brand-logo-horizontal {
  height: 78px;
  max-width: 420px;
  width: auto;
}

.site-header .nav-link:not(.dropdown-toggle) {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-dark);
  padding: 10px 16px;
  position: relative;
  letter-spacing: 0.2px;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.site-header .nav-link.dropdown-toggle {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-dark);
  padding: 10px 16px;
  letter-spacing: 0.2px;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.site-header .nav-link:not(.dropdown-toggle):hover,
.site-header .nav-link:not(.dropdown-toggle).active,
.site-header .nav-link.dropdown-toggle:hover,
.site-header .nav-link.dropdown-toggle.show {
  color: var(--primary-blue);
}

.site-header .nav-link:not(.dropdown-toggle)::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-blue);
  transition: var(--transition);
  transform: translateX(-50%);
  border-radius: 2px;
}

.site-header .nav-link:not(.dropdown-toggle):hover::after,
.site-header .nav-link:not(.dropdown-toggle).active::after {
  width: 50%;
}

.site-header .navbar-nav {
  align-items: center;
  gap: 2px;
}

.site-header .nav-item {
  display: flex;
  align-items: center;
}

@media (min-width: 992px) {
  .site-header .navbar-collapse {
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    flex-grow: 1;
  }

  .site-header .navbar-nav {
    flex: 1;
    justify-content: center;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .header-actions {
    margin-left: 0;
    flex-shrink: 0;
  }
}

.site-header.scrolled .nav-link:not(.dropdown-toggle).active {
  color: var(--primary-blue);
  font-weight: 600;
}

.site-header .dropdown-toggle::after {
  margin-left: 2px;
  vertical-align: middle;
  border-top-color: currentColor;
}

.site-header .dropdown-menu {
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 10px;
  margin-top: 10px;
}

.site-header .dropdown-item {
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
}

.site-header .dropdown-item:hover {
  background: rgba(11, 77, 187, 0.08);
  color: var(--primary-blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header-actions .btn-sm-custom {
  white-space: nowrap;
}

.navbar-toggler {
  border: none;
  padding: 6px 10px;
}

.navbar-toggler-icon-custom {
  font-size: 1.75rem;
  color: var(--text-dark);
  line-height: 1;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* ---- Hero Section ---- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 60px;
}

.hero-section .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-row {
  --bs-gutter-x: 3rem;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(0, 45, 100, 0.92) 0%, rgba(11, 77, 187, 0.82) 45%, rgba(11, 122, 62, 0.55) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 24px 0;
  max-width: 580px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 1.75rem;
  color: var(--white);
}

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.15rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.05rem;
  opacity: 0.94;
  margin-bottom: 2.25rem;
  max-width: 520px;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 460px;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-stat-item {
  padding: 0 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-stat-item:first-child {
  padding-left: 0;
}

.hero-stat-item:last-child {
  border-right: none;
  padding-right: 0;
}

.hero-stat-item h3 {
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1;
}

.hero-stat-item p {
  font-size: 0.8rem;
  opacity: 0.88;
  margin: 0;
  line-height: 1.4;
}

.hero-image-wrap {
  position: relative;
  z-index: 2;
  padding: 16px 0 32px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  border: 3px solid rgba(255, 255, 255, 0.25);
  width: 100%;
  max-width: 520px;
  margin-left: auto;
}

.hero-image-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.hero-float-card {
  position: absolute;
  bottom: 8px;
  left: -24px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.hero-float-card .icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--green), #0a9e4a);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
}

.hero-float-card h5 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.hero-float-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

/* ---- Feature Cards ---- */
.row.g-4 {
  --bs-gutter-y: 1.5rem;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(11, 77, 187, 0.1), rgba(11, 122, 62, 0.1));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary-blue);
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--primary-blue), var(--green));
  color: var(--white);
}

.feature-card h5 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* ---- About Section ---- */
.about-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image-wrap img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-experience-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
  color: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-experience-badge h3 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 0;
}

.about-experience-badge p {
  font-size: 0.85rem;
  margin: 0;
  opacity: 0.9;
}

.about-content h2 {
  margin-bottom: 1.25rem;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.about-list {
  margin: 1.5rem 0;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.about-list li i {
  color: var(--green);
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ---- Service Cards ---- */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.service-card-img {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.08);
}

.service-card-icon {
  position: absolute;
  bottom: -24px;
  left: 24px;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

.service-card-body {
  padding: 36px 24px 24px;
}

.service-card-body h5 {
  margin-bottom: 10px;
}

.service-card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.read-more-link {
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.read-more-link:hover {
  color: var(--dark-blue);
  gap: 10px;
}

/* ---- Product Cards ---- */
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(11, 77, 187, 0.15);
}

.product-card .product-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--primary-blue);
  transition: var(--transition);
}

.product-card:hover .product-icon {
  background: linear-gradient(135deg, var(--primary-blue), var(--green));
  color: var(--white);
}

.product-card h6 {
  font-size: 0.95rem;
  margin: 0;
}

/* ---- Work Process Timeline ---- */
.process-timeline {
  position: relative;
  padding: 20px 0;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary-blue), var(--green));
  border-radius: 3px;
}

.process-step {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
}

.process-step:nth-child(even) {
  flex-direction: row-reverse;
}

.process-step:nth-child(even) .process-content {
  text-align: right;
}

.process-content {
  width: 45%;
  padding: 0 30px;
}

.process-number {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  z-index: 2;
  border: 4px solid var(--white);
}

.process-content h5 {
  margin-bottom: 8px;
  color: var(--primary-blue);
}

.process-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* ---- Benefits Cards ---- */
.benefit-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  border-left: 4px solid var(--primary-blue);
}

.benefit-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.benefit-card .benefit-icon {
  width: 56px;
  height: 56px;
  background: rgba(11, 77, 187, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-blue);
  flex-shrink: 0;
}

.benefit-card h5 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.benefit-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

/* ---- Gallery ---- */
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 62, 138, 0.85), transparent);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h6 {
  color: var(--white);
  margin: 0;
  font-size: 0.95rem;
}

/* ---- Brand Slider ---- */
.brands-section {
  padding: 50px 0;
  background: var(--white);
  overflow: hidden;
}

.brands-slider-wrap {
  overflow: hidden;
  position: relative;
}

.brands-slider-wrap::before,
.brands-slider-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.brands-slider-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}

.brands-slider-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}

.brands-track {
  display: flex;
  gap: 50px;
  animation: brandScroll 30s linear infinite;
  width: max-content;
}

.brands-track:hover {
  animation-play-state: paused;
}

.brand-item {
  flex-shrink: 0;
  width: 140px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: 12px 20px;
  transition: var(--transition);
}

.brand-item:hover {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.brand-item span {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary-blue);
  text-align: center;
}

@keyframes brandScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- Testimonials ---- */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  margin: 20px 10px;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 5rem;
  color: rgba(11, 77, 187, 0.08);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-stars {
  color: var(--orange);
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-blue), var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial-author h6 {
  margin-bottom: 2px;
  font-size: 0.95rem;
}

.testimonial-author p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.testimonial-dot.active {
  background: var(--primary-blue);
  width: 28px;
  border-radius: 5px;
}

/* ---- FAQ ---- */
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-family);
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--primary-blue);
}

.faq-question i {
  transition: transform 0.3s ease;
  color: var(--primary-blue);
  flex-shrink: 0;
}

.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ---- Contact Section ---- */
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.contact-info-card .contact-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.contact-info-card h5 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.contact-info-card p,
.contact-info-card a {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.contact-info-card a:hover {
  color: var(--primary-blue);
}

.map-placeholder {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 350px;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(11, 77, 187, 0.2);
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---- Footer ---- */
.site-footer {
  background: linear-gradient(135deg, var(--dark-blue) 0%, #002a5c 100%);
  color: rgba(255, 255, 255, 0.85);
  padding-top: 70px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img,
.footer-logo .footer-brand-logo {
  margin-bottom: 0;
}

.footer-brand-logo {
  display: block;
  width: 100%;
  max-width: 280px;
  height: auto;
  background: var(--white);
  padding: 18px 22px;
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
  object-fit: contain;
}

.footer-about p {
  font-size: 0.9rem;
  line-height: 1.8;
  opacity: 0.85;
}

.footer-title {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  opacity: 0.85;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--orange);
  opacity: 1;
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
}

.footer-contact li i {
  color: var(--orange);
  margin-top: 4px;
  flex-shrink: 0;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  margin-top: 50px;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.85;
}

.footer-bottom p {
  margin: 0;
  line-height: 1.7;
}

.footer-credit {
  margin-top: 8px !important;
  font-size: 0.8rem;
  opacity: 0.8;
}

.footer-credit span {
  color: var(--orange);
  font-weight: 600;
}

/* ---- Page Banner ---- */
.page-banner {
  position: relative;
  padding: 170px 0 80px;
  background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.15;
}

.page-banner-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  text-align: center;
}

.page-banner h1 {
  color: var(--white);
  font-size: 2.75rem;
  margin-bottom: 12px;
}

.breadcrumb-custom {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
  opacity: 0.9;
}

.breadcrumb-custom a:hover {
  color: var(--orange);
}

/* ---- About Page ---- */
.mission-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  height: 100%;
  text-align: center;
  transition: var(--transition);
  border-top: 4px solid var(--primary-blue);
}

.mission-card:hover {
  transform: translateY(-6px);
}

.mission-card .icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: rgba(11, 77, 187, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary-blue);
}

.value-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.value-item .value-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--green), #0a9e4a);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.journey-timeline {
  position: relative;
  padding-left: 30px;
}

.journey-timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary-blue);
}

.journey-item {
  position: relative;
  margin-bottom: 30px;
  padding-left: 24px;
}

.journey-item::before {
  content: '';
  position: absolute;
  left: -26px;
  top: 6px;
  width: 14px;
  height: 14px;
  background: var(--primary-blue);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--primary-blue);
}

.journey-item h5 {
  color: var(--primary-blue);
  margin-bottom: 6px;
}

.journey-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-card .stat-number {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--primary-blue);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-card .stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.strength-item {
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}

.strength-item:hover {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.strength-item i {
  font-size: 1.5rem;
  color: var(--primary-blue);
}

/* ---- Services Page ---- */
.service-detail-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 40px;
}

.service-detail-img {
  height: 300px;
  overflow: hidden;
}

.service-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail-body {
  padding: 36px;
}

.service-detail-body h3 {
  margin-bottom: 16px;
  color: var(--primary-blue);
}

.service-detail-body p {
  color: var(--text-muted);
  margin-bottom: 12px;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.service-feature-tag {
  background: rgba(11, 77, 187, 0.08);
  color: var(--primary-blue);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
}

/* ---- Contact Page ---- */
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.contact-form-card .form-label {
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
  border: 1px solid #e0e4ea;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.95rem;
  font-family: var(--font-family);
  transition: var(--transition);
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(11, 77, 187, 0.12);
}

/* ---- Policy Pages ---- */
.policy-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-sm);
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.policy-content h2 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  color: var(--primary-blue);
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content p,
.policy-content li {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.policy-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.policy-updated {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

/* ---- Modal ---- */
.modal-content {
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.modal-header {
  background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
  color: var(--white);
  border: none;
  padding: 24px 28px;
}

.modal-header .btn-close {
  filter: brightness(0) invert(1);
}

.modal-body {
  padding: 28px;
}

.modal-body .form-label {
  font-weight: 500;
  font-size: 0.9rem;
}

.modal-body .form-control,
.modal-body .form-select {
  border-radius: 10px;
  padding: 10px 14px;
  font-family: var(--font-family);
}

.modal-body .form-control:focus,
.modal-body .form-select:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(11, 77, 187, 0.12);
}

/* ---- Floating Buttons ---- */
.floating-buttons {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.floating-btn:hover {
  transform: scale(1.1);
  color: var(--white);
}

.floating-btn.whatsapp {
  background: #25D366;
}

.floating-btn.call {
  background: var(--primary-blue);
}

.floating-btn.back-to-top {
  background: var(--orange);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.floating-btn.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ---- CTA Section ---- */
.cta-section {
  background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-content p {
  opacity: 0.9;
  margin-bottom: 28px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- Glass Card ---- */
.glass-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 24px;
}

/* ---- Animations ---- */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-bg-image {
  background-image: url('../images/hero/hero-bg.jpg');
}

img[data-src] {
  min-height: 100%;
  background: var(--light-gray);
}

img.loaded {
  background: none;
}
.btn-outline-white {
  border-color: rgba(255, 255, 255, 0.9);
  color: var(--white);
  background: transparent;
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary-blue);
  border-color: var(--white);
}

.hero-buttons .btn {
  min-width: 168px;
  justify-content: center;
}

.info-box {
  background: var(--light-gray);
  border: none;
  padding: 28px;
  border-radius: var(--radius);
}

.about-page-image {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.thank-you-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.thank-you-icon {
  display: inline-flex;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--green), #0a9e4a);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2.5rem;
}
