/* ============================================
   SK WINDOWS & DOORS - PREMIUM DESIGN SYSTEM
   ============================================ */

:root {
  /* Brand Colors */
  --bg-white: #FFFFFF;
  --bg-alabaster: #F4F6F5;
  --bg-cream: #FAFAF7;
  --bg-charcoal: #0A1C12;

  --text-main: #1B2621;
  --text-dark: #0E1F16;
  --text-light: #52635B;
  --text-muted: #7A8E83;

  --brand-primary: #103B26;
  --brand-primary-light: #165A3A;
  --brand-primary-dark: #0A2618;
  --brand-primary-rgb: 16, 59, 38;

  --brand-accent: #C5A059;
  --brand-accent-light: #D4B876;
  --brand-accent-dark: #A68243;
  --brand-accent-rgb: 197, 160, 89;

  --border-color: #E0E8E3;
  --border-light: #EDF2EF;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-xl: 7rem;
  --section-lg: 6rem;
  --section-md: 5rem;

  /* Layout */
  --container-max: 1260px;

  /* Radius */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 2px 8px rgba(var(--brand-primary-rgb), 0.04);
  --shadow-sm: 0 4px 16px rgba(var(--brand-primary-rgb), 0.06);
  --shadow-md: 0 8px 30px rgba(var(--brand-primary-rgb), 0.08);
  --shadow-lg: 0 16px 48px rgba(var(--brand-primary-rgb), 0.10);
  --shadow-xl: 0 24px 64px rgba(var(--brand-primary-rgb), 0.14);
  --shadow-accent: 0 8px 24px rgba(var(--brand-accent-rgb), 0.25);

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition: all 0.3s var(--ease);
  --transition-slow: all 0.5s var(--ease);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-main);
  line-height: 1.7;
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--brand-primary);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ============================================
   UTILITIES
   ============================================ */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 2rem; }
.text-center { text-align: center; }

.section { padding: var(--section-xl) 0; position: relative; }
.bg-alabaster { background-color: var(--bg-alabaster); }
.bg-brand { background-color: var(--brand-primary); color: var(--bg-white); }

/* Section Header */
.section-header { margin-bottom: 4rem; }
.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-accent);
  background: rgba(var(--brand-accent-rgb), 0.1);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}
.section-label-light { color: var(--brand-accent); background: rgba(255,255,255,0.1); }
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  color: var(--text-dark);
  font-weight: 800;
}
.section-subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-subtitle-light { color: rgba(255,255,255,0.65); }

/* Section Divider */
.section-divider { margin-top: -1px; }
.section-divider svg { display: block; width: 100%; height: auto; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 2rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-lg { padding: 1.1rem 2.5rem; font-size: 1rem; }

.btn-primary {
  background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-dark));
  color: white;
  box-shadow: var(--shadow-accent);
  border-color: transparent;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(var(--brand-accent-rgb), 0.35);
  color: white;
}

.btn-secondary {
  background: var(--brand-primary);
  color: white;
  border-color: var(--brand-primary);
}
.btn-secondary:hover {
  background: var(--brand-primary-light);
  border-color: var(--brand-primary-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  color: white;
}

.btn-outline-light {
  border-color: rgba(255,255,255,0.4);
  color: white;
  background: transparent;
}
.btn-outline-light:hover {
  background: white;
  color: var(--brand-primary);
  border-color: white;
  transform: translateY(-3px);
}

.btn-nav {
  padding: 0.7rem 1.6rem;
  font-size: 0.9rem;
}

.btn-tertiary {
  color: var(--brand-primary);
  font-weight: 700;
  font-family: var(--font-heading);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  transition: var(--transition);
}
.btn-tertiary i { transition: var(--transition); color: var(--brand-accent); font-size: 1.1rem; }
.btn-tertiary:hover { color: var(--brand-accent); }
.btn-tertiary:hover i { transform: translateX(6px); }

/* ============================================
   1. TOP UTILITY BAR
   ============================================ */
.top-utility-bar {
  background: linear-gradient(90deg, var(--brand-primary-dark), var(--brand-primary));
  color: rgba(255,255,255,0.7);
  padding: 0.55rem 0;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.top-utility-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.utility-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.utility-left i { color: var(--brand-accent); font-size: 0.85rem; }
.utility-badge { color: var(--brand-accent-light); font-weight: 500; }
.utility-divider { color: rgba(255,255,255,0.2); }
.utility-links { display: flex; gap: 2rem; }
.utility-links a {
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.utility-links a:hover { color: var(--brand-accent); }
.utility-links i { color: var(--brand-accent); }
.whatsapp-link { color: #25D366 !important; }
.whatsapp-link i { color: #25D366 !important; }

/* ============================================
   2. HEADER
   ============================================ */
.main-header {
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}
.main-header.scrolled {
  padding: 0.75rem 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  height: 50px;
  width: auto;
  display: block;
  object-fit: contain;
}
.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-accent);
  font-size: 1.1rem;
}
.logo-text span { color: var(--text-light); font-weight: 400; font-size: 0.85em; }

/* Navigation */
.main-nav ul { display: flex; gap: 2rem; align-items: center; }
.main-nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-main);
  transition: var(--transition);
  position: relative;
}
.main-nav a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-accent);
  transition: var(--transition);
}
.main-nav a:not(.btn):hover { color: var(--brand-primary); }
.main-nav a:not(.btn):hover::after { width: 100%; }

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brand-primary);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   3. HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg-layer {
  position: absolute;
  inset: 0;
  background-image: url('https://images.pexels.com/photos/259950/pexels-photo-259950.jpeg?auto=compress&cs=tinysrgb&w=2000');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(var(--brand-primary-rgb), 0.75) 0%,
      rgba(var(--brand-primary-rgb), 0.88) 40%,
      rgba(var(--brand-primary-rgb), 0.95) 100%
    );
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Hero Decorative Shapes */
.hero-decor {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-decor-1 {
  width: 500px;
  height: 500px;
  top: -150px;
  right: -100px;
  background: radial-gradient(circle, rgba(var(--brand-accent-rgb), 0.08), transparent 70%);
}
.hero-decor-2 {
  width: 300px;
  height: 300px;
  bottom: -50px;
  left: -80px;
  background: radial-gradient(circle, rgba(var(--brand-accent-rgb), 0.06), transparent 70%);
}
.hero-decor-3 {
  width: 150px;
  height: 150px;
  top: 30%;
  left: 10%;
  border: 1px solid rgba(255,255,255,0.06);
}

.hero-content {
  max-width: 850px;
  position: relative;
  z-index: 10;
  padding: 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  color: var(--brand-accent-light);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-full);
  margin-bottom: 2rem;
}
.hero-badge i { font-size: 0.9rem; }

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.hero-accent {
  background: linear-gradient(135deg, var(--brand-accent-light), var(--brand-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 3rem;
  max-width: 680px;
  margin-inline: auto;
  line-height: 1.7;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-trust-micro {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.hero-trust-item i { color: var(--brand-accent); font-size: 0.9rem; }

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  opacity: 0.5;
  animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 13px;
  position: relative;
}
.scroll-dot {
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
@keyframes scrollDot {
  0%, 100% { opacity: 1; top: 8px; }
  50% { opacity: 0.3; top: 18px; }
}

/* ============================================
   4. STATS BAR
   ============================================ */
.stats-bar {
  background: var(--bg-white);
  padding: 0;
  position: relative;
  z-index: 10;
  margin-top: -3rem;
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 2.5rem 3rem;
  gap: 0;
}
.stat-item {
  flex: 1;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  flex-wrap: wrap;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--brand-primary);
  line-height: 1;
}
.stat-suffix {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-accent);
  align-self: flex-start;
  margin-top: 0.3rem;
}
.stat-label {
  width: 100%;
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-top: 0.5rem;
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--border-color);
  margin: 0 1.5rem;
}

/* ============================================
   5. TRUST STRIP
   ============================================ */
.trust-strip {
  background: linear-gradient(180deg, var(--bg-cream), var(--bg-alabaster));
  padding: 4rem 0;
  border-bottom: 1px solid var(--border-light);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: white;
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
  border: 1px solid var(--border-light);
}
.trust-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(var(--brand-accent-rgb), 0.2);
}
.trust-item-icon {
  color: white;
  font-size: 1.3rem;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-light));
  width: 56px;
  height: 56px;
  min-width: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
}
.trust-item-text h4 {
  font-size: 1.05rem;
  color: var(--brand-primary);
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.trust-item-text p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}

/* ============================================
   6. CATEGORY GRID
   ============================================ */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.category-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-slow);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  position: relative;
}
.category-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(var(--brand-accent-rgb), 0.25);
}
.category-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 5;
  background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-dark));
  color: white;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(var(--brand-accent-rgb), 0.3);
}
.category-img {
  position: relative;
  overflow: hidden;
  height: 260px;
}
.category-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.category-card:hover .category-img img { transform: scale(1.08); }
.category-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(var(--brand-primary-rgb), 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.category-card:hover .category-img-overlay { opacity: 1; }
.category-img-overlay span {
  color: white;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transform: translateY(10px);
  transition: var(--transition);
}
.category-card:hover .category-img-overlay span { transform: translateY(0); }

.category-content {
  padding: 2rem;
  text-align: center;
}
.category-content h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}
.category-content p {
  color: var(--text-light);
  font-size: 0.98rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.category-content .btn-tertiary { margin: 0 auto; justify-content: center; }

/* More Products Strip */
.more-products {
  margin-top: 3rem;
  padding: 2rem;
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.more-products-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  white-space: nowrap;
}
.more-products-links {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.more-products-links a {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: var(--bg-alabaster);
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--brand-primary);
  transition: var(--transition);
}
.more-products-links a:hover {
  background: var(--brand-primary);
  color: white;
}

/* ============================================
   7. SERVICE BLOCKS
   ============================================ */
.section-services { background: var(--bg-white); }

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 6rem;
}
.service-block:last-child { margin-bottom: 0; }

.service-tag {
  display: inline-block;
  background: rgba(var(--brand-accent-rgb), 0.12);
  color: var(--brand-accent-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.25rem;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
}

.service-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1.25rem;
}
.service-content p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.75;
}
.service-process-list { margin: 2rem 0; }
.service-process-list li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.95rem;
  background: var(--bg-alabaster);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--brand-accent);
  transition: var(--transition);
}
.service-process-list li:hover {
  border-left-color: var(--brand-primary);
  box-shadow: var(--shadow-xs);
}
.service-process-list i { color: var(--brand-primary); font-size: 1rem; margin-top: 2px; }

.service-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.service-img-accent {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 100%;
  height: 100%;
  border: 3px solid rgba(var(--brand-accent-rgb), 0.15);
  border-radius: var(--radius-lg);
  z-index: 0;
}
.service-block.reverse .service-img-accent {
  right: auto;
  left: -15px;
}
.service-img-wrapper img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-md);
}
.service-img-badge {
  position: absolute;
  bottom: -20px;
  right: 30px;
  z-index: 5;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.service-img-badge i {
  color: var(--brand-accent);
  font-size: 1.3rem;
}
.service-img-badge span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--brand-primary);
  letter-spacing: 0.02em;
}

/* ============================================
   8. WHY CHOOSE US
   ============================================ */
.section-why-choose {
  background: var(--bg-alabaster);
  overflow: hidden;
}
.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.why-choose-visual { position: relative; }

.why-choose-img-stack { position: relative; }
.why-img-main {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.why-img-float {
  position: absolute;
  bottom: -40px;
  right: -30px;
  width: 220px;
  height: 170px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border: 5px solid white;
  z-index: 3;
}

.why-choose-stats-float {
  position: absolute;
  top: 20px;
  left: -20px;
  background: var(--brand-primary);
  color: white;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
  z-index: 4;
}
.wcs-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--brand-accent);
  line-height: 1;
}
.wcs-text {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  margin-top: 0.25rem;
  line-height: 1.3;
}

.why-choose-content .section-title { text-align: left; }
.why-lead {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.why-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.why-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.why-feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(var(--brand-primary-rgb), 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
  font-size: 1rem;
}
.why-feature h4 {
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
  font-weight: 700;
}
.why-feature p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================
   9. PROCESS SECTION
   ============================================ */
.section-process {
  background: linear-gradient(170deg, var(--brand-primary-dark) 0%, var(--brand-primary) 50%, var(--brand-primary-light) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.process-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    radial-gradient(circle at 20% 50%, white 1px, transparent 1px),
    radial-gradient(circle at 80% 50%, white 1px, transparent 1px);
  background-size: 60px 60px;
}
.section-process .section-title { color: white; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), rgba(255,255,255,0.15), transparent);
  z-index: 1;
}
.process-step {
  background: rgba(255,255,255,0.04);
  padding: 2.5rem 1.75rem;
  text-align: center;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 2;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.process-step:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-5px);
}
.process-step-number {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.15);
  letter-spacing: 0.05em;
}
.process-icon {
  font-size: 1.5rem;
  color: var(--brand-primary);
  background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-dark));
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 1.75rem;
  box-shadow: 0 0 0 8px rgba(var(--brand-accent-rgb), 0.15);
}
.process-step h4 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: white;
  font-weight: 600;
}
.process-step p { color: rgba(255,255,255,0.55); font-size: 0.95rem; line-height: 1.6; }

/* ============================================
   10. TESTIMONIALS
   ============================================ */
.section-testimonials { background: var(--bg-white); }

.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3.5rem;
  padding: 2rem 3rem;
  background: var(--bg-alabaster);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}
.rating-big { text-align: center; }
.rating-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--brand-primary);
  line-height: 1;
}
.rating-stars-large {
  color: var(--brand-accent);
  font-size: 1.2rem;
  margin: 0.5rem 0;
  display: flex;
  gap: 0.2rem;
  justify-content: center;
}
.rating-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.rating-platforms {
  display: flex;
  gap: 2rem;
  border-left: 1px solid var(--border-color);
  padding-left: 3rem;
}
.rating-platform {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.rating-platform i {
  font-size: 1.8rem;
  color: var(--text-muted);
}
.rating-platform strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-main);
}
.rating-platform span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.review-card {
  background: white;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid var(--border-light);
  transition: var(--transition);
}
.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.review-quote-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.5rem;
  color: rgba(var(--brand-accent-rgb), 0.15);
}
.review-stars {
  color: var(--brand-accent);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  display: flex;
  gap: 0.15rem;
}
.review-quote {
  font-size: 1.02rem;
  font-style: italic;
  color: var(--text-main);
  margin-bottom: 2rem;
  line-height: 1.8;
  flex: 1;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}
.review-avatar {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-light));
  color: white;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.review-author-info h5 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-primary);
}
.review-author-info span {
  font-size: 0.78rem;
  color: var(--brand-accent-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.review-source {
  margin-left: auto;
  color: var(--text-muted);
  font-size: 1.2rem;
}

/* ============================================
   11. GALLERY
   ============================================ */
.section-gallery { background: var(--bg-white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 1rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(var(--brand-primary-rgb), 0.7), transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: white;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.gallery-item-tall { grid-row: span 2; }
.gallery-item-wide { grid-column: span 2; }

/* ============================================
   12. COVERAGE
   ============================================ */
.section-coverage { background: var(--bg-alabaster); }

.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.coverage-content .section-title { text-align: left; }
.coverage-lead {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.coverage-areas {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.coverage-area-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: white;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}
.coverage-area-item:hover {
  border-color: rgba(var(--brand-accent-rgb), 0.3);
  box-shadow: var(--shadow-xs);
}
.coverage-area-item i {
  color: var(--brand-accent);
  font-size: 1.1rem;
  margin-top: 2px;
}
.coverage-area-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--brand-primary);
}
.coverage-area-item span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.coverage-visual { position: relative; }
.coverage-map-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.coverage-map-wrapper img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.coverage-map-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(var(--brand-primary-rgb), 0.3), rgba(var(--brand-primary-rgb), 0.6));
  display: flex;
  align-items: center;
  justify-content: center;
}
.coverage-pin {
  text-align: center;
  color: white;
  font-family: var(--font-heading);
}
.coverage-pin i {
  font-size: 3rem;
  color: var(--brand-accent);
  margin-bottom: 0.5rem;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}
.coverage-pin span {
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.3;
  background: rgba(0,0,0,0.3);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(10px);
}

/* ============================================
   13. FAQ
   ============================================ */
.section-faq { background: var(--bg-alabaster); }

.faq-wrap {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover {
  border-color: rgba(var(--brand-primary-rgb), 0.15);
}
.faq-item.active {
  border-color: rgba(var(--brand-accent-rgb), 0.3);
  box-shadow: var(--shadow-sm);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  text-align: left;
  transition: var(--transition);
}
.faq-question h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  flex: 1;
  padding-right: 1rem;
}
.faq-toggle {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: var(--bg-alabaster);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
  font-size: 0.8rem;
  transition: var(--transition);
}
.faq-item.active .faq-toggle {
  background: var(--brand-primary);
  color: white;
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-answer-inner {
  padding: 0 2rem 1.75rem;
}
.faq-answer p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.75;
}

/* ============================================
   14. CTA STRIP
   ============================================ */
.cta-strip {
  background: linear-gradient(170deg, var(--brand-primary-dark), var(--brand-primary));
  padding: 7rem 0;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(var(--brand-accent-rgb), 0.08), transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(var(--brand-accent-rgb), 0.06), transparent 60%);
}
.cta-content { position: relative; z-index: 2; }
.cta-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-accent);
  background: rgba(255,255,255,0.08);
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}
.cta-strip h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.25rem;
  color: white;
  font-weight: 800;
}
.cta-strip p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.cta-sub-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.cta-sub-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}
.cta-sub-links a:hover { color: var(--brand-accent); }

/* ============================================
   15. FOOTER
   ============================================ */
.main-footer {
  background: var(--bg-charcoal);
  color: rgba(255,255,255,0.55);
  position: relative;
}
.footer-top {
  padding: 5rem 0 4rem;
  border-top: 4px solid var(--brand-accent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.3fr;
  gap: 3.5rem;
}
.footer-brand .logo {
  color: white;
  margin-bottom: 1.5rem;
  background: #ffffff;
  padding: 0.5rem 0.8rem;
  border-radius: var(--radius-sm);
  width: fit-content;
}
.footer-brand .logo-icon {
  background: rgba(var(--brand-accent-rgb), 0.15);
}
.footer-brand p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.5);
}
.footer-social {
  display: flex;
  gap: 0.75rem;
}
.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--brand-accent);
  color: white;
  transform: translateY(-2px);
}

.footer-col h4 {
  color: white;
  margin-bottom: 1.75rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
}
.footer-col ul li { margin-bottom: 0.75rem; }
.footer-col ul a {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
  display: inline-block;
}
.footer-col ul a:hover {
  color: var(--brand-accent);
  transform: translateX(4px);
}
.footer-contact li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  align-items: flex-start;
  color: rgba(255,255,255,0.5);
}
.footer-contact i {
  color: var(--brand-accent);
  margin-top: 3px;
  font-size: 1rem;
  min-width: 16px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.75rem 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}
.footer-bottom-links {
  display: flex;
  gap: 2rem;
}
.footer-bottom-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--brand-accent); }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for grid items */
.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.4s; }
.animate-on-scroll:nth-child(6) { transition-delay: 0.5s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .why-choose-grid { grid-template-columns: 1fr; gap: 3rem; }
  .why-choose-visual { max-width: 500px; }
  .coverage-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 1024px) {
  .hero h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
  .service-block { gap: 3rem; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .process-grid::before { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 200px); }
  .gallery-item-tall { grid-row: span 1; }
  .gallery-item-wide { grid-column: span 2; }
  .rating-summary { flex-direction: column; gap: 1.5rem; padding: 1.5rem; }
  .rating-platforms { border-left: none; padding-left: 0; border-top: 1px solid var(--border-color); padding-top: 1.5rem; }
}

@media (max-width: 768px) {
  .top-utility-bar { display: none; }
  .mobile-toggle { display: flex; }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: white;
    box-shadow: var(--shadow-xl);
    padding: 5rem 2rem 2rem;
    transition: right 0.4s var(--ease);
    z-index: 999;
  }
  .main-nav.open { right: 0; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav li { width: 100%; }
  .main-nav a {
    display: block;
    padding: 1rem 0;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--border-light);
  }
  .main-nav a:not(.btn)::after { display: none; }
  .main-nav .btn-primary {
    margin-top: 1.5rem;
    text-align: center;
    width: 100%;
  }

  .hero { min-height: 85vh; }
  .hero h1 { font-size: 2.5rem; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-trust-micro { gap: 1.25rem; }
  .scroll-indicator { display: none; }

  .stats-grid {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    margin-top: -2rem;
  }
  .stat-divider { width: 50px; height: 1px; margin: 0; }

  .trust-grid { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }

  .service-block { grid-template-columns: 1fr; gap: 2rem; }
  .service-block.reverse .service-img-wrapper { order: -1; }
  .service-img-wrapper img { height: 320px; }

  .why-features-grid { grid-template-columns: 1fr; }
  .why-img-float { width: 160px; height: 130px; right: -10px; bottom: -30px; }

  .process-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 180px); }
  .gallery-item-wide { grid-column: span 1; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom-inner { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-bottom-links { justify-content: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .section { padding: var(--section-lg) 0; }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }
  .btn-lg { padding: 0.95rem 1.75rem; font-size: 0.9rem; }
  .section-title { font-size: 1.8rem; }
  .coverage-map-wrapper img { height: 300px; }
  .logo-img { height: 42px; }
}

/* ============================================
   PREMIUM REDESIGN ENHANCEMENTS
   ============================================ */
body {
  background: linear-gradient(180deg, #f7faf8 0%, #ffffff 320px);
}

.section {
  padding: clamp(5rem, 9vw, 7rem) 0;
}

.section-header {
  max-width: 760px;
  margin-inline: auto;
}

.main-header {
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(var(--brand-primary-rgb), 0.08);
}

.main-nav a {
  font-weight: 600;
}

.hero {
  text-align: left;
  min-height: 94vh;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 11;
}

.hero-content {
  max-width: 100%;
  padding: 1rem 0;
}

.hero p {
  margin-inline: 0;
  max-width: 620px;
}

.hero-ctas {
  justify-content: flex-start;
}

.hero-trust-micro {
  justify-content: flex-start;
  gap: 1.25rem 1.8rem;
}

.hero-panel {
  background: rgba(8, 31, 19, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-xl);
}

.hero-panel h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.hero-panel p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 1.15rem;
  font-size: 0.98rem;
}

.hero-panel-points {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.4rem;
}

.hero-panel-points li {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  display: flex;
  gap: 0.65rem;
  align-items: center;
}

.hero-panel-points i {
  color: var(--brand-accent);
}

.hero-panel .btn {
  width: 100%;
  margin-bottom: 1rem;
}

.hero-panel-contact {
  display: grid;
  gap: 0.5rem;
}

.hero-panel-contact a {
  color: rgba(255, 255, 255, 0.8);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9rem;
  transition: var(--transition);
}

.hero-panel-contact a:hover {
  color: var(--brand-accent-light);
}

.gallery-grid {
  grid-auto-flow: dense;
}

.gallery-cta-wrap {
  margin-top: 3rem;
}

.showcase-band {
  background: var(--bg-white);
  padding: 2.25rem 0 1rem;
}

.showcase-grid {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.showcase-text {
  padding: clamp(2rem, 4vw, 3.4rem);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbf9 100%);
}

.showcase-text h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 1rem;
}

.showcase-text p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.showcase-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.showcase-metrics div {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1rem;
}

.showcase-metrics strong {
  display: block;
  color: var(--brand-primary);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.showcase-metrics span {
  color: var(--text-muted);
  font-size: 0.86rem;
}

.showcase-image {
  position: relative;
  min-height: 100%;
}

.showcase-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.showcase-image-badge {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  background: rgba(16, 59, 38, 0.9);
  color: #fff;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.showcase-image-badge i {
  color: var(--brand-accent);
}

.trade-categories {
  margin-top: 2.25rem;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.trade-categories-header {
  margin-bottom: 1rem;
}

.trade-categories-header h3 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.trade-categories-header p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.trade-categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.trade-category-item {
  border: 1px solid var(--border-light);
  background: #fbfdfc;
  border-radius: var(--radius-sm);
  padding: 0.9rem 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
  transition: var(--transition);
}

.trade-category-item i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(var(--brand-primary-rgb), 0.08);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.trade-category-item:hover {
  border-color: rgba(var(--brand-primary-rgb), 0.35);
  background: #f5faf7;
  transform: translateY(-2px);
}

.trust-assurance {
  margin-top: 2.2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.trust-assurance-item {
  background: #fbfcfc;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1rem 1.1rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.trust-assurance-item i {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 50%;
  background: rgba(var(--brand-primary-rgb), 0.1);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-assurance-item h4 {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.trust-assurance-item p {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.section-consultation {
  background: linear-gradient(180deg, #f4f8f6 0%, #ffffff 100%);
}

.consultation-wrap {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-md);
}

.consultation-content p {
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

.consultation-points {
  display: grid;
  gap: 0.65rem;
}

.consultation-points div {
  background: var(--bg-alabaster);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  padding: 0.7rem 0.9rem;
  font-size: 0.9rem;
  color: var(--text-main);
}

.consultation-points i {
  color: var(--brand-primary);
  margin-right: 0.4rem;
}

.consultation-form {
  background: #f9fcfa;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  display: grid;
  gap: 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.consultation-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
}

.consultation-form input,
.consultation-form textarea {
  width: 100%;
  border: 1px solid #d7e2db;
  border-radius: 10px;
  padding: 0.8rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-main);
  background: #fff;
  transition: var(--transition);
}

.consultation-form input:focus,
.consultation-form textarea:focus {
  outline: none;
  border-color: rgba(var(--brand-primary-rgb), 0.5);
  box-shadow: 0 0 0 4px rgba(var(--brand-primary-rgb), 0.08);
}

.consultation-form .btn {
  width: 100%;
}

.footer-certifications {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}

.footer-certifications span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font-size: 0.74rem;
  letter-spacing: 0.02em;
}

.footer-certifications i {
  color: var(--brand-accent);
}

@media (max-width: 1024px) {
  .hero-layout,
  .showcase-grid,
  .consultation-wrap {
    grid-template-columns: 1fr;
  }

  .hero {
    text-align: center;
  }

  .hero p,
  .hero-ctas,
  .hero-trust-micro {
    justify-content: center;
    margin-inline: auto;
  }

  .hero-panel {
    max-width: 620px;
    margin: 0 auto;
    text-align: left;
  }

  .trade-categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase-image img {
    min-height: 290px;
  }

  .trust-assurance {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .showcase-band {
    padding-top: 1.5rem;
  }

  .stats-bar {
    margin-top: -2rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .trade-categories-grid {
    grid-template-columns: 1fr;
  }
}
