/* =========================================================
   HEAT WAVE SOLAR — Main Stylesheet
   Color Palette:
     Primary (amber/orange): #E8740C
     Primary dark:           #C45D00
     Primary light:          #FF9F43
     Navy:                   #0B1D3A
     Navy light:             #132B50
     White:                  #FFFFFF
     Off-white:              #F7F8FA
     Light gray:             #EDEFF2
     Text dark:              #1A1A2E
     Text medium:            #555555
     Text light:             #AAAAAA
   ========================================================= */

/* ---------- CSS RESET & VARIABLES ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #E8740C;
  --primary-dark: #C45D00;
  --primary-light: #FF9F43;
  --primary-glow: rgba(232, 116, 12, 0.25);
  --navy: #0B1D3A;
  --navy-light: #132B50;
  --navy-lighter: #1B3A65;
  --white: #FFFFFF;
  --off-white: #F7F8FA;
  --gray-light: #EDEFF2;
  --gray: #D1D5DB;
  --text-dark: #1A1A2E;
  --text-medium: #555555;
  --text-light: #999999;

  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.07);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --transition: 0.3s ease;
  --transition-slow: 0.5s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 16px; }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

.highlight {
  color: var(--primary);
}

.text-white { color: var(--white) !important; }
.text-light { color: rgba(255,255,255,0.75) !important; }

.section-label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary);
  margin-bottom: 8px;
}
.section-label-light {
  color: var(--primary-light);
}

.section-subtitle {
  max-width: 620px;
  margin: 0 auto;
  color: var(--text-medium);
  font-size: 1.05rem;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--primary-glow);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-large {
  padding: 18px 42px;
  font-size: 1.05rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* =========================================================
   NAVBAR
   ========================================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(11, 29, 58, 0.97);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
  backdrop-filter: blur(10px);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--white);
  font-weight: 600;
  z-index: 1001;
}

.logo-icon {
  font-size: 1.6rem;
  color: var(--primary);
  animation: spin-slow 10s linear infinite;
}

/* Logo image */
.logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-img-footer {
  height: 50px;
}

/* Form logo */
.form-logo-header {
  text-align: center;
  margin-bottom: 16px;
}

.form-logo {
  height: 87px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  padding: 8px 12px;
  border-radius: 50px;
  transition: all var(--transition);
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.nav-link.cta-link {
  background: var(--primary);
  color: var(--white);
  margin-left: 8px;
}
.nav-link.cta-link:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 3px;
  transition: all var(--transition);
}

.hamburger {
  position: relative;
}
.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}
.hamburger::before { top: -8px; }
.hamburger::after  { top: 8px; }

.nav-toggle.active .hamburger { background: transparent; }
.nav-toggle.active .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle.active .hamburger::after  { top: 0; transform: rotate(-45deg); }

/* ---------- NAV RIGHT CONTROLS ---------- */
.nav-right-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}

/* ---------- LANGUAGE SWITCHER ---------- */
.lang-switcher {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
}

.lang-btn:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.35);
}

.lang-btn .fa-globe {
  font-size: 0.9rem;
  color: var(--primary);
}

.lang-arrow {
  font-size: 0.55rem;
  transition: transform var(--transition);
}

.lang-switcher.open .lang-arrow {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  min-width: 140px;
  z-index: 1002;
}

.lang-switcher.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 16px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.8);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  text-align: left;
}

.lang-option:hover {
  background: rgba(255,255,255,0.08);
  color: var(--white);
}

.lang-option.active {
  color: var(--primary);
  font-weight: 600;
}

.lang-option.active::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-left: auto;
  font-size: 0.75rem;
}

.lang-flag {
  font-size: 1.1rem;
  line-height: 1;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Replace with your own hero image: images/hero-bg.jpg */
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  background-color: var(--navy);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11, 29, 58, 0.92) 0%,
    rgba(11, 29, 58, 0.7) 40%,
    rgba(232, 116, 12, 0.25) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 120px 24px 80px;
}

.hero-logo {
  height: 180px;
  width: auto;
  object-fit: contain;
  margin-bottom: -25px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  top: -25%;
}

.hero-badge {
  display: inline-block;
  background: rgba(232, 116, 12, 0.15);
  border: 1px solid rgba(232, 116, 12, 0.3);
  color: var(--primary-light);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 24px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll-indicator a {
  color: rgba(255,255,255,0.5);
  font-size: 1.4rem;
  animation: bounce 2s ease infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

/* =========================================================
   SECTIONS — General
   ========================================================= */
.section {
  padding: 100px 0;
}

.section-white { background: var(--white); }
.section-gray  { background: var(--off-white); }
.section-navy  { background: var(--navy); }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

/* =========================================================
   ABOUT
   ========================================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text p {
  color: var(--text-medium);
  margin-bottom: 16px;
}

.about-text .btn {
  margin-top: 12px;
}

/* Image placeholders */
.image-placeholder {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

.image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.placeholder-content {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.4);
  font-size: 1rem;
}

.placeholder-content i {
  font-size: 3rem;
}

.placeholder-active .placeholder-content {
  display: flex;
}

/* =========================================================
   SERVICES
   ========================================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(232,116,12,0.1), rgba(232,116,12,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: var(--primary);
  transition: all var(--transition);
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.05);
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-medium);
  font-size: 0.93rem;
  line-height: 1.7;
}

/* =========================================================
   WHY US
   ========================================================= */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.why-card {
  text-align: center;
  padding: 36px 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.why-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--primary);
  transform: translateY(-4px);
}

.why-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: var(--white);
}

.why-card h3 {
  color: var(--white);
  margin-bottom: 10px;
}

.why-card p {
  color: rgba(255,255,255,0.65);
  font-size: 0.93rem;
}

.why-us-bottom {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.why-us-bottom p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* =========================================================
   TEAM
   ========================================================= */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.team-text p {
  color: var(--text-medium);
  margin-bottom: 16px;
}

.team-text .btn {
  margin-top: 12px;
}

/* =========================================================
   GALLERY
   ========================================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,29,58,0.3), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover::after {
  opacity: 1;
}

@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================================
   COMMITMENT BANNER
   ========================================================= */
.commitment-banner {
  position: relative;
  background: url('../images/638145009_1627017584967767_7582699435478789654_n.jpg') center/cover no-repeat;
  background-color: var(--navy);
  text-align: center;
}

.commitment-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.commitment-content h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 20px;
}

.commitment-content p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.commitment-tagline {
  font-size: 1.2rem !important;
  color: var(--primary-light) !important;
  margin-bottom: 32px !important;
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials-carousel {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  min-width: 100%;
  padding: 0 12px;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .testimonial-card {
    min-width: 50%;
  }
}

@media (min-width: 1024px) {
  .testimonial-card {
    min-width: 33.333%;
  }
}

/* Testimonial card inner content inherits card styling below */

/* Card inner styling via nesting wrapper */
.testimonial-card {
  display: flex;
}

.testimonial-card {
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  margin: 0 12px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--gray-light);
  min-width: calc(33.333% - 24px);
}

@media (max-width: 1023px) {
  .testimonial-card { min-width: calc(50% - 24px); }
}
@media (max-width: 767px) {
  .testimonial-card { min-width: calc(100% - 24px); }
}

.testimonial-stars {
  color: #F5A623;
  font-size: 1rem;
  margin-bottom: 16px;
  display: flex;
  gap: 2px;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 20px;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  font-size: 2.4rem;
  color: var(--gray);
}

.testimonial-author strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
}

.testimonial-author span {
  font-size: 0.82rem;
  color: var(--text-light);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gray);
  background: var(--white);
  color: var(--text-dark);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.carousel-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: scale(1.05);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.carousel-dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

#quoteSection {
  scroll-margin-top: 80px;
}

.contact-card {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 32px;
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.contact-item h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-dark);
}

.contact-item a,
.contact-item p {
  color: var(--text-medium);
  font-size: 0.95rem;
}

.contact-item a:hover {
  color: var(--primary);
}

.contact-map iframe {
  width: 100%;
  border-radius: var(--radius-md);
}

/* Quote Form */
.quote-form {
  background: linear-gradient(135deg, #003344 0%, #00232e 100%);
  border: none;
  border-radius: var(--radius-md);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

.quote-form h3 {
  margin-bottom: 24px;
  font-size: 1.4rem;
  color: var(--white);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
}

.quote-form .form-group label {
  color: var(--primary);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: all var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Select dropdowns */
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: all var(--transition);
  appearance: auto;
  cursor: pointer;
}

.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

/* Fieldsets */
.form-fieldset {
  border: none;
  padding: 0;
  margin: 0 0 18px 0;
}

.form-fieldset legend {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

/* Sub-labels under inputs */
.sub-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

/* Required star */
.req-star {
  color: var(--primary);
  font-weight: 700;
}

.form-required-note {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
}

/* Checkbox group */
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white);
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--primary);
  cursor: pointer;
  flex-shrink: 0;
}

/* Consent text */
.form-consent-text {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  margin-top: 10px;
}

.form-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 12px;
}

.form-success {
  text-align: center;
  padding: 60px 36px;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.form-success i {
  font-size: 3.5rem;
  color: #27AE60;
  margin-bottom: 16px;
}

.form-success h3 {
  margin-bottom: 12px;
}

.form-success p {
  color: var(--text-medium);
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}

.logo-footer {
  font-size: 1.2rem;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-links-col h4,
.footer-contact h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
}

.footer-links-col ul li {
  margin-bottom: 10px;
}

.footer-links-col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: all var(--transition);
}

.footer-links-col a:hover {
  color: var(--primary-light);
  padding-left: 4px;
}

.footer-contact p {
  font-size: 0.9rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact i {
  color: var(--primary);
  width: 16px;
}

.footer-contact a {
  color: rgba(255,255,255,0.55);
}

.footer-contact a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
}

/* =========================================================
   SCROLL ANIMATIONS
   ========================================================= */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger delay for cards */
.service-card:nth-child(1) { transition-delay: 0s; }
.service-card:nth-child(2) { transition-delay: 0.1s; }
.service-card:nth-child(3) { transition-delay: 0.2s; }
.service-card:nth-child(4) { transition-delay: 0.3s; }
.service-card:nth-child(5) { transition-delay: 0.4s; }
.service-card:nth-child(6) { transition-delay: 0.5s; }

.why-card:nth-child(1) { transition-delay: 0s; }
.why-card:nth-child(2) { transition-delay: 0.1s; }
.why-card:nth-child(3) { transition-delay: 0.2s; }
.why-card:nth-child(4) { transition-delay: 0.3s; }

/* =========================================================
   RESPONSIVE — Tablet (<=1024px)
   ========================================================= */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

/* =========================================================
   RESPONSIVE — Mobile (<=768px)
   ========================================================= */
@media (max-width: 768px) {
  .section { padding: 70px 0; }

  /* Nav mobile */
  .nav-toggle { display: block; }

  .nav-right-controls {
    gap: 8px;
  }

  .lang-btn {
    padding: 5px 10px;
    font-size: 0.75rem;
  }

  .lang-btn .fa-globe {
    font-size: 0.8rem;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--navy);
    padding: 100px 32px 32px;
    transition: right var(--transition);
    box-shadow: -5px 0 30px rgba(0,0,0,0.3);
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    gap: 4px;
  }

  .nav-link {
    font-size: 1rem;
    padding: 14px 16px;
    display: block;
    border-radius: var(--radius-sm);
    width: 100%;
  }

  .nav-link.cta-link {
    text-align: center;
    margin-left: 0;
    margin-top: 12px;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image { order: -1; }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Why Us */
  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-card {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 20px;
    padding: 24px;
  }

  .why-icon {
    margin: 0;
    min-width: 60px;
    width: 60px;
    height: 60px;
  }

  /* Team */
  .team-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    order: -1;
  }

  .contact-info {
    order: 1;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .quote-form {
    padding: 28px 20px;
  }

  .form-logo {
    height: 65px;
  }

  .form-fieldset legend {
    font-size: 0.88rem;
  }

  .checkbox-label {
    font-size: 0.88rem;
  }

  .form-group select {
    font-size: 0.9rem;
    padding: 11px 14px;
  }

  .form-consent-text {
    font-size: 0.72rem;
  }

  .form-logo-header {
    margin-bottom: 12px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .logo-img-footer {
    height: 40px;
  }

  /* Hero */
  .hero-content {
    padding: 120px 16px 60px;
  }

  .hero-logo {
    height: 120px;
    top: -10%;
    margin-bottom: -10px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* =========================================================
   RESPONSIVE — Small Mobile (<=480px)
   ========================================================= */
@media (max-width: 480px) {
  .hero-logo {
    height: 90px;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 6px 16px;
    letter-spacing: 1px;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .quote-form {
    padding: 20px 16px;
  }

  .form-logo {
    height: 55px;
  }

  .btn {
    font-size: 0.85rem;
    padding: 12px 24px;
  }

  .logo span {
    font-size: 1.1rem;
  }
}

/* =========================================================
   OVERLAY for mobile nav
   ========================================================= */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
