/* ============================================
   EAMON O'LEARY ELECTRICAL - 2026 ADVANCED THEME
   White/Yellow/Green Van Branding
   Crest of the Wave Modern UI/UX
   ============================================ */

:root {
  /* PRIMARY COLORS - Van Branding */
  --color-primary-white: #ffffff;
  --color-primary-yellow: #ffc300;
  --color-primary-green: #1a7e1a;

  /* BACKGROUND & SURFACES */
  --color-bg-light: #f5f5f5;
  --color-bg-white: #ffffff;
  --color-bg-dark: #0a0e27;

  /* ACCENTS & VARIATIONS */
  --color-green-dark: #0d5a0d;
  --color-green-light: #e8f5e8;
  --color-yellow-dark: #e6b000;
  --color-navy: #0b2545;

  /* TEXT COLORS */
  --color-text-main: #0a0e27;
  --color-text-muted: #666666;
  --color-text-light: #999999;

  /* SEMANTICS */
  --color-success: #25d366;
  --color-warning: #ff9800;
  --color-error: #d32f2f;

  /* TYPOGRAPHY */
  --font-heading: "Cinzel", "Outfit", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-mono: "Courier New", monospace;

  /* SHADOWS & EFFECTS */
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-medium: 0 15px 40px rgba(26, 126, 26, 0.12);
  --shadow-hover: 0 20px 50px rgba(26, 126, 26, 0.15);
  --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-deep: 0 30px 60px rgba(0, 0, 0, 0.15);
  --glow-green: 0 0 20px rgba(26, 126, 26, 0.3);
  --glow-yellow: 0 0 20px rgba(255, 195, 0, 0.25);

  /* TRANSITIONS & ANIMATIONS */
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-slow: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.15s ease-out;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background-color: var(--color-bg-light);
  color: var(--color-text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

/* Accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-primary-green);
  color: white;
  padding: 8px;
  text-decoration: none;
  z-index: 100;
}

.skip-link:focus {
  top: 0;
}

/* Typography */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text-main);
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
  letter-spacing: -0.5px;
}
h2 {
  font-size: 2.8rem;
}
h3 {
  font-size: 1.8rem;
}
h4 {
  font-size: 1.3rem;
}
h5 {
  font-size: 1.1rem;
}

p {
  margin-bottom: 1rem;
}
.lead {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--color-text-muted);
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 700px;
  margin: 0 auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.text-center {
  text-align: center;
}
.text-yellow {
  color: var(--color-primary-yellow);
}
.text-green {
  color: var(--color-primary-green);
}

/* ============================================
   SECTION LAYOUT & TITLES
   ============================================ */
.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  margin-bottom: 70px;
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  background: linear-gradient(
    135deg,
    var(--color-primary-green) 0%,
    var(--color-primary-yellow) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--color-primary-green),
    var(--color-primary-yellow)
  );
  bottom: -15px;
  left: 0;
  border-radius: 10px;
}

.section-title.center::after {
  left: 50%;
  transform: translateX(-50%);
}

/* ============================================
   BUTTONS - 2026 ADVANCED
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
  font-family: var(--font-body);
  position: relative;
  overflow: hidden;
}

/* PRIMARY SOLID BUTTONS */
.btn-primary-solid {
  background: linear-gradient(
    135deg,
    var(--color-primary-green),
    var(--color-primary-green)
  );
  color: white;
  box-shadow: 0 4px 15px rgba(26, 126, 26, 0.3);
}

.btn-primary-solid:hover {
  background: var(--color-primary-yellow);
  color: var(--color-text-main);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 195, 0, 0.35);
}

/* OUTLINE BUTTONS */
.btn-outline {
  background: transparent;
  color: var(--color-primary-green);
  border: 2px solid var(--color-primary-green);
}

.btn-outline:hover {
  background: var(--color-primary-green);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

/* WHATSAPP BUTTON */
.btn-whatsapp {
  background: #25d366;
  color: white;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #128c7e;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* PRIMARY BUTTON (Legacy) */
.btn-primary {
  background: var(--color-primary-yellow);
  color: var(--color-text-main);
  box-shadow: 0 4px 15px rgba(255, 195, 0, 0.3);
}

.btn-primary:hover {
  background: var(--color-yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 195, 0, 0.4);
}

.btn-white {
  background: white;
  color: var(--color-primary-green);
  border: 2px solid white;
}

.btn-white:hover {
  background: transparent;
  color: white;
  border-color: white;
  transform: translateY(-3px);
}

/* ============================================
   NAVBAR - 2026 ADVANCED
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition-slow);
  background: rgba(10, 14, 39, 0.4);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  padding: 15px 0;
  box-shadow: var(--shadow-soft);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.navbar.scrolled .logo,
.navbar.scrolled .nav-links a {
  color: var(--color-text-main);
}

.navbar.scrolled .menu-toggle span {
  background-color: var(--color-text-main);
}

.logo {
  font-size: 1.6rem;
  color: white;
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo span {
  color: var(--color-primary-yellow);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: white;
  border-radius: 2px;
  transition: var(--transition-fast);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  color: white;
  font-weight: 600;
  font-size: 1rem;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--color-primary-yellow);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--color-primary-yellow);
}

/* DROPDOWN */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: var(--shadow-medium);
  min-width: 260px;
  border-radius: 10px;
  overflow: hidden;
  padding: 10px 0;
  margin-top: 0;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: 2000;
}

.dropdown:hover .dropdown-content,
.dropdown.open .dropdown-content,
.dropdown:focus-within .dropdown-content {
  display: block;
}

.dropdown-content a {
  color: var(--color-text-main);
  padding: 12px 20px;
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition-fast);
}

.dropdown-content a:hover {
  background: var(--color-green-light);
  color: var(--color-primary-green);
}

/* ============================================
   HERO SECTION - 2026 ADVANCED
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-dark);
  background-image: linear-gradient(
      rgba(10, 14, 39, 0.7),
      rgba(10, 14, 39, 0.8)
    ),
    url("assets/hero_bg.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  color: white;
  overflow: hidden;
}

.hero-blur {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(26, 126, 26, 0.2) 0%,
    transparent 70%
  );
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding-top: 110px; /* keep badges clear of fixed navbar on load */
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(255, 195, 0, 0.2);
  border: 2px solid var(--color-primary-yellow);
  border-radius: 50px;
  color: var(--color-primary-yellow);
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.hero h1 {
  font-size: clamp(2.2rem, 5.2vw, 4.2rem);
  color: white;
  margin: 18px 0;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  margin: 18px 0 26px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.65;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(10, 14, 39, 0.45);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 16px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 15px;
  color: white;
  font-weight: 600;
}

.trust-item i {
  font-size: 1.8rem;
  color: var(--color-primary-yellow);
}

/* ============================================
   CERTIFICATES BAR
   ============================================ */
.certificates-bar {
  background: white;
  padding: 40px 0;
  box-shadow: var(--shadow-soft);
  position: relative;
  z-index: 10;
}

.cert-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.cert-logo {
  height: 75px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
  transition: var(--transition);
}

.cert-logo:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 4px 12px rgba(26, 126, 26, 0.2));
}

.cert-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary-green);
}

.cert-badge i {
  color: var(--color-primary-yellow);
  font-size: 1.4rem;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  background: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text p {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.stat-box {
  background: linear-gradient(
    135deg,
    var(--color-green-light) 0%,
    rgba(26, 126, 26, 0.05) 100%
  );
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  border-left: 5px solid var(--color-primary-yellow);
  transition: var(--transition);
}

.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.stat-box h3 {
  font-size: 3rem;
  color: var(--color-primary-green);
  margin-bottom: 8px;
}

.stat-box p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-weight: 600;
  text-transform: uppercase;
}

/* PROMISE CARD */
.promise-card {
  background: linear-gradient(
    135deg,
    var(--color-primary-green) 0%,
    var(--color-green-dark) 100%
  );
  color: white;
  padding: 50px;
  border-radius: 15px;
  box-shadow: var(--shadow-hover);
}

.promise-card h3 {
  color: white;
  margin-bottom: 30px;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.promise-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.promise-list li {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.promise-list i {
  color: var(--color-primary-yellow);
  font-size: 1.3rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.promise-list strong {
  color: var(--color-primary-yellow);
}

/* ============================================
   SERVICES SECTION - 6 CARDS
   ============================================ */
.services-section {
  background: linear-gradient(135deg, #f5f5f5 0%, white 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 35px;
  margin-top: 60px;
}

.service-card {
  background: white;
  padding: 45px 30px;
  border-radius: 15px;
  transition: var(--transition-slow);
  border: 2px solid #f0f0f0;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-soft);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--color-primary-green),
    var(--color-primary-yellow)
  );
  transition: var(--transition);
}

.service-card::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(26, 126, 26, 0.05) 0%,
    transparent 70%
  );
  transition: all 0.8s ease;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-primary-green);
}

.service-card:hover::after {
  top: 0;
  right: 0;
}

.service-icon-wrapper {
  background: linear-gradient(
    135deg,
    var(--color-green-light) 0%,
    rgba(26, 126, 26, 0.08) 100%
  );
  width: 80px;
  height: 80px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: var(--transition);
}

.service-card:hover .service-icon-wrapper {
  background: linear-gradient(
    135deg,
    var(--color-primary-green) 0%,
    var(--color-green-dark) 100%
  );
}

.srv-icon {
  font-size: 2.5rem;
  color: var(--color-primary-green);
  transition: var(--transition);
}

.service-card:hover .srv-icon {
  color: white;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.service-desc {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  flex-grow: 1;
  margin-bottom: 25px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary-green);
  font-weight: 600;
  margin-top: auto;
}

.service-link i {
  transition: var(--transition);
}

.service-card:hover .service-link i {
  transform: translateX(5px);
}

/* ============================================
   PORTFOLIO SECTION
   ============================================ */
.portfolio-section {
  background: white;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 25px;
  border: 2px solid var(--color-primary-green);
  background: transparent;
  color: var(--color-primary-green);
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--color-primary-green);
  color: white;
}

/* ============================================
   MARQUEE SLIDER - GALLERY
   ============================================ */
.marquee-section {
  padding: 60px 0;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--color-green-light) 0%,
    rgba(26, 126, 26, 0.05) 100%
  );
  position: relative;
  border-radius: 15px;
}

.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  height: 320px;
  align-items: center;
}

.marquee-track img {
  height: 100%;
  width: auto;
  max-width: 450px;
  object-fit: contain;
  opacity: 0.9;
  padding: 20px;
  border-right: 3px solid rgba(26, 126, 26, 0.2);
  transition: var(--transition);
}

.marquee-track img:hover {
  opacity: 1;
}

/* ============================================
   GALLERY GRID + LIGHTBOX
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.gallery-item {
  position: relative;
  border: none;
  padding: 0;
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: var(--transition);
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 5000;
}

.lightbox.open {
  display: block;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.lightbox-panel {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}

.lightbox-img {
  max-width: min(1100px, 92vw);
  max-height: 82vh;
  border-radius: 16px;
  box-shadow: var(--shadow-deep);
  background: white;
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: white;
  color: var(--color-text-main);
  box-shadow: var(--shadow-medium);
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  background: white;
  color: var(--color-primary-green);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  box-shadow: var(--shadow-medium);
  transition: var(--transition);
  border: none;
}

.slider-btn:hover {
  background: var(--color-primary-yellow);
  transform: translateY(-50%) scale(1.15);
  color: var(--color-text-main);
}

.slider-btn.prev-btn {
  left: 20px;
}
.slider-btn.next-btn {
  right: 20px;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
  background: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.testimonial-card {
  background: linear-gradient(135deg, #f9f9f9 0%, white 100%);
  padding: 35px;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  border-left: 5px solid var(--color-primary-yellow);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.stars {
  display: flex;
  gap: 5px;
  margin-bottom: 20px;
  color: var(--color-primary-yellow);
  font-size: 1.2rem;
}

.testimonial-text {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 15px;
  font-style: italic;
}

.testimonial-author {
  color: var(--color-primary-green);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(
    135deg,
    var(--color-primary-green) 0%,
    var(--color-green-dark) 100%
  );
}

.cta-card {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 60px;
  border-radius: 20px;
  text-align: center;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-glass);
}

.cta-card h2 {
  color: white;
  margin-bottom: 15px;
  font-size: 2.5rem;
}

.cta-card p {
  font-size: 1.2rem;
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  background: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info-block {
  background: linear-gradient(
    135deg,
    var(--color-primary-green) 0%,
    var(--color-green-dark) 100%
  );
  color: white;
  padding: 50px;
  border-radius: 15px;
  box-shadow: var(--shadow-hover);
}

.contact-info-block h2 {
  color: white;
  margin-bottom: 15px;
}

.contact-info-block .section-title::after {
  background: var(--color-primary-yellow);
}

.contact-info-block p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.contact-item i {
  font-size: 1.8rem;
  color: var(--color-primary-yellow);
  flex-shrink: 0;
  margin-top: 5px;
}

.contact-item h4 {
  color: white;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.contact-item p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  margin: 0;
}

.contact-item a {
  color: var(--color-primary-yellow);
  font-weight: 600;
}

/* CONTACT FORM */
.contact-form-wrapper {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: var(--shadow-soft);
}

.contact-form-wrapper h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 25px;
}

.form-row .form-group {
  margin-bottom: 0;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text-main);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
  background: white;
  color: var(--color-text-main);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary-green);
  box-shadow: 0 0 0 4px rgba(26, 126, 26, 0.1);
}

.form-group textarea {
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.checkbox-group label {
  margin: 0;
}

/* ============================================
   FLOATING CONTACT BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  left: 30px;
  bottom: 30px;
  background: #25d366; /* WhatsApp Green as requested */
  color: white;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
  background: #128c7e;
  box-shadow: 0 8px 35px rgba(37, 211, 102, 0.5);
  color: white;
}

.whatsapp-float i {
  margin-top: 5px;
}

.whatsapp-label {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-top: -2px;
  letter-spacing: 0.5px;
}
  font-size: 0.85rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  font-weight: 600;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

/* ============================================
   FOOTER - ADVANCED
   ============================================ */
.footer {
  background: linear-gradient(
    135deg,
    var(--color-text-main) 0%,
    var(--color-navy) 100%
  );
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: var(--color-primary-yellow);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.75);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--color-primary-yellow);
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.footer-social a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-yellow);
  font-size: 1.2rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--color-primary-yellow);
  color: var(--color-text-main);
  transform: translateY(-5px);
}

.footer-divider {
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  margin: 40px 0;
}

.footer-bottom {
  text-align: center;
}

.social-footer {
  margin: 14px 0;
  font-size: 1.9rem;
  display: flex;
  justify-content: center;
  gap: 22px;
}

.social-footer a {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--color-primary-yellow);
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
}

.social-footer a:hover {
  background: var(--color-primary-yellow);
  color: var(--color-text-main);
  transform: translateY(-4px);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.footer-subtext {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem !important;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.appear {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(26, 126, 26, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(26, 126, 26, 0.6);
  }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 3.2rem;
  }
  h2 {
    font-size: 2.4rem;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  :root {
    --color-primary-font-size: 1.8rem;
  }

  .navbar {
    padding: 15px 0;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 30px;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
    transition: right 0.3s ease;
    z-index: 999;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    color: var(--color-text-main);
    font-size: 1.1rem;
  }

  .nav-links a::after {
    display: none;
  }

  .menu-toggle {
    display: flex;
    z-index: 1001;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .dropdown-content {
    position: relative;
    background: transparent;
    box-shadow: none;
    padding-left: 20px;
    margin-top: 5px;
  }

  .hero {
    min-height: 600px;
    padding-top: 80px;
  }

  .hero-content {
    padding-top: 85px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cta-card {
    padding: 40px;
  }

  .cta-card h2 {
    font-size: 1.8rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.8rem;
  }
  h3 {
    font-size: 1.4rem;
  }

  .hero {
    padding-top: 60px;
    min-height: 500px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section {
    padding: 60px 0;
  }

  .contact-form-wrapper,
  .contact-info-block {
    padding: 30px;
  }

  .promise-card {
    padding: 30px;
  }

  .service-card {
    padding: 30px 20px;
  }

  .btn {
    padding: 12px 22px;
    font-size: 0.95rem;
  }

  .hero-trust {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .navbar,
  .whatsapp-float,
  .skip-link,
  .footer-social {
    display: none;
  }

  body {
    background: white;
  }

  .section {
    page-break-inside: avoid;
  }
}


/* ============================================
   STANDALONE PAGE SYSTEM
   ============================================ */
.nav-links a.active { color: var(--color-primary-yellow); }
.navbar.scrolled .nav-links a.active { color: var(--color-primary-green); }
.page-hero {
  position: relative;
  min-height: 720px;
  padding: 160px 0 80px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(10,14,39,.86), rgba(13,90,13,.82)), url("PICS/hero_bg.png") center/cover no-repeat;
  color: white;
  overflow: hidden;
}
.page-hero-content { position: relative; z-index: 2; text-align: center; max-width: 920px; }
.page-hero h1 { color: white; font-size: clamp(2.6rem, 7vw, 5rem); text-transform: uppercase; margin: 28px 0; }
.page-top-slider { position: absolute; left: 0; right: 0; bottom: 0; height: 170px; overflow: hidden; opacity: .92; z-index: 1; -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent); mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent); }
.page-top-track { display: flex; gap: 18px; width: max-content; animation: pageSlider 34s linear infinite; }
.page-top-track img { height: 150px; width: 230px; object-fit: cover; border-radius: 18px; border: 3px solid rgba(255,255,255,.35); box-shadow: var(--shadow-deep); }
@keyframes pageSlider { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.reverse-grid .feature-image-card { order: 2; }
.feature-image-card { border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-hover); background: var(--color-green-light); }
.feature-image-card img { width: 100%; min-height: 360px; object-fit: cover; }
.split-feature-section { background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%); }
.faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.faq-card { background: white; border-radius: 16px; padding: 28px; box-shadow: var(--shadow-soft); border-top: 5px solid var(--color-primary-yellow); }
.faq-card h3 { font-size: 1.25rem; margin-bottom: 12px; color: var(--color-primary-green); }
.faq-card p { color: var(--color-text-muted); margin: 0; }
.mini-faq-section, .page-intro-section { background: white; }

/* Accordion FAQ (faq.html) */
.faq-intro { max-width: 980px; margin: 0 auto 18px; }
.faq-intro .lead { color: var(--color-text-muted); margin: 0; line-height: 1.7; }
.faq-accordion { max-width: 980px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { border: 1px solid rgba(0,0,0,.08); border-radius: 16px; background: white; box-shadow: var(--shadow-soft); overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; padding: 16px 18px; display: flex; align-items: center; justify-content: space-between; gap: 14px; font-weight: 800; color: var(--color-text-main); line-height: 1.25; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon { width: 44px; height: 44px; border-radius: 999px; display: grid; place-items: center; background: rgba(10,14,39,.06); color: var(--color-primary-green); flex: 0 0 auto; transition: var(--transition); }
.faq-item[open] .faq-icon { transform: rotate(180deg); background: rgba(255,215,0,.22); color: var(--color-primary-green); }
.faq-answer { padding: 0 18px 18px; color: var(--color-text-muted); }
.faq-answer p { margin: 0; line-height: 1.7; }
@media (max-width: 768px) {
  .nav-links.active .dropdown-content { display: block; width: 100%; }
  .dropdown-content a { padding: 8px 0 8px 14px; }
  .page-hero { min-height: 620px; padding-top: 130px; }
  .detail-grid { grid-template-columns: 1fr; gap: 36px; }
  .reverse-grid .feature-image-card { order: 0; }
  .page-top-slider { height: 125px; }
  .page-top-track img { height: 110px; width: 170px; }

  .faq-item summary { padding: 14px 14px; }
  .faq-icon { width: 40px; height: 40px; }
}
