/* ─────────────────────────────────────────
   X-DOOR  —  Pure CSS (converted from React)
   ───────────────────────────────────────── */

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

/* ── Variables ────────────────────────── */
:root {
  --primary: #f25922;
  --secondary: #153259;
  --dark: #0e2140;
  --light: #f8f9fb;
  --white: #ffffff;
  --muted: #6b7280;
  --border: #e5e7eb;
  --font: "Tajawal", sans-serif;
  --radius: 0.5rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.25rem;
  --shadow-sm: 0 2px 12px rgba(21, 50, 89, 0.06);
  --shadow-md: 0 8px 40px rgba(21, 50, 89, 0.1);
  --shadow-lg: 0 20px 60px rgba(21, 50, 89, 0.14);
}

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

html {
  scroll-behavior: smooth;
  direction: rtl;
}

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--secondary);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
button {
  cursor: pointer;
  font-family: var(--font);
  border: none;
  background: none;
}

/* ── Custom Scrollbar ─────────────────── */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 3px;
}

/* ── Container ────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Typography Utilities ─────────────── */
.font-900 {
  font-weight: 900;
}
.font-700 {
  font-weight: 700;
}
.text-primary {
  color: var(--primary);
}
.text-secondary {
  color: var(--secondary);
}
.text-muted {
  color: var(--muted);
}
.text-white {
  color: var(--white);
}

/* ── Section Label ────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.25rem;
}
.section-label::before {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  flex-shrink: 0;
}

/* ── Buttons ──────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  font-family: var(--font);
  border-radius: 4px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  text-decoration: none;
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover::before {
  opacity: 1;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(242, 89, 34, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  font-family: var(--font);
  border-radius: 4px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition:
    border-color 0.3s,
    background 0.3s;
  text-decoration: none;
}
.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 40px;
  background: var(--white);
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
  font-family: var(--font);
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  text-decoration: none;
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 40px;
  background: transparent;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  font-family: var(--font);
  border-radius: 4px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition:
    border-color 0.3s,
    background 0.3s;
  text-decoration: none;
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

/* ── Card Lift ────────────────────────── */
.card-lift {
  transition:
    transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.3s ease;
}
.card-lift:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(21, 50, 89, 0.12);
}

/* ── Dot Grid ─────────────────────────── */
.dot-grid {
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.08) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
}
.dot-grid-dark {
  background-image: radial-gradient(
    circle,
    var(--secondary) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
}

/* ═══════════════════════════════════════
   NAVBAR
═══════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
  padding: 1rem 0;
  transition:
    padding 0.4s,
    box-shadow 0.4s,
    background 0.4s;
  width: 100%;
}
.navbar.scrolled {
  padding: 0.75rem 0;
  box-shadow: 0 2px 40px rgba(21, 50, 89, 0.08);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.navbar-logo img {
  height: 55px;
  width: auto;
  object-fit: contain;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  position: relative;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(21, 50, 89, 0.8);
  transition: color 0.2s;
  border-radius: 4px;
  text-decoration: none;
}
.nav-link:hover {
  color: var(--secondary);
}
.nav-link.active {
  color: var(--primary);
  font-weight: 700;
}
.nav-link .nav-underline {
  position: absolute;
  bottom: 0;
  right: 1rem;
  left: 1rem;
  height: 2px;
  background: var(--primary);
  border-radius: 99px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s;
}
.nav-link.active .nav-underline {
  transform: scaleX(1);
}
.nav-link:hover .nav-underline {
  transform: scaleX(0.4);
  opacity: 0.4;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(21, 50, 89, 0.8);
  cursor: pointer;
  border-radius: 4px;
  transition: color 0.2s;
  background: none;
  border: none;
  font-family: var(--font);
}
.nav-dropdown-btn:hover {
  color: var(--secondary);
}
.nav-dropdown-btn .chevron {
  width: 14px;
  height: 14px;
  transition: transform 0.2s;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.nav-dropdown:hover .nav-dropdown-btn .chevron {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  width: 240px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(21, 50, 89, 0.12);
  border-radius: 12px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition:
    opacity 0.2s,
    visibility 0.2s,
    transform 0.2s;
  z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  font-size: 0.875rem;
  color: var(--secondary);
  transition:
    background 0.15s,
    color 0.15s;
  margin: 4px;
  border-radius: 8px;
}
.nav-dropdown-menu a:hover {
  background: rgba(242, 89, 34, 0.05);
  color: var(--primary);
}
.nav-dropdown-menu a svg {
  opacity: 0;
  transition: opacity 0.2s;
  width: 14px;
  height: 14px;
}
.nav-dropdown-menu a:hover svg {
  opacity: 1;
}

/* CTA area */
.navbar-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.navbar-cta .nav-link {
  font-size: 0.875rem;
}
.navbar-cta .btn-primary {
  font-size: 0.875rem;
  padding: 10px 24px;
}

/* Mobile toggle */
.mobile-toggle {
  display: none;
  padding: 8px;
  color: var(--secondary);
  border-radius: 8px;
  transition: background 0.2s;
}
.mobile-toggle:hover {
  background: var(--light);
}
.mobile-toggle svg {
  width: 27px;
  height: 27px;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  transition:
    max-height 0.35s ease,
    opacity 0.3s ease;
}
.mobile-menu.open {
  max-height: 600px;
  opacity: 1;
}
.mobile-menu-inner {
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--secondary);
  transition:
    background 0.15s,
    color 0.15s;
}
.mobile-nav-link:hover {
  background: var(--light);
}
.mobile-nav-link.active {
  background: rgba(242, 89, 34, 0.08);
  color: var(--primary);
  font-weight: 700;
}
.mobile-nav-link .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}
.mobile-sub-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--secondary);
  background: none;
  border: none;
  font-family: var(--font);
  cursor: pointer;
  transition: background 0.15s;
}
.mobile-sub-toggle:hover {
  background: var(--light);
}
.mobile-sub-toggle .chevron {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}
.mobile-sub-toggle.open .chevron {
  transform: rotate(180deg);
}
.mobile-sub-links {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.25s ease;
  padding-right: 1rem;
  border-right: 2px solid rgba(242, 89, 34, 0.2);
  margin-right: 1rem;
  margin-top: 4px;
}
.mobile-sub-links.open {
  max-height: 200px;
}
.mobile-sub-links a {
  display: block;
  padding: 8px 16px;
  font-size: 0.85rem;
  color: rgba(21, 50, 89, 0.7);
  border-radius: 8px;
  transition:
    color 0.15s,
    background 0.15s;
}
.mobile-sub-links a:hover {
  color: var(--primary);
  background: var(--light);
}
.mobile-cta {
  margin-top: 12px;
}
.mobile-cta .btn-primary {
  width: 100%;
  justify-content: center;
  font-size: 0.9rem;
  padding: 12px;
}

/* ═══════════════════════════════════════
   FLOATING BUTTONS
═══════════════════════════════════════ */
.floating-buttons {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  text-decoration: none;
  color: var(--white);
}
.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}
.floating-btn.whatsapp {
  background: #25d366;
}
.floating-btn.phone {
  background: var(--primary);
}
.floating-btn svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}
.floating-btn.phone svg {
  width: 22px;
  height: 22px;
}

/* ═══════════════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════════════ */
.page-hero {
  position: relative;
  background: var(--dark);
  overflow: hidden;
  padding: 5rem 0;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.05) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
}
.page-hero-accent {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40%;
  background: rgba(242, 89, 34, 0.08);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
}
.page-hero-accent.right {
  right: 0;
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
}
.page-hero-accent.left {
  left: 0;
  clip-path: polygon(0 0, 60% 0, 100% 100%, 0 100%);
}
.page-hero .container {
  position: relative;
  z-index: 2;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.5rem;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: rgba(255, 255, 255, 0.7);
}
.breadcrumb .current {
  color: var(--primary);
  font-weight: 600;
}
.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
}
.page-hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 36rem;
}

/* ═══════════════════════════════════════
   HOME — HERO SECTION
═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--dark);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg-layer1 {
  position: absolute;
  inset: 0;
  background: rgba(21, 50, 89, 0.7);
  clip-path: polygon(0 0, 88% 0, 100% 100%, 0 100%);
}
.hero-bg-diagonal {
  display: none;
  position: absolute;
  inset: 0;
  left: 0;
  background: var(--primary);
  opacity: 0.9;
  clip-path: polygon(86% 0, 90% 0, 102% 100%, 98% 100%);
  width: 50%;
}
.hero-bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.04) 1px,
    transparent 1px
  );
  background-size: 32px 32px;
}
.hero-bg-circle1 {
  position: absolute;
  bottom: -10rem;
  right: -10rem;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.hero-bg-circle2 {
  position: absolute;
  bottom: -15rem;
  right: -15rem;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.03);
}
.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 8rem;
  padding-bottom: 8rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* Hero text */
.hero-text .hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.5rem;
}
.hero-text .hero-label::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--primary);
  flex-shrink: 0;
}
.hero-text h1 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 1.5rem;
}
.hero-text h1 span {
  color: var(--primary);
}
.hero-text p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 32rem;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4rem;
}

/* Hero stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-stat-val {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.hero-stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Hero door visual */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.door-wrapper {
  background: url(assets/images/banner.webp);
  position: relative;
  width: 100% !important;
  height: 540px !important;
  background-size: cover;
  background-position: center center;
}
@media (min-width: 768px) {
  .door-wrapper {
    width: 320px;
    height: 600px;
  }
}
.door-glow {
  position: absolute;
  inset: 0;
  background: rgba(242, 89, 34, 0.1);
  border-radius: 4px;
  filter: blur(40px);
  transform: scale(1.1);
}
.door-frame-outer {
  position: absolute;
  inset: 0;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
.door-body {
  position: absolute;
  inset: 1rem;
  background: #1a3d6b;
  border-radius: 4px;
  overflow: hidden;
}
.door-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent);
}
.door-panels {
  position: absolute;
  inset: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.door-panel-top {
  flex: 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
}
.door-panel-bottom {
  flex: 1.5;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
}
.door-handle {
  position: absolute;
  right: 1.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 56px;
  background: rgba(242, 89, 34, 0.7);
  border-radius: 99px;
}
.door-badge-x {
  position: absolute;
  top: -1rem;
  right: -1rem;
  width: 64px;
  height: 64px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(242, 89, 34, 0.5);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
}
.door-tag {
  position: absolute;
  bottom: -2rem;
  left: -1.5rem;
  background: var(--white);
  border-radius: 12px;
  padding: 12px 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--border);
  animation: floatTag 3s ease-in-out infinite;
}
@keyframes floatTag {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.door-tag .tag-label {
  font-size: 0.6rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2px;
}
.door-tag .tag-val {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--secondary);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
}
.hero-scroll .line {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}
.hero-scroll .line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  animation: scrollLine 2s linear infinite;
}
@keyframes scrollLine {
  0% {
    height: 0;
    transform: translateY(-100%);
  }
  100% {
    height: 100%;
    transform: translateY(100%);
  }
}
.hero-scroll span {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════
   HOME — ABOUT
═══════════════════════════════════════ */
.about {
  padding: 7rem 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 16rem;
  height: 16rem;
  background: rgba(242, 89, 34, 0.03);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
/* About visual card */
.about-visual {
  position: relative;
}
.about-card {
  position: relative;
  background: var(--dark);
  border-radius: 1.25rem;
  padding: 2.5rem;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.about-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.04) 1px,
    transparent 1px
  );
  background-size: 24px 24px;
}
.about-card-x {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  user-select: none;
  pointer-events: none;
  line-height: 1;
}
.about-card-vision,
.about-card-mission {
  position: relative;
  z-index: 2;
  padding: 1.25rem 1.5rem;
  border-radius: 0.75rem;
}
.about-card-vision {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  max-width: 80%;
}
.about-card-mission {
  background: rgba(242, 89, 34, 0.9);
  border: 1px solid rgba(242, 89, 34, 0.2);
  max-width: 80%;
  align-self: flex-end;
}
.about-card-label {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}
.about-card-vision .about-card-label {
  color: var(--primary);
}
.about-card-mission .about-card-label {
  color: rgba(255, 255, 255, 0.7);
}
.about-card-vision p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  line-height: 1.6;
}
.about-card-mission p {
  color: var(--white);
  font-size: 0.875rem;
  line-height: 1.6;
}
.about-accent-bar {
  position: absolute;
  bottom: -1rem;
  right: 2rem;
  left: 2rem;
  height: 6px;
  background: var(--primary);
  border-radius: 99px;
  opacity: 0.6;
}
/* About text */
.about-text h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--secondary);
  line-height: 1.25;
  margin-bottom: 1.5rem;
}
.about-text h2 span {
  color: var(--primary);
}
.about-text > p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 2rem;
}
.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(21, 50, 89, 0.8);
}
.about-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
   HOME — WHY X-DOOR
═══════════════════════════════════════ */
.why {
  padding: 7rem 0;
  background: var(--light);
}
.why-header {
  margin-bottom: 4rem;
}
.why-header h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--secondary);
  line-height: 1.25;
}
.why-header h2 span {
  color: var(--primary);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  position: relative;
  background: var(--white);
  border-radius: 1.25rem;
  padding: 2rem;
  border: 1px solid rgba(229, 231, 235, 0.8);
  overflow: hidden;
  cursor: default;
  transition:
    transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.3s;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(21, 50, 89, 0.12);
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s;
}
.feature-card:hover::before {
  transform: scaleX(1);
}
.feature-num {
  position: absolute;
  top: -12px;
  left: 12px;
  font-size: 5.5rem;
  font-weight: 900;
  color: rgba(21, 50, 89, 0.04);
  line-height: 1;
  transition: color 0.3s;
  user-select: none;
}
.feature-card:hover .feature-num {
  color: rgba(242, 89, 34, 0.06);
}
.feature-icon {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  background: rgba(242, 89, 34, 0.08);
  color: var(--primary);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition:
    background 0.3s,
    color 0.3s;
}
.feature-card:hover .feature-icon {
  background: var(--primary);
  color: var(--white);
}
.feature-icon svg {
  width: 22px;
  height: 22px;
}
.feature-card h3 {
  position: relative;
  z-index: 1;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.75rem;
}
.feature-card p {
  position: relative;
  z-index: 1;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   HOME — SERVICES
═══════════════════════════════════════ */
.services {
  padding: 7rem 0;
  background: var(--white);
}
.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}
.services-header h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--secondary);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  position: relative;
  background: var(--light);
  border-radius: 1.25rem;
  padding: 2.5rem;
  overflow: hidden;
  cursor: default;
  border: 1px solid transparent;
  transition:
    background 0.35s,
    border-color 0.35s,
    box-shadow 0.35s;
}
.service-card:hover {
  background: var(--dark);
  border-color: var(--dark);
  box-shadow: 0 20px 60px rgba(14, 33, 64, 0.2);
}
.service-num {
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 5rem;
  font-weight: 900;
  color: rgba(21, 50, 89, 0.06);
  line-height: 1;
  transition: color 0.3s;
  user-select: none;
}
.service-card:hover .service-num {
  color: rgba(255, 255, 255, 0.05);
}
.service-inner {
  position: relative;
  z-index: 1;
  padding-top: 2rem;
}
.service-line {
  width: 40px;
  height: 2px;
  background: var(--primary);
  margin-bottom: 2rem;
}
.service-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 1rem;
  transition: color 0.3s;
}
.service-card:hover h3 {
  color: var(--white);
}
.service-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
  transition: color 0.3s;
}
.service-card:hover p {
  color: rgba(255, 255, 255, 0.65);
}
.service-more {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: 2rem;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.3s,
    transform 0.3s;
}
.service-card:hover .service-more {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════
   HOME — PROCESS
═══════════════════════════════════════ */
.process {
  padding: 7rem 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.process::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.04) 1px,
    transparent 1px
  );
  background-size: 36px 36px;
}
.process::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 24rem;
  height: 24rem;
  background: rgba(242, 89, 34, 0.1);
  border-radius: 50%;
  filter: blur(80px);
  transform: translate(50%, -50%);
}
.process .container {
  position: relative;
  z-index: 2;
}
.process-header {
  margin-bottom: 4rem;
}
.process-header h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--white);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.process-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
}
.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 24px;
  right: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 0;
}
.step-circle {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(242, 89, 34, 0.4);
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
}
.step-circle svg {
  width: 20px;
  height: 20px;
}
.step-num {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 0.5rem;
}
.step-desc {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ═══════════════════════════════════════
   HOME — QUOTE
═══════════════════════════════════════ */
.quote {
  padding: 7rem 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.quote-mark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18rem;
  font-weight: 900;
  color: rgba(21, 50, 89, 0.025);
  user-select: none;
  pointer-events: none;
  line-height: 1;
}
.quote .container {
  position: relative;
  z-index: 2;
  text-align: center;
}
.quote-divider {
  width: 48px;
  height: 4px;
  background: var(--primary);
  border-radius: 99px;
  margin: 0 auto 2.5rem;
}
.quote blockquote {
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-weight: 500;
  color: rgba(21, 50, 89, 0.9);
  line-height: 2;
  max-width: 56rem;
  margin: 0 auto;
}
.quote-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 2.5rem;
}
.quote-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(242, 89, 34, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary);
  font-size: 0.9rem;
}
.quote-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--secondary);
}
.quote-role {
  font-size: 0.9rem;
  color: var(--muted);
}

/* ═══════════════════════════════════════
   HOME — CTA
═══════════════════════════════════════ */
.cta-section {
  position: relative;
  background: var(--primary);
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: -5rem;
  left: -5rem;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}
.cta-section::after {
  content: "";
  position: absolute;
  bottom: -5rem;
  right: -5rem;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}
.cta-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.06) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
}
.cta-section .container {
  position: relative;
  z-index: 2;
  padding-top: 6rem;
  padding-bottom: 6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.cta-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 1rem;
}
.cta-text p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 32rem;
}
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  background: #0a1a2e;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.footer-top-line {
  height: 4px;
  background: var(--primary);
}
.footer-bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.03) 1px,
    transparent 1px
  );
  background-size: 32px 32px;
  pointer-events: none;
}
.footer-bg-x {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 19rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.02);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  transform: translate(-3rem, 4rem);
}
.footer .container {
  position: relative;
  z-index: 2;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  padding: 4rem 0 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.footer-logo-wrap {
}
.footer-logo-wrap img {
  height: 55px;
  width: auto;
  margin-bottom: 10px;
}
.footer-brand > p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  max-width: 22rem;
  margin-bottom: 1.5rem;
}
.footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.2);
  color: #25d366;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.2s;
}
.footer-wa:hover {
  background: rgba(37, 211, 102, 0.2);
}
.footer-wa svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.footer-col h3 {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 1.5rem;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col ul li a:hover {
  color: var(--white);
}
.footer-col ul li a svg {
  opacity: 0;
  transition: opacity 0.2s;
  width: 12px;
  height: 12px;
}
.footer-col ul li a:hover svg {
  opacity: 1;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.25rem;
}
.footer-contact-item:last-child {
  margin-bottom: 0;
}
.footer-contact-icon {
  width: 32px;
  height: 32px;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.footer-contact-item:hover .footer-contact-icon {
  background: rgba(242, 89, 34, 0.2);
  border-color: rgba(242, 89, 34, 0.3);
}
.footer-contact-icon svg {
  width: 14px;
  height: 14px;
}
.footer-contact-label {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 2px;
}
.footer-contact-val {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}
.footer-contact-item:hover .footer-contact-val {
  color: var(--white);
}
.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ═══════════════════════════════════════
   DOORS PAGE
═══════════════════════════════════════ */
.doors-gallery {
  padding: 5rem 0;
  background: var(--light);
}
.gallery-section {
  margin-bottom: 6rem;
}
.gallery-section:last-child {
  margin-bottom: 0;
}
.gallery-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}
.gallery-header-left .gallery-sublabel {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  margin-bottom: 4px;
}
.gallery-header-left h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 900;
  color: var(--secondary);
}
.gallery-count {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--muted);
}
.gallery-count-line {
  width: 32px;
  height: 1px;
  background: rgba(242, 89, 34, 0.3);
}
.doors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.door-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 0.75rem;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(21, 50, 89, 0.08);
  transition: box-shadow 0.4s;
}
.door-card:hover {
  box-shadow: 0 16px 48px rgba(21, 50, 89, 0.18);
}
.door-card-bg {
  position: absolute;
  inset: 0;
  background: var(--dark);
  transition: transform 0.5s;
}
.door-card:hover .door-card-bg {
  transform: scale(1.05);
}
.door-card-silhouette {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.door-sil {
  position: relative;
  width: 60%;
  height: 78%;
}
.door-sil-frame {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}
.door-sil-panel {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 2px;
}
.door-sil-modern .panels {
  position: absolute;
  inset: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.door-sil-modern .panel-top {
  flex: 1;
}
.door-sil-modern .panel-bot {
  flex: 1.5;
}
.door-sil-classic .panels {
  position: absolute;
  inset: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.door-sil-classic .panel-a {
  height: 28%;
}
.door-sil-classic .panel-b {
  height: 20%;
}
.door-sil-classic .panel-c {
  flex: 1;
}
.door-sil-handle {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 36px;
  background: rgba(242, 89, 34, 0.65);
  border-radius: 99px;
}
.door-sil-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent);
}
.door-card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    transparent 100%
  );
}
.door-card-accent {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s;
}
.door-card:hover .door-card-accent {
  transform: scaleX(1);
}
.door-card-content {
  position: absolute;
  inset-x: 0;
  bottom: 0;
  padding: 1rem;
  z-index: 10;
}
.door-card-title {
  font-weight: 700;
  color: var(--white);
  font-size: 0.875rem;
  margin-bottom: 4px;
}
.door-card-num {
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
}
.door-card-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(242, 89, 34, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 900;
  color: var(--white);
  opacity: 0;
  transition: opacity 0.3s;
}
.door-card:hover .door-card-badge {
  opacity: 1;
}
/* Doors bottom CTA */
.doors-cta {
  background: var(--white);
  padding: 4rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
}
.doors-cta h3 {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--secondary);
  margin-bottom: 1rem;
}
.doors-cta p {
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

/* ═══════════════════════════════════════
   ACCESSORIES PAGE
═══════════════════════════════════════ */
.acc-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 73px;
  z-index: 50;
}
.acc-nav-inner {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0.75rem 0;
  overflow-x: auto;
}
.acc-nav-inner::-webkit-scrollbar {
  display: none;
}
.acc-nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(21, 50, 89, 0.7);
  white-space: nowrap;
  transition:
    color 0.15s,
    background 0.15s;
}
.acc-nav-link:hover {
  color: var(--secondary);
  background: var(--light);
}
.acc-nav-link svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
}
.accessories-content {
  padding: 5rem 0;
  background: var(--white);
}
.acc-section {
  margin-bottom: 7rem;
  scroll-margin-top: 120px;
}
.acc-section:last-child {
  margin-bottom: 0;
}
.acc-section-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.acc-section-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.acc-section-icon {
  width: 56px;
  height: 56px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.acc-section-icon svg {
  width: 24px;
  height: 24px;
}
.acc-sublabel {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  margin-bottom: 4px;
}
.acc-section-left h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 900;
  color: var(--secondary);
}
.acc-section-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 28rem;
}
.acc-divider {
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--border),
    transparent
  );
  margin-bottom: 3rem;
}
.acc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.acc-card {
  background: var(--light);
  border: 1px solid rgba(229, 231, 235, 0.8);
  border-radius: 1.25rem;
  overflow: hidden;
  cursor: default;
  transition:
    background 0.4s,
    border-color 0.4s,
    box-shadow 0.4s,
    transform 0.3s;
}
.acc-card:hover {
  background: var(--white);
  border-color: var(--border);
  box-shadow: 0 8px 40px rgba(21, 50, 89, 0.1);
  transform: translateY(-6px);
}
.acc-card-img {
  /* aspect-ratio: 1; */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.acc-card-circles {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.acc-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid currentColor;
}
.acc-icon-box {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s;
}
.acc-icon-box svg {
  width: 24px;
  height: 24px;
}
.acc-card:hover .acc-icon-box {
  transform: scale(1.1);
}
.acc-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 900;
  color: var(--secondary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.acc-card-body {
  padding: 1.25rem;
}
.acc-card-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 4px;
  transition: color 0.3s;
}
.acc-card:hover .acc-card-body h3 {
  color: var(--primary);
}
.acc-card-body .acc-card-meta {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}
.acc-card-cta {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  opacity: 0;
  transform: translateY(4px);
  transition:
    opacity 0.3s,
    transform 0.3s;
}
.acc-card:hover .acc-card-cta {
  opacity: 1;
  transform: translateY(0);
}
.acc-card-bottom-line {
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s;
}
.acc-card:hover .acc-card-bottom-line {
  transform: scaleX(1);
}
/* Accessories CTA banner */
.acc-cta {
  background: var(--light);
  padding: 4rem 0;
}
.acc-cta-inner {
  background: var(--dark);
  border-radius: 1.25rem;
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  overflow: hidden;
  flex-wrap: wrap;
}
.acc-cta-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.04) 1px,
    transparent 1px
  );
  background-size: 24px 24px;
}
.acc-cta-text {
  position: relative;
  z-index: 1;
}
.acc-cta-text h3 {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.acc-cta-text p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 24rem;
}

/* ═══════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════ */
.contact-wrap {
  padding: 5rem 0;
  background: var(--light);
}
.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.contact-form-card {
  background: var(--white);
  border-radius: 1.25rem;
  box-shadow: 0 8px 60px rgba(21, 50, 89, 0.07);
  border: 1px solid rgba(229, 231, 235, 0.8);
  overflow: hidden;
}
.contact-form-header {
  background: var(--dark);
  padding: 1.5rem 2rem;
  position: relative;
  overflow: hidden;
}
.contact-form-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.04) 1px,
    transparent 1px
  );
  background-size: 20px 20px;
}
.contact-form-header h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  position: relative;
  z-index: 1;
}
.contact-form-header p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
  position: relative;
  z-index: 1;
}
.contact-form-body {
  padding: 2rem;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(21, 50, 89, 0.7);
  margin-bottom: 0.5rem;
}
.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: var(--light);
  color: var(--secondary);
  font-family: var(--font);
  font-size: 0.9rem;
  transition:
    background 0.2s,
    border-color 0.2s,
    box-shadow 0.2s;
  outline: none;
}
.form-input:focus,
.form-textarea:focus {
  background: var(--white);
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(242, 89, 34, 0.08);
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: #9ca3af;
}
.form-textarea {
  resize: none;
  min-height: 130px;
}
.form-error {
  color: #ef4444;
  font-size: 0.75rem;
  margin-top: 6px;
  display: none;
}
.form-error.show {
  display: block;
}
/* Contact info sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-info-card {
  background: var(--white);
  border-radius: 1.25rem;
  box-shadow: 0 8px 60px rgba(21, 50, 89, 0.07);
  border: 1px solid rgba(229, 231, 235, 0.8);
  padding: 2rem;
}
.contact-info-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.contact-info-title::before {
  content: "";
  width: 4px;
  height: 24px;
  background: var(--primary);
  border-radius: 99px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-item:last-child {
  margin-bottom: 0;
}
.contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 0.75rem;
  background: rgba(242, 89, 34, 0.06);
  border: 1px solid rgba(242, 89, 34, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  transition:
    background 0.3s,
    color 0.3s;
}
.contact-item:hover .contact-item-icon {
  background: var(--primary);
  color: var(--white);
}
.contact-item-icon svg {
  width: 20px;
  height: 20px;
}
.contact-item-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(21, 50, 89, 0.4);
  display: block;
  margin-bottom: 2px;
}
.contact-item-val {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary);
  transition: color 0.2s;
}
.contact-item:hover .contact-item-val {
  color: var(--primary);
}
/* WhatsApp CTA */
.wa-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #25d366;
  border-radius: 1.25rem;
  padding: 1.5rem;
  text-decoration: none;
  box-shadow: 0 8px 40px rgba(37, 211, 102, 0.2);
  transition:
    box-shadow 0.3s,
    transform 0.3s;
}
.wa-cta:hover {
  box-shadow: 0 12px 50px rgba(37, 211, 102, 0.3);
  transform: translateY(-2px);
}
.wa-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wa-icon-box svg {
  width: 28px;
  height: 28px;
  fill: white;
}
.wa-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}
.wa-sub {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 2px;
}
.wa-arrow {
  margin-right: auto;
  color: rgba(255, 255, 255, 0.6);
}
.wa-arrow svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
/* Hours card */
.hours-card {
  background: var(--dark);
  border-radius: 1.25rem;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}
.hours-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.04) 1px,
    transparent 1px
  );
  background-size: 20px 20px;
}
.hours-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.625rem;
  position: relative;
  z-index: 1;
}
.hours-row span:last-child {
  color: rgba(255, 255, 255, 0.9);
}
/* Map */
.contact-map {
  border-radius: 1.25rem;
  overflow: hidden;
  height: 360px;
  position: relative;
  box-shadow: 0 8px 60px rgba(21, 50, 89, 0.07);
  border: 1px solid var(--border);
}
.map-bg {
  position: absolute;
  inset: 0;
  background: #e8edf2;
}
.map-grid-h {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      #d9e1ea 0,
      #d9e1ea 1px,
      transparent 0,
      transparent 60px
    ),
    repeating-linear-gradient(
      90deg,
      #d9e1ea 0,
      #d9e1ea 1px,
      transparent 0,
      transparent 60px
    );
}
.map-road-h {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 40px;
  background: rgba(255, 255, 255, 0.6);
  transform: translateY(-50%);
}
.map-road-v {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 33%;
  width: 24px;
  background: rgba(255, 255, 255, 0.6);
}
.map-pin-card {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-pin-inner {
  background: var(--white);
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 8px 40px rgba(21, 50, 89, 0.18);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.map-pin-icon {
  width: 48px;
  height: 48px;
  background: rgba(242, 89, 34, 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}
.map-pin-icon svg {
  width: 24px;
  height: 24px;
}
.map-pin-title {
  font-weight: 700;
  color: var(--secondary);
  font-size: 1.05rem;
}
.map-pin-sub {
  font-size: 0.875rem;
  color: var(--muted);
}
.map-dot {
  position: absolute;
  top: calc(50% - 48px);
  left: calc(33% + 12px);
  width: 16px;
  height: 16px;
  background: var(--primary);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 2px 8px rgba(242, 89, 34, 0.5);
}

/* ═══════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}
.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition:
    opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition:
    opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition:
    opacity 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-visual {
    order: -1;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .process-step::after {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .doors-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .acc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  .navbar-links {
    display: none;
  }
  .navbar-cta {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
  .mobile-menu {
    display: block;
  }
  .hero .container {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .hero-grid {
    gap: 2rem;
  }
  .door-wrapper {
    width: 220px;
    height: 300px;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .process-steps {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .doors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .acc-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cta-section .container {
    flex-direction: column;
    text-align: center;
  }
  .services-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .gallery-header {
    flex-direction: column;
    gap: 1rem;
  }
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  .hero-stat-val {
    font-size: 1.75rem;
  }
  .acc-cta-inner {
    flex-direction: column;
  }
  .acc-section-header {
    flex-direction: column;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .btn-primary,
  .btn-secondary,
  .btn-white,
  .btn-outline-white {
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .doors-grid {
    grid-template-columns: 1fr 1fr;
  }
  .acc-grid {
    grid-template-columns: 1fr;
  }
  .acc-cta-inner {
    padding: 1.5rem;
  }
  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }
}

/* ═══════════════════════════════════════
   Vectoorize Mobile Responsive Fixes
   - Desktop: WhatsApp floating icon only
   - Mobile: WhatsApp + Call floating icons
   - Prevent mobile overflow and tighten layouts
═══════════════════════════════════════ */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

img,
svg,
video,
iframe {
  max-width: 100%;
}

.floating-buttons {
  left: 24px;
  right: auto;
  bottom: 24px;
}

.floating-btn.phone {
  display: none;
}

@media (max-width: 1024px) {
  .navbar-inner {
    gap: 1rem;
  }

  .navbar-links,
  .navbar-cta {
    gap: 0;
  }

  .nav-link,
  .nav-dropdown-btn {
    padding-inline: 10px;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 2rem;
  }
}

@media (max-width: 768px) {
  body {
    /* padding-bottom: 92px; */
  }

  .container {
    width: 100%;
    max-width: 100%;
    padding-inline: 16px;
  }

  .navbar {
    padding: .75rem 0;
  }

  .navbar-inner {
    gap: .75rem;
  }

  .navbar-logo img {
    height: 38px;
    max-width: 138px;
  }

  .mobile-toggle {
    min-width: 40px;
    min-height: 40px;
    align-items: center;
    justify-content: center;
  }

  .mobile-menu {
    width: 100%;
  }

  .mobile-menu.open {
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-menu-inner {
    padding: 1rem;
  }

  .mobile-nav-link,
  .mobile-sub-toggle {
    width: 100%;
    min-height: 44px;
  }

  .page-hero,
  .about-page-hero {
    padding: 70px 0 46px !important;
  }

  .about-page-hero::before {
    width: 220px !important;
    height: 220px !important;
    top: -80px !important;
    left: -90px !important;
  }

  .about-page-hero::after {
    font-size: 150px !important;
    top: 6px !important;
    left: 8px !important;
  }

  .page-hero h1,
  .about-page-hero h1 {
    font-size: clamp(2rem, 8vw, 2.7rem) !important;
    line-height: 1.25;
  }

  .page-hero p,
  .about-page-hero p {
    max-width: 100%;
    font-size: .95rem !important;
  }

  .hero {
    min-height: auto;
  }

  .hero .container {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }

  .hero-grid,
  .about-grid,
  .about-intro-grid,
  .vm-grid,
  .contact-grid,
  .footer-grid,
  .services-grid {
    grid-template-columns: 1fr !important;
  }

  .hero-grid,
  .about-grid,
  .about-intro-grid,
  .contact-grid {
    gap: 2rem !important;
  }

  .hero-visual {
    order: -1;
  }

  .hero-text {
    text-align: center;
  }

  .hero-text .hero-label,
  .section-label {
    justify-content: center;
  }

  .hero-text h1 {
    font-size: clamp(2.15rem, 12vw, 3.1rem) !important;
    line-height: 1.18;
  }

  .hero-text p,
  .about-text > p,
  .service-card p,
  .feature-card p,
  .quote blockquote,
  .cta-text p,
  .about-intro-text p,
  .vm-card p,
  .why-about-card p {
    max-width: 100%;
  }

  .hero-buttons,
  .cta-buttons {
    width: 100%;
    justify-content: center;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary,
  .cta-buttons .btn-white,
  .cta-buttons .btn-outline-white,
  .mobile-cta .btn-primary {
    width: 100%;
  }

  .door-wrapper {
    width: min(240px, 72vw) !important;
    height: min(320px, 92vw) !important;
    margin-inline: auto;
  }

  .hero-scroll {
    display: none !important;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: .75rem !important;
  }

  .hero-stat-val {
    font-size: clamp(1.4rem, 7vw, 1.9rem) !important;
  }

  .hero-stat-label {
    font-size: .72rem !important;
  }

  .about,
  .about-intro,
  .vision-mission,
  .about-why,
  .about-process,
  .rep-quote,
  .why,
  .services,
  .process,
  .quote,
  .contact-wrap,
  .doors-gallery,
  .gallery-section,
  .accessories-content,
  .acc-products-section,
  .acc-cta,
  .footer {
    padding-top: 56px !important;
    padding-bottom: 56px !important;
  }

  .about-intro-img {
    height: min(320px, 68vw) !important;
  }

  .about-img-block,
  .about-visual [style*="height:420px"] {
    height: min(320px, 72vw) !important;
  }

  .about-intro-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: .75rem !important;
  }

  .about-stat {
    padding: 16px 10px !important;
  }

  .about-stat-val {
    font-size: 1.55rem !important;
  }

  .why-grid,
  .why-cards-grid,
  .process-steps {
    grid-template-columns: 1fr !important;
  }

  .process-step::after,
  .process-timeline::before {
    display: none !important;
  }

  .feature-card,
  .service-card,
  .vm-card,
  .why-about-card,
  .contact-form-card,
  .contact-info-card,
  .hours-card {
    border-radius: 18px;
  }

  .feature-card,
  .service-card,
  .vm-card,
  .why-about-card,
  .contact-info-card {
    padding: 1.35rem !important;
  }

  .service-inner {
    padding-top: 1.25rem !important;
  }

  .service-num {
    font-size: 3.8rem !important;
  }

  .services-header,
  .gallery-header,
  .acc-section-header,
  .acc-section-head {
    flex-direction: column !important;
    align-items: stretch !important;
    text-align: right;
    gap: 1rem !important;
  }

  .services-header h2,
  .process-header h2,
  .gallery-header-left h2,
  .acc-section-left h2,
  .acc-section-head h2,
  .about-text h2,
  .about-intro-text h2,
  .vm-header h2,
  .cta-text h2 {
    font-size: clamp(1.75rem, 9vw, 2.35rem) !important;
    line-height: 1.32;
  }

  .doors-grid,
  .door-types-grid,
  .acc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
  }

  .door-card-img img {
    height: 100% !important;
    object-fit: contain !important;
  }

  .door-card-title {
    font-size: .9rem !important;
  }

  .door-type-card,
  .acc-card,
  .door-card {
    border-radius: 14px !important;
  }

  .acc-card-img {
    height: 180px !important;
  }

  .acc-card-body {
    padding: 14px !important;
  }

  .acc-card-body h3,
  .acc-card-cta {
    font-size: .86rem !important;
    line-height: 1.5;
  }

  .acc-section-head-left {
    align-items: flex-start !important;
  }

  .contact-form-body,
  .contact-form-header {
    padding: 1.35rem !important;
  }

  .contact-item,
  .footer-contact-item,
  .wa-cta,
  .hours-row {
    align-items: flex-start;
  }

  .contact-item-val,
  .footer-contact-val,
  .wa-sub,
  .hours-row {
    overflow-wrap: anywhere;
  }

  .wa-cta {
    padding: 1.25rem !important;
  }

  .wa-arrow {
    margin-right: auto;
    flex-shrink: 0;
  }

  .contact-map {
    height: 280px !important;
  }

  .map-pin-card {
    max-width: calc(100% - 32px);
  }

  .cta-section .container,
  .acc-cta-inner {
    flex-direction: column !important;
    align-items: stretch !important;
    text-align: center;
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }

  .footer-grid {
    gap: 2rem !important;
  }

  .footer-bottom {
    flex-direction: column;
    gap: .75rem;
    text-align: center;
    align-items: center;
  }

  .floating-buttons {
    left: 15% !important;
    right: auto !important;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px)) !important;
    transform: translateX(-50%);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 8px 10px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(229, 231, 235, .9);
    border-radius: 999px;
    box-shadow: 0 12px 40px rgba(14, 33, 64, .18);
    backdrop-filter: blur(12px);
  }

  .floating-btn,
  .floating-btn.phone {
    display: flex;
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
  }

  .floating-btn svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .container {
    padding-inline: 14px;
  }

  .hero .container {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  .hero-buttons,
  .cta-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary,
  .btn-white,
  .btn-outline-white {
    padding-inline: 18px;
    min-height: 46px;
  }

  .hero-stats,
  .about-intro-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }

  .about-stat-label,
  .hero-stat-label {
    font-size: .68rem !important;
  }

  .process-steps {
    gap: 1.35rem !important;
  }

  .doors-grid,
  .door-types-grid,
  .acc-grid {
    gap: 12px !important;
  }

  .acc-card-img {
    height: 160px !important;
  }

  .contact-form-body,
  .contact-form-header,
  .contact-info-card,
  .hours-card,
  .wa-cta {
    padding: 1.15rem !important;
  }

  .hours-row {
    flex-direction: column;
    gap: 4px;
  }

  .floating-buttons {
    bottom: calc(12px + env(safe-area-inset-bottom, 0px)) !important;
  }

  .floating-btn,
  .floating-btn.phone {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
  }
}

@media (max-width: 340px) {
  .doors-grid,
  .door-types-grid,
  .acc-grid {
    grid-template-columns: 1fr !important;
  }

  .hero-stats,
  .about-intro-stats {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 768px) {
  .reveal-left,
  .reveal-right {
    transform: translateY(22px) !important;
  }

  .reveal-left.revealed,
  .reveal-right.revealed {
    transform: translateY(0) !important;
  }

  .footer-bg-x {
    left: auto !important;
    right: -40px !important;
    transform: none !important;
    opacity: .45;
  }
}

/* ── Hero mobile fix ── */
@media (max-width: 480px) {
  .door-wrapper {
    height: 320px !important;
    width: 100% !important;
    max-width: 100vw;
    margin: 0 auto;
    background-size: cover;
    background-position: center;
  }
  .hero-visual {
    width: 100%;
    overflow: hidden;
  }
  .hero-grid {
    gap: 1.5rem;
  }
  .hero-text h1 {
    font-size: 1.6rem !important;
  }
  .hero .container {
    overflow-x: hidden;
  }
  .about-img-block {
    height: 280px !important;
  }
  .door-badge,
  .gdp-badge,
  [class*="badge"] {
    max-width: calc(100% - 20px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
@media (max-width: 360px) {
  .door-wrapper {
    height: 260px !important;
  }
}
