/* ===========================
   SKY GLOW RENEWABLE - STYLESHEET
   Blue & White Professional Theme
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;600;700;800;900&display=swap');

/* ---- CSS Variables ---- */
:root {
  --primary: #0057B8;
  --primary-dark: #003F8A;
  --primary-light: #2D80E8;
  --accent: #FFB300;
  --accent-glow: rgba(255, 179, 0, 0.12);
  --accent-blue: #00AEEF;
  --white: #FFFFFF;
  --off-white: #F4F8FF;
  --light-gray: #EEF3FB;
  --text-dark: #0A1628;
  --text-mid: #334D6E;
  --text-light: #6B84A0;
  --border: #D0DEF0;
  --shadow-sm: 0 2px 8px rgba(0, 87, 184, 0.08);
  --shadow-md: 0 8px 32px rgba(0, 87, 184, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 87, 184, 0.18);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --gradient: linear-gradient(135deg, #0057B8 0%, #1A237E 100%);
  --gradient-hero: linear-gradient(135deg, rgba(0,63,138,0.92) 0%, rgba(26,35,126,0.75) 100%);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Section Shared ---- */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-tag {
  display: inline-block;
  background: rgba(0,87,184,0.08);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
  border: 1px solid rgba(0,87,184,0.15);
}
.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 16px;
}
.section-title span {
  background: linear-gradient(135deg, #0057B8, #1A237E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-desc {
  color: var(--text-mid);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 87, 184, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 87, 184, 0.5);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
  backdrop-filter: blur(4px);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}
.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
}
.btn-lg { padding: 18px 44px; font-size: 1.05rem; }

/* ============================================
   NAVBAR
   ============================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 87, 184, 0.12);
  border-bottom: 3px solid var(--accent);
}
#navbar.scrolled {
  background: var(--white);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 4px 28px rgba(0, 87, 184, 0.18);
  padding: 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img {
  height: 48px;
  width: auto;
  border-radius: 8px;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.logo-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
  transition: var(--transition);
}
.logo-sub {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--transition);
}
#navbar.scrolled .logo-name { color: var(--primary); }
#navbar.scrolled .logo-sub { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: flex-end;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-mid);
  padding: 8px 12px;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-links a:hover {
  background: var(--off-white);
  color: var(--primary);
}
#navbar.scrolled .nav-links a { color: var(--text-mid); }
#navbar.scrolled .nav-links a:hover { color: var(--primary); background: var(--off-white); }

.nav-cta {
  background: var(--primary) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-size: 0.88rem !important;
  box-shadow: 0 3px 14px rgba(0,87,184,0.3);
  margin-left: 8px;
}
.nav-cta:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(0,87,184,0.45) !important;
}
#navbar.scrolled .nav-cta {
  background: var(--primary) !important;
  color: var(--white) !important;
}
#navbar.scrolled .nav-cta:hover {
  background: var(--primary-dark) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  background: var(--off-white);
  border-radius: 10px;
  border: 1.5px solid var(--border);
  transition: var(--transition);
  flex-shrink: 0;
}
.hamburger span {
  width: 22px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 4px;
  transition: var(--transition);
  display: block;
}
#navbar.scrolled .hamburger span { background: var(--primary); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }


/* ============================================
   HERO SECTION
   ============================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #003F8A;
  padding-top: 75px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('hero.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}
/* Floating particles */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  animation: float-particle 8s infinite;
}
.particle:nth-child(1) { width: 80px; height: 80px; top: 20%; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { width: 120px; height: 120px; top: 60%; left: 80%; animation-delay: 2s; }
.particle:nth-child(3) { width: 50px; height: 50px; top: 80%; left: 20%; animation-delay: 4s; }
.particle:nth-child(4) { width: 160px; height: 160px; top: 10%; left: 70%; animation-delay: 1s; }
.particle:nth-child(5) { width: 40px; height: 40px; top: 45%; left: 50%; animation-delay: 3s; }

@keyframes float-particle {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
  50% { transform: translateY(-30px) scale(1.1); opacity: 0.3; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  padding: 8px 20px;
  color: rgba(255,255,255,0.95);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 28px;
  animation: fade-up 0.6s ease forwards;
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: #00FF94;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,255,148,0.5); }
  50% { box-shadow: 0 0 0 8px rgba(0,255,148,0); }
}

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
  animation: fade-up 0.6s ease 0.1s both;
}
.hero-title .highlight {
  background: linear-gradient(135deg, #FFE066, #FFB300);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  max-width: 540px;
  line-height: 1.7;
  animation: fade-up 0.6s ease 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fade-up 0.6s ease 0.3s both;
}

.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 24px;
  margin-top: 60px;
  animation: fade-up 0.6s ease 0.4s both;
}
.stat-item {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  text-align: center;
  transition: var(--transition);
}
.stat-item:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-4px);
}
.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 1px;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   WHY CHOOSE US / FEATURES
   ============================================ */
#features {
  padding: 100px 0;
  background: var(--off-white);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.6rem;
  box-shadow: 0 8px 24px rgba(0,87,184,0.25);
}
.feature-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.feature-desc {
  color: var(--text-mid);
  font-size: 0.93rem;
  line-height: 1.65;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
#services {
  padding: 100px 0;
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}
.service-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  background: var(--white);
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
  border-color: rgba(0,87,184,0.2);
}
.service-img {
  height: 220px;
  overflow: hidden;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-img img { transform: scale(1.06); }
.service-body {
  padding: 28px;
}
.service-tag {
  display: inline-block;
  background: var(--accent-glow);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.service-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.service-desc {
  color: var(--text-mid);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 20px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
}
.service-link:hover { gap: 10px; }
.service-link svg { transition: var(--transition); }

/* ============================================
   ABOUT SECTION
   ============================================ */
#about {
  padding: 100px 0;
  background: var(--off-white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-img-wrapper {
  position: relative;
}
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--gradient);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.badge-num {
  font-family: 'Poppins', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
}
.badge-text {
  font-size: 0.8rem;
  opacity: 0.85;
  margin-top: 4px;
}

.about-content {}
.about-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0;
}
.about-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.point-icon {
  width: 36px;
  height: 36px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
}
.point-text { font-size: 0.95rem; color: var(--text-mid); line-height: 1.6; }
.point-text strong { color: var(--text-dark); }

/* ============================================
   STATS COUNTER SECTION
   ============================================ */
#stats {
  padding: 80px 0;
  background: var(--gradient);
  position: relative;
  overflow: hidden;
}
#stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='3'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.stats-card {
  text-align: center;
  padding: 32px 20px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.stats-card:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-4px);
}
.stats-num {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stats-label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.5px;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
#gallery {
  padding: 100px 0;
  background: var(--white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  min-height: 200px;
}
.gallery-item:first-child img { min-height: 420px; }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,63,138,0.7);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-overlay svg {
  transform: scale(0.5);
  transition: var(--transition);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover .gallery-overlay svg { transform: scale(1); }

/* ============================================
   TESTIMONIALS
   ============================================ */
#testimonials {
  padding: 100px 0;
  background: var(--off-white);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.quote-mark {
  font-size: 5rem;
  line-height: 0.7;
  color: var(--accent);
  opacity: 0.2;
  font-family: Georgia, serif;
  margin-bottom: 16px;
}
.testimonial-text {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  flex-shrink: 0;
}
.author-name {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 0.95rem;
}
.author-location {
  color: var(--text-light);
  font-size: 0.82rem;
}
.stars {
  color: #FFB300;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

/* ============================================
   FAQ SECTION
   ============================================ */
#faq {
  padding: 100px 0;
  background: var(--white);
}
.faq-container {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.active {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,87,184,0.08);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  cursor: pointer;
  background: var(--white);
  transition: var(--transition);
}
.faq-question:hover { background: var(--off-white); }
.faq-item.active .faq-question { background: var(--off-white); }
.faq-q-text {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1rem;
}
.faq-icon {
  width: 28px;
  height: 28px;
  background: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--primary);
  font-size: 1.2rem;
}
.faq-item.active .faq-icon {
  background: var(--gradient);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 28px;
}
.faq-answer p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.7;
  padding-bottom: 24px;
}
.faq-item.active .faq-answer { max-height: 300px; }

/* ============================================
   BLOG SECTION
   ============================================ */
#blog {
  padding: 100px 0;
  background: var(--off-white);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.blog-img {
  height: 200px;
  overflow: hidden;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.blog-body { padding: 24px; }
.blog-date {
  color: var(--text-light);
  font-size: 0.8rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.blog-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.4;
}
.blog-excerpt {
  color: var(--text-mid);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 16px;
}
.blog-read-more {
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}
.blog-read-more:hover { gap: 8px; }

/* ============================================
   QUOTE FORM SECTION
   ============================================ */
#quote {
  padding: 100px 0;
  background: var(--gradient);
  position: relative;
  overflow: hidden;
}
#quote::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
#quote::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.quote-info .section-title { color: var(--white); }
.quote-info .section-desc { color: rgba(255,255,255,0.85); }
.quote-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
.quote-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
}
.quote-benefit span:first-child {
  width: 24px;
  height: 24px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.8rem;
}

.quote-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.form-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.93rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,87,184,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--gradient);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,87,184,0.4);
}

/* Form success */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.show { display: block; }
.success-icon {
  font-size: 4rem;
  margin-bottom: 16px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
#contact {
  padding: 100px 0;
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}
.contact-info {}
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.contact-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}
.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-card-title {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 0.9rem;
  margin-bottom: 4px;
}
.contact-card-value {
  color: var(--text-mid);
  font-size: 0.92rem;
  line-height: 1.5;
}
.contact-card-value a {
  color: var(--primary);
  font-weight: 600;
}
.contact-card-value a:hover { text-decoration: underline; }

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

/* Social links */
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}
.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--light-gray);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
  text-decoration: none;
}
.social-link:hover {
  background: var(--gradient);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,87,184,0.3);
}

/* ============================================
   FOOTER
   ============================================ */
#footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-logo img { height: 40px; filter: brightness(0) invert(1); }
.footer-logo-text .logo-name { color: var(--white); font-size: 1rem; }
.footer-logo-text .logo-sub { color: rgba(255,255,255,0.5); }
.footer-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.footer-social-link:hover {
  background: var(--gradient);
  border-color: transparent;
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col-title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before {
  content: '›';
  color: var(--accent);
  font-size: 1rem;
}
.footer-links a:hover { color: var(--white); padding-left: 4px; }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copyright {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.4);
}
.footer-copyright span { color: var(--accent); }

/* ============================================
   SCROLL REVEAL ANIMATION
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
#scrollTop {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--gradient);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}
#scrollTop.visible { opacity: 1; pointer-events: all; }
#scrollTop:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 92px;
  right: 32px;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  z-index: 999;
  text-decoration: none;
  transition: var(--transition);
  animation: pulse-wa 2.5s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.6);
}
.whatsapp-float svg { width: 28px; height: 28px; fill: var(--white); }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 40px rgba(37,211,102,0.8); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrapper { display: none; }
  .quote-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { flex-wrap: wrap; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 12px 16px 20px;
    border-top: 1px solid var(--border);
    border-bottom: 3px solid var(--accent);
    box-shadow: 0 8px 24px rgba(0,87,184,0.12);
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { color: var(--text-mid) !important; padding: 12px 16px; border-radius: 8px; font-weight: 600; }
  .nav-links a:hover { background: var(--off-white); color: var(--primary) !important; }
  .nav-cta {
    background: var(--primary) !important;
    color: var(--white) !important;
    margin-left: 0 !important;
    text-align: center;
    justify-content: center;
  }
  #navbar { background: var(--white); box-shadow: 0 2px 20px rgba(0,87,184,0.12); }
  #navbar.scrolled { background: var(--white); }
  .hamburger { display: flex; }

  .hero-stats { gap: 12px; }
  .stat-item { padding: 16px 20px; }
  .stat-number { font-size: 1.6rem; }

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 1; }
  .gallery-item:first-child img { min-height: 250px; }

  .form-row { grid-template-columns: 1fr; }
  .quote-form { padding: 28px 20px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .services-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: span 1; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   LIGHTBOX
   ============================================ */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}
#lightbox.open { display: flex; }
#lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
#lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  transition: var(--transition);
}
#lightbox-close:hover { transform: rotate(90deg); }
