/* ============================================================
   SOLID CONTAINER HUB — Main Stylesheet
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --navy:        #0f3d2e;
  --navy-dark:   #092618;
  --navy-light:  #1a5e3a;
  --orange:      #c9a520;
  --orange-dark: #a8871a;
  --blue:        #1a6b4a;
  --blue-light:  #22875e;
  --white:       #ffffff;
  --gray-50:     #f8fafc;
  --gray-100:    #f1f5f9;
  --gray-200:    #e2e8f0;
  --gray-300:    #cbd5e1;
  --gray-500:    #64748b;
  --gray-700:    #334155;
  --gray-900:    #0f172a;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:   0 4px 16px rgba(0,0,0,.08);
  --shadow-lg:   0 10px 40px rgba(0,0,0,.12);
  --shadow-xl:   0 20px 60px rgba(0,0,0,.16);
  --radius:      10px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --transition:  all .25s ease;
  --font-main:   'Inter', system-ui, sans-serif;
  --font-display:'Barlow Condensed', 'Inter', sans-serif;
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body { margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; background: var(--navy-dark); }

body {
  font-family: var(--font-main);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; transition: var(--transition); }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.display-heading {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -.5px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 580px;
  line-height: 1.7;
}

/* ── Utilities ──────────────────────────────────────────────── */
.text-orange { color: var(--orange) !important; }
.text-navy   { color: var(--navy)   !important; }
.bg-navy     { background-color: var(--navy) !important; }
.bg-orange   { background-color: var(--orange) !important; }
.bg-gray     { background-color: var(--gray-50) !important; }

.container-xl { max-width: 1280px; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  font-weight: 600;
  border-radius: 8px;
  padding: .65rem 1.5rem;
  font-size: .92rem;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-orange {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-orange:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(249,115,22,.35);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(10,37,64,.3);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-outline-orange {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn-outline-orange:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-outline-nav {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--gray-200);
  font-size: .85rem;
  padding: .5rem 1rem;
}
.btn-outline-nav:hover { border-color: var(--navy); color: var(--navy); }

.btn-lg { padding: .9rem 2.25rem; font-size: 1rem; border-radius: 10px; }

/* ── Top Bar ────────────────────────────────────────────────── */
.top-bar {
  background: var(--navy-dark);
  padding: 8px 0;
  font-size: .8rem;
  color: rgba(255,255,255,.75);
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,.75);
}
.top-bar-item i { color: var(--orange); }

.top-bar-cta {
  background: var(--orange);
  color: white;
  padding: 4px 14px;
  border-radius: 4px;
  font-size: .78rem;
  font-weight: 600;
}
.top-bar-cta:hover { background: var(--orange-dark); color: white; }

.top-bar-social {
  color: rgba(255,255,255,.6);
  font-size: 1rem;
  transition: var(--transition);
}
.top-bar-social:hover { color: var(--orange); }

/* ── Navigation ─────────────────────────────────────────────── */
.main-navbar {
  background: var(--white);
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all .3s ease;
}

.main-navbar.scrolled {
  padding: 10px 0;
  box-shadow: var(--shadow-md);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-icon {
  width: 44px;
  height: 44px;
  background: var(--orange);
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.brand-name {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.brand-tagline {
  display: block;
  font-size: .68rem;
  color: var(--gray-500);
  font-weight: 500;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.navbar-nav .nav-link {
  font-size: .9rem;
  font-weight: 600;
  color: var(--gray-700);
  padding: .5rem .9rem !important;
  border-radius: 6px;
  position: relative;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--orange);
  background: rgba(249,115,22,.06);
}

.navbar-actions { display: flex; align-items: center; gap: 10px; }

/* Mega Dropdown */
.main-navbar .dropdown {
  position: static;
}

.main-navbar .dropdown-menu {
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  overflow: visible;
  min-width: 680px;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  margin-top: 0;
  padding-top: 10px;  /* gap is now inside the menu — no physical space between trigger and menu */
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
  display: block !important;
  pointer-events: none;
}

/* Bridge pseudo-element fills the gap so the mouse never leaves the hover zone */
.main-navbar .dropdown-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  background: transparent;
}

.main-navbar .dropdown:hover .dropdown-menu,
.main-navbar .dropdown.show .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mega-menu-inner {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  padding: 20px;
  background: var(--white);
}

.mega-menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: var(--transition);
}
.mega-menu-item:hover { background: var(--gray-50); color: var(--orange); }
.mega-menu-item i { font-size: 1.1rem; color: var(--orange); }

.mega-menu-sidebar {
  background: var(--gray-50);
  padding: 28px 24px;
  border-left: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mega-menu-sidebar h6 { font-size: 1rem; color: var(--navy); margin-bottom: 8px; }
.mega-menu-sidebar p  { font-size: .85rem; color: var(--gray-500); margin-bottom: 16px; }

/* ── Hero Keyframes ─────────────────────────────────────────── */
@keyframes heroFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33%       { transform: translateY(-18px) rotate(3deg); }
  66%       { transform: translateY(-8px) rotate(-2deg); }
}
@keyframes heroFloatAlt {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50%       { transform: translateY(-22px) rotate(-4deg); }
}
@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ── Hero Section ───────────────────────────────────────────── */
.hero-section {
  min-height: 92vh;
  background:
    linear-gradient(160deg, rgba(9,38,24,.92) 0%, rgba(15,61,46,.85) 50%, rgba(9,38,24,.90) 100%),
    url('https://images.unsplash.com/photo-1494412651409-8963ce7935a7?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
}

/* subtle grid overlay */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  pointer-events: none;
}

/* gold accent glow bottom-right */
.hero-section::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,165,32,.12) 0%, transparent 70%);
  bottom: -200px;
  right: -100px;
  pointer-events: none;
}

/* Floating background container icons */
.hero-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hp {
  position: absolute;
  color: rgba(255,255,255,.04);
  font-size: 5rem;
  animation: heroFloat 8s ease-in-out infinite;
}
.hp-1 { top: 10%; left:  5%; animation-duration: 9s;  animation-delay: 0s;   font-size: 4rem; }
.hp-2 { top: 55%; left: 80%; animation-duration: 11s; animation-delay: 1.5s; font-size: 6rem; animation-name: heroFloatAlt; }
.hp-3 { top: 15%; left: 70%; animation-duration: 8s;  animation-delay: 3s;   font-size: 3.5rem; }
.hp-4 { top: 70%; left: 15%; animation-duration: 12s; animation-delay: 0.8s; font-size: 5rem; animation-name: heroFloatAlt; }
.hp-5 { top: 80%; left: 55%; animation-duration: 10s; animation-delay: 2s;   font-size: 3rem; }

/* Centered hero content */
.hero-center {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,165,32,.15);
  border: 1px solid rgba(201,165,32,.35);
  color: #e8cb6a;
  padding: 7px 18px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-badge i { color: var(--orange); }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.02;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.hero-title .highlight {
  color: var(--orange);
  position: relative;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,.72);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 56px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.65);
  font-size: .85rem;
  font-weight: 500;
}
.hero-trust-item i { color: var(--orange); font-size: 1rem; }

/* Floating stat cards — positioned absolutely inside .container-xl */
.hero-floating-card {
  position: absolute;
  background: rgba(255,255,255,.97);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: 0 8px 40px rgba(0,0,0,.25);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
  animation: cardFloat 4s ease-in-out infinite;
  white-space: nowrap;
}
.hero-floating-card.card-1 { bottom: 60px; left:  0;   animation-delay: 0s; }
.hero-floating-card.card-2 { top:    80px; right: 0;   animation-delay: 1.3s; }
.hero-floating-card.card-3 { bottom: 60px; right: 0;   animation-delay: 2.6s; }

.hfc-icon {
  width: 42px;
  height: 42px;
  background: var(--orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.hfc-text strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
}
.hfc-text span { font-size: .72rem; color: var(--gray-500); }

/* ── Features Strip ─────────────────────────────────────────── */
.features-strip {
  background: var(--orange);
  padding: 0;
  overflow: hidden;
}

.features-strip-inner {
  display: flex;
}

.feature-strip-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 28px;
  border-right: 1px solid rgba(255,255,255,.2);
  transition: var(--transition);
}
.feature-strip-item:last-child { border-right: none; }
.feature-strip-item:hover { background: rgba(255,255,255,.1); }

.feature-strip-item i {
  font-size: 1.8rem;
  color: white;
  flex-shrink: 0;
}
.feature-strip-item strong { display: block; font-size: .95rem; color: white; font-weight: 700; }
.feature-strip-item span  { font-size: .78rem; color: rgba(255,255,255,.8); }

/* ── Section Spacing ────────────────────────────────────────── */
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

/* ── Category Cards ─────────────────────────────────────────── */
.category-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.category-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: var(--transition);
}
.category-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--orange); }
.category-card:hover::after { transform: scaleX(1); }

.cat-icon {
  width: 72px;
  height: 72px;
  background: var(--gray-50);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--navy);
  margin: 0 auto 18px;
  transition: var(--transition);
}
.category-card:hover .cat-icon { background: var(--orange); color: white; }

.cat-name { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.cat-count { font-size: .8rem; color: var(--gray-500); }

/* ── Product Cards ──────────────────────────────────────────── */
.product-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-300);
}

.product-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--gray-100);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.product-card:hover .product-image img { transform: scale(1.04); }

.product-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: var(--gray-300);
}
.product-image-placeholder i { font-size: 3rem; }
.product-image-placeholder span { font-size: .8rem; }

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.badge-new       { background: #10b981; color: white; }
.badge-used      { background: var(--blue); color: white; }
.badge-refurbished { background: #8b5cf6; color: white; }
.badge-sale      { background: var(--orange); color: white; }
.badge-featured  { background: var(--navy); color: white; }

.product-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-category {
  font-size: .75rem;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 6px;
}

.product-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.spec-tag {
  background: var(--gray-100);
  color: var(--gray-700);
  padding: 3px 8px;
  border-radius: 4px;
  font-size: .72rem;
  font-weight: 500;
}

.product-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--gray-100);
}

.product-price { font-size: 1.25rem; font-weight: 800; color: var(--navy); }
.product-price .original { font-size: .85rem; font-weight: 400; color: var(--gray-500); text-decoration: line-through; margin-left: 6px; }
.product-price .sale-price { color: var(--orange); }

/* ── Why Choose Us ──────────────────────────────────────────── */
.why-us-section { background: var(--navy); position: relative; overflow: hidden; }
.why-us-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,.02);
}

.why-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  margin-bottom: 16px;
}
.why-item:hover { background: rgba(255,255,255,.05); }

.why-icon {
  width: 56px;
  height: 56px;
  background: rgba(249,115,22,.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--orange);
  flex-shrink: 0;
}

.why-content h5 { color: white; font-size: 1rem; margin-bottom: 6px; }
.why-content p  { color: rgba(255,255,255,.65); font-size: .88rem; margin: 0; line-height: 1.6; }

/* ── Stats Counter ──────────────────────────────────────────── */
.stats-section { background: var(--gray-50); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); }

.stat-card {
  text-align: center;
  padding: 40px 20px;
  position: relative;
}

.stat-card::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  height: 60%;
  width: 1px;
  background: var(--gray-200);
}
.stat-card:last-child::after { display: none; }

.stat-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number .stat-suffix { color: var(--orange); }
.stat-label { font-size: .88rem; color: var(--gray-500); font-weight: 500; }

/* ── Testimonials ───────────────────────────────────────────── */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  height: 100%;
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); border-color: var(--gray-300); }

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 5rem;
  color: var(--gray-100);
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial-stars { color: #f59e0b; font-size: .9rem; margin-bottom: 16px; }

.testimonial-text {
  font-size: .92rem;
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.testimonial-author { display: flex; align-items: center; gap: 14px; }

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.author-name { font-weight: 700; color: var(--navy); font-size: .9rem; }
.author-title { font-size: .78rem; color: var(--gray-500); }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--orange); box-shadow: 0 2px 12px rgba(249,115,22,.1); }

.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  font-size: .95rem;
  gap: 16px;
  user-select: none;
}
.faq-question i { color: var(--orange); transition: transform .3s ease; flex-shrink: 0; }
.faq-item.open .faq-question i { transform: rotate(45deg); }

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 20px; }
.faq-answer p { font-size: .9rem; color: var(--gray-500); margin: 0; line-height: 1.7; }

/* ── CTA Section ────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 400px;
  height: 400px;
  background: rgba(249,115,22,.08);
  border-radius: 50%;
}

/* ── Newsletter ─────────────────────────────────────────────── */
.newsletter-section {
  background: var(--navy);
  padding: 50px 0;
  border-top: 3px solid var(--orange);
}
.newsletter-title { color: white; font-size: 1.4rem; font-weight: 700; margin-bottom: 6px; }
.newsletter-sub   { color: rgba(255,255,255,.65); font-size: .88rem; margin: 0; }

.newsletter-form .form-control {
  border: none;
  border-radius: 8px 0 0 8px;
  padding: 12px 18px;
  font-size: .9rem;
}
.newsletter-form .btn { border-radius: 0 8px 8px 0; padding: 12px 24px; }

/* ── Footer ─────────────────────────────────────────────────── */
.main-footer {
  background: var(--gray-900);
  padding: 80px 0 0;
}

.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-logo-icon { font-size: 1.8rem; color: var(--orange); }
.footer-logo-text { font-size: 1.3rem; font-weight: 800; color: white; }

.footer-desc { color: rgba(255,255,255,.55); font-size: .88rem; line-height: 1.75; margin-bottom: 20px; }

.footer-contact-list { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,.6);
  font-size: .85rem;
  transition: var(--transition);
}
.footer-contact-item i { color: var(--orange); margin-top: 2px; flex-shrink: 0; }
.footer-contact-item:hover { color: var(--orange); }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.65);
  font-size: .95rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--orange); color: white; }

.footer-heading {
  color: white;
  font-size: .88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 20px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,.55);
  font-size: .86rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--orange); padding-left: 4px; }

.footer-features { display: flex; flex-direction: column; gap: 16px; }
.footer-feature-item { display: flex; align-items: flex-start; gap: 14px; }
.footer-feature-item i { color: var(--orange); font-size: 1.1rem; margin-top: 2px; }
.footer-feature-item strong { display: block; color: white; font-size: .88rem; margin-bottom: 2px; }
.footer-feature-item span  { color: rgba(255,255,255,.5); font-size: .8rem; }

.footer-bottom {
  margin-top: 60px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-bottom p { color: rgba(255,255,255,.45); font-size: .82rem; margin: 0; }
.footer-bottom a { color: rgba(255,255,255,.45); font-size: .82rem; transition: var(--transition); }
.footer-bottom a:hover { color: var(--orange); }

/* ── Floating CTA ───────────────────────────────────────────── */
.floating-cta {
  position: fixed;
  right: 24px;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 900;
  opacity: 0;
  transform: translateX(20px);
  transition: all .4s ease;
}
.floating-cta.visible { opacity: 1; transform: translateX(0); }

.floating-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  color: white;
}
.floating-btn:hover { transform: scale(1.1); color: white; }
.floating-btn-call  { background: var(--navy); }
.floating-btn-quote { background: var(--orange); }

/* ── Back to Top ────────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(20px);
  transition: all .3s ease;
  z-index: 900;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover   { background: var(--orange); }

/* ── Page Hero (inner pages) ────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.04)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}
.page-hero h1 { color: white; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 12px; position: relative; }
.page-hero p  { color: rgba(255,255,255,.7); font-size: 1rem; max-width: 600px; position: relative; margin: 0; }

.breadcrumb-wrap { margin-bottom: 16px; position: relative; }
.breadcrumb-item, .breadcrumb-item a { color: rgba(255,255,255,.55); font-size: .82rem; }
.breadcrumb-item.active { color: var(--orange); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.3); }

/* ── Product Filter Bar ─────────────────────────────────────── */
.filter-bar {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
}

.filter-bar .form-select,
.filter-bar .form-control {
  border-color: var(--gray-200);
  border-radius: 8px;
  font-size: .88rem;
  color: var(--gray-700);
}
.filter-bar .form-select:focus,
.filter-bar .form-control:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,.12);
}

/* ── Forms ──────────────────────────────────────────────────── */
.form-control, .form-select {
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  padding: .7rem 1rem;
  font-size: .9rem;
  color: var(--gray-700);
  transition: var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,.1);
  outline: none;
}
.form-label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
textarea.form-control { min-height: 130px; resize: vertical; }

.form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

/* ── Alert / Flash ──────────────────────────────────────────── */
.alert { border-radius: 10px; border: none; font-size: .9rem; }
.alert-success { background: #ecfdf5; color: #065f46; }
.alert-danger   { background: #fef2f2; color: #991b1b; }
.alert-info     { background: #eff6ff; color: #1e40af; }

/* ── Blog Cards ─────────────────────────────────────────────── */
.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.blog-card-image {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--gray-100);
}
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.blog-card:hover .blog-card-image img { transform: scale(1.04); }

.blog-card-image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-300);
  font-size: 3rem;
}

.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }

.blog-category-tag {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.blog-card-title {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 10px;
  transition: var(--transition);
}
.blog-card:hover .blog-card-title { color: var(--orange); }

.blog-card-excerpt { font-size: .86rem; color: var(--gray-500); line-height: 1.7; flex: 1; }
.blog-card-meta { display: flex; align-items: center; gap: 14px; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--gray-100); font-size: .78rem; color: var(--gray-500); }
.blog-card-meta i { color: var(--orange); }

/* ── Service Cards ──────────────────────────────────────────── */
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--orange);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .3s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleY(1); }

.service-icon {
  width: 64px;
  height: 64px;
  background: rgba(249,115,22,.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--orange);
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--orange); color: white; }
.service-card h5 { font-size: 1.1rem; color: var(--navy); margin-bottom: 10px; }
.service-card p  { font-size: .88rem; color: var(--gray-500); line-height: 1.7; }

/* ── Location Cards ─────────────────────────────────────────── */
.location-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.location-card:hover { box-shadow: var(--shadow-md); border-color: var(--orange); }
.location-card h5 { color: var(--navy); font-size: 1rem; margin-bottom: 14px; }
.location-info { display: flex; align-items: flex-start; gap: 10px; color: var(--gray-500); font-size: .86rem; margin-bottom: 10px; }
.location-info i { color: var(--orange); margin-top: 2px; flex-shrink: 0; }
.location-badge { background: var(--gray-100); color: var(--navy); padding: 4px 10px; border-radius: 4px; font-size: .75rem; font-weight: 600; }

/* ── Gallery ─────────────────────────────────────────────────── */
.gallery-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.gallery-filter-btn {
  padding: 8px 18px;
  border: 1.5px solid var(--gray-200);
  background: white;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--gray-700);
  cursor: pointer;
  transition: var(--transition);
}
.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
}

.gallery-grid { columns: 3; gap: 14px; }
.gallery-item {
  break-inside: avoid;
  margin-bottom: 14px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img { width: 100%; display: block; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,37,64,.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s ease;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay i { color: white; font-size: 2rem; }

/* ── Lightbox ────────────────────────────────────────────────── */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
}
.lightbox-overlay.active { opacity: 1; visibility: visible; }
.lightbox-img { max-width: 90vw; max-height: 90vh; border-radius: 8px; box-shadow: 0 0 60px rgba(0,0,0,.5); }
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  transition: var(--transition);
}
.lightbox-close:hover { background: var(--orange); }

/* ── Financing Calculator ────────────────────────────────────── */
.calculator-card {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 40px;
  color: white;
}
.calculator-result {
  background: rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 24px;
  text-align: center;
}
.monthly-payment { font-size: 3rem; font-weight: 800; color: var(--orange); line-height: 1; }

/* ── Timeline ────────────────────────────────────────────────── */
.timeline { position: relative; padding-left: 32px; }
.timeline::before { content: ''; position: absolute; left: 12px; top: 0; bottom: 0; width: 2px; background: var(--gray-200); }
.timeline-item { position: relative; margin-bottom: 32px; }
.timeline-dot {
  position: absolute;
  left: -32px;
  top: 4px;
  width: 24px;
  height: 24px;
  background: var(--orange);
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 0 0 2px var(--orange);
}
.timeline-year { font-size: .78rem; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; }
.timeline-title { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.timeline-text { font-size: .85rem; color: var(--gray-500); margin: 0; }

/* ── Animations ─────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.in-view { opacity: 1; transform: translateY(0); }

.fade-in {
  opacity: 0;
  transition: opacity .6s ease;
}
.fade-in.in-view { opacity: 1; }

.slide-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity .6s ease, transform .6s ease;
}
.slide-left.in-view { opacity: 1; transform: translateX(0); }

.slide-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.slide-right.in-view { opacity: 1; transform: translateX(0); }

.delay-1 { transition-delay: .1s !important; }
.delay-2 { transition-delay: .2s !important; }
.delay-3 { transition-delay: .3s !important; }
.delay-4 { transition-delay: .4s !important; }
.delay-5 { transition-delay: .5s !important; }
.delay-6 { transition-delay: .6s !important; }

/* ── Pagination ─────────────────────────────────────────────── */
.pagination .page-link {
  color: var(--navy);
  border-color: var(--gray-200);
  border-radius: 8px !important;
  margin: 0 3px;
  font-weight: 600;
  font-size: .85rem;
  padding: 8px 14px;
}
.pagination .page-link:hover { background: var(--orange); color: white; border-color: var(--orange); }
.pagination .page-item.active .page-link { background: var(--orange); border-color: var(--orange); color: white; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .main-navbar { padding: 12px 0; }
  .features-strip-inner { flex-direction: column; }
  .feature-strip-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.2); }
  .feature-strip-item:last-child { border-bottom: none; }
  .gallery-grid { columns: 2; }
  .dropdown-menu { min-width: 100% !important; transform: none !important; left: 0 !important; }
}

@media (max-width: 767.98px) {
  .section-pad { padding: 60px 0; }
  .hero-section { min-height: auto; padding: 80px 0 60px; }
  .hero-title { font-size: 2.4rem; }
  .stat-card::after { display: none; }
  .gallery-grid { columns: 1; }
  .form-card { padding: 24px; }
  .floating-cta { right: 14px; bottom: 70px; }
  .hero-floating-card { display: none; }
}

@media (max-width: 575.98px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }
}
/* ============================================================
   SOLID CONTAINER HUB — Main Stylesheet
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --navy:        #0f3d2e;
  --navy-dark:   #092618;
  --navy-light:  #1a5e3a;
  --orange:      #c9a520;
  --orange-dark: #a8871a;
  --blue:        #1a6b4a;
  --blue-light:  #22875e;
  --white:       #ffffff;
  --gray-50:     #f8fafc;
  --gray-100:    #f1f5f9;
  --gray-200:    #e2e8f0;
  --gray-300:    #cbd5e1;
  --gray-500:    #64748b;
  --gray-700:    #334155;
  --gray-900:    #0f172a;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:   0 4px 16px rgba(0,0,0,.08);
  --shadow-lg:   0 10px 40px rgba(0,0,0,.12);
  --shadow-xl:   0 20px 60px rgba(0,0,0,.16);
  --radius:      10px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --transition:  all .25s ease;
  --font-main:   'Inter', system-ui, sans-serif;
  --font-display:'Barlow Condensed', 'Inter', sans-serif;
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body { margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; background: var(--navy-dark); }

body {
  font-family: var(--font-main);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; transition: var(--transition); }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.display-heading {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -.5px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 580px;
  line-height: 1.7;
}

/* ── Utilities ──────────────────────────────────────────────── */
.text-orange { color: var(--orange) !important; }
.text-navy   { color: var(--navy)   !important; }
.bg-navy     { background-color: var(--navy) !important; }
.bg-orange   { background-color: var(--orange) !important; }
.bg-gray     { background-color: var(--gray-50) !important; }

.container-xl { max-width: 1280px; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  font-weight: 600;
  border-radius: 8px;
  padding: .65rem 1.5rem;
  font-size: .92rem;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-orange {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-orange:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(249,115,22,.35);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(10,37,64,.3);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-outline-orange {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn-outline-orange:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-outline-nav {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--gray-200);
  font-size: .85rem;
  padding: .5rem 1rem;
}
.btn-outline-nav:hover { border-color: var(--navy); color: var(--navy); }

.btn-lg { padding: .9rem 2.25rem; font-size: 1rem; border-radius: 10px; }

/* ── Top Bar ────────────────────────────────────────────────── */
.top-bar {
  background: var(--navy-dark);
  padding: 8px 0;
  font-size: .8rem;
  color: rgba(255,255,255,.75);
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,.75);
}
.top-bar-item i { color: var(--orange); }

.top-bar-cta {
  background: var(--orange);
  color: white;
  padding: 4px 14px;
  border-radius: 4px;
  font-size: .78rem;
  font-weight: 600;
}
.top-bar-cta:hover { background: var(--orange-dark); color: white; }

.top-bar-social {
  color: rgba(255,255,255,.6);
  font-size: 1rem;
  transition: var(--transition);
}
.top-bar-social:hover { color: var(--orange); }

/* ── Navigation ─────────────────────────────────────────────── */
.main-navbar {
  background: var(--white);
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all .3s ease;
}

.main-navbar.scrolled {
  padding: 10px 0;
  box-shadow: var(--shadow-md);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-icon {
  width: 44px;
  height: 44px;
  background: var(--orange);
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.brand-name {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.brand-tagline {
  display: block;
  font-size: .68rem;
  color: var(--gray-500);
  font-weight: 500;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.navbar-nav .nav-link {
  font-size: .9rem;
  font-weight: 600;
  color: var(--gray-700);
  padding: .5rem .9rem !important;
  border-radius: 6px;
  position: relative;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--orange);
  background: rgba(249,115,22,.06);
}

.navbar-actions { display: flex; align-items: center; gap: 10px; }

/* Mega Dropdown */
.main-navbar .dropdown {
  position: static;
}

.main-navbar .dropdown-menu {
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  overflow: visible;
  min-width: 680px;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  margin-top: 0;
  padding-top: 10px;  /* gap is now inside the menu — no physical space between trigger and menu */
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
  display: block !important;
  pointer-events: none;
}

/* Bridge pseudo-element fills the gap so the mouse never leaves the hover zone */
.main-navbar .dropdown-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  background: transparent;
}

.main-navbar .dropdown:hover .dropdown-menu,
.main-navbar .dropdown.show .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mega-menu-inner {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  padding: 20px;
  background: var(--white);
}

.mega-menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: var(--transition);
}
.mega-menu-item:hover { background: var(--gray-50); color: var(--orange); }
.mega-menu-item i { font-size: 1.1rem; color: var(--orange); }

.mega-menu-sidebar {
  background: var(--gray-50);
  padding: 28px 24px;
  border-left: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mega-menu-sidebar h6 { font-size: 1rem; color: var(--navy); margin-bottom: 8px; }
.mega-menu-sidebar p  { font-size: .85rem; color: var(--gray-500); margin-bottom: 16px; }

/* ── Hero Keyframes ─────────────────────────────────────────── */
@keyframes heroFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33%       { transform: translateY(-18px) rotate(3deg); }
  66%       { transform: translateY(-8px) rotate(-2deg); }
}
@keyframes heroFloatAlt {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50%       { transform: translateY(-22px) rotate(-4deg); }
}
@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ── Hero Section ───────────────────────────────────────────── */
.hero-section {
  min-height: 92vh;
  background:
    linear-gradient(160deg, rgba(9,38,24,.92) 0%, rgba(15,61,46,.85) 50%, rgba(9,38,24,.90) 100%),
    url('https://images.unsplash.com/photo-1494412651409-8963ce7935a7?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
}

/* subtle grid overlay */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  pointer-events: none;
}

/* gold accent glow bottom-right */
.hero-section::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,165,32,.12) 0%, transparent 70%);
  bottom: -200px;
  right: -100px;
  pointer-events: none;
}

/* Floating background container icons */
.hero-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hp {
  position: absolute;
  color: rgba(255,255,255,.04);
  font-size: 5rem;
  animation: heroFloat 8s ease-in-out infinite;
}
.hp-1 { top: 10%; left:  5%; animation-duration: 9s;  animation-delay: 0s;   font-size: 4rem; }
.hp-2 { top: 55%; left: 80%; animation-duration: 11s; animation-delay: 1.5s; font-size: 6rem; animation-name: heroFloatAlt; }
.hp-3 { top: 15%; left: 70%; animation-duration: 8s;  animation-delay: 3s;   font-size: 3.5rem; }
.hp-4 { top: 70%; left: 15%; animation-duration: 12s; animation-delay: 0.8s; font-size: 5rem; animation-name: heroFloatAlt; }
.hp-5 { top: 80%; left: 55%; animation-duration: 10s; animation-delay: 2s;   font-size: 3rem; }

/* Centered hero content */
.hero-center {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,165,32,.15);
  border: 1px solid rgba(201,165,32,.35);
  color: #e8cb6a;
  padding: 7px 18px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-badge i { color: var(--orange); }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.02;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.hero-title .highlight {
  color: var(--orange);
  position: relative;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,.72);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 56px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.65);
  font-size: .85rem;
  font-weight: 500;
}
.hero-trust-item i { color: var(--orange); font-size: 1rem; }

/* Floating stat cards — positioned absolutely inside .container-xl */
.hero-floating-card {
  position: absolute;
  background: rgba(255,255,255,.97);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: 0 8px 40px rgba(0,0,0,.25);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
  animation: cardFloat 4s ease-in-out infinite;
  white-space: nowrap;
}
.hero-floating-card.card-1 { bottom: 60px; left:  0;   animation-delay: 0s; }
.hero-floating-card.card-2 { top:    80px; right: 0;   animation-delay: 1.3s; }
.hero-floating-card.card-3 { bottom: 60px; right: 0;   animation-delay: 2.6s; }

.hfc-icon {
  width: 42px;
  height: 42px;
  background: var(--orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.hfc-text strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
}
.hfc-text span { font-size: .72rem; color: var(--gray-500); }

/* ── Features Strip ─────────────────────────────────────────── */
.features-strip {
  background: var(--orange);
  padding: 0;
  overflow: hidden;
}

.features-strip-inner {
  display: flex;
}

.feature-strip-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 28px;
  border-right: 1px solid rgba(255,255,255,.2);
  transition: var(--transition);
}
.feature-strip-item:last-child { border-right: none; }
.feature-strip-item:hover { background: rgba(255,255,255,.1); }

.feature-strip-item i {
  font-size: 1.8rem;
  color: white;
  flex-shrink: 0;
}
.feature-strip-item strong { display: block; font-size: .95rem; color: white; font-weight: 700; }
.feature-strip-item span  { font-size: .78rem; color: rgba(255,255,255,.8); }

/* ── Section Spacing ────────────────────────────────────────── */
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

/* ── Category Cards ─────────────────────────────────────────── */
.category-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.category-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: var(--transition);
}
.category-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--orange); }
.category-card:hover::after { transform: scaleX(1); }

.cat-icon {
  width: 72px;
  height: 72px;
  background: var(--gray-50);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--navy);
  margin: 0 auto 18px;
  transition: var(--transition);
}
.category-card:hover .cat-icon { background: var(--orange); color: white; }

.cat-name { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.cat-count { font-size: .8rem; color: var(--gray-500); }

/* ── Product Cards ──────────────────────────────────────────── */
.product-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-300);
}

.product-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--gray-100);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.product-card:hover .product-image img { transform: scale(1.04); }

.product-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: var(--gray-300);
}
.product-image-placeholder i { font-size: 3rem; }
.product-image-placeholder span { font-size: .8rem; }

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.badge-new       { background: #10b981; color: white; }
.badge-used      { background: var(--blue); color: white; }
.badge-refurbished { background: #8b5cf6; color: white; }
.badge-sale      { background: var(--orange); color: white; }
.badge-featured  { background: var(--navy); color: white; }

.product-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-category {
  font-size: .75rem;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 6px;
}

.product-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.spec-tag {
  background: var(--gray-100);
  color: var(--gray-700);
  padding: 3px 8px;
  border-radius: 4px;
  font-size: .72rem;
  font-weight: 500;
}

.product-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--gray-100);
}

.product-price { font-size: 1.25rem; font-weight: 800; color: var(--navy); }
.product-price .original { font-size: .85rem; font-weight: 400; color: var(--gray-500); text-decoration: line-through; margin-left: 6px; }
.product-price .sale-price { color: var(--orange); }

/* ── Why Choose Us ──────────────────────────────────────────── */
.why-us-section { background: var(--navy); position: relative; overflow: hidden; }
.why-us-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,.02);
}

.why-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  margin-bottom: 16px;
}
.why-item:hover { background: rgba(255,255,255,.05); }

.why-icon {
  width: 56px;
  height: 56px;
  background: rgba(249,115,22,.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--orange);
  flex-shrink: 0;
}

.why-content h5 { color: white; font-size: 1rem; margin-bottom: 6px; }
.why-content p  { color: rgba(255,255,255,.65); font-size: .88rem; margin: 0; line-height: 1.6; }

/* ── Stats Counter ──────────────────────────────────────────── */
.stats-section { background: var(--gray-50); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); }

.stat-card {
  text-align: center;
  padding: 40px 20px;
  position: relative;
}

.stat-card::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  height: 60%;
  width: 1px;
  background: var(--gray-200);
}
.stat-card:last-child::after { display: none; }

.stat-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number .stat-suffix { color: var(--orange); }
.stat-label { font-size: .88rem; color: var(--gray-500); font-weight: 500; }

/* ── Testimonials ───────────────────────────────────────────── */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  height: 100%;
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); border-color: var(--gray-300); }

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 5rem;
  color: var(--gray-100);
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial-stars { color: #f59e0b; font-size: .9rem; margin-bottom: 16px; }

.testimonial-text {
  font-size: .92rem;
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.testimonial-author { display: flex; align-items: center; gap: 14px; }

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.author-name { font-weight: 700; color: var(--navy); font-size: .9rem; }
.author-title { font-size: .78rem; color: var(--gray-500); }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--orange); box-shadow: 0 2px 12px rgba(249,115,22,.1); }

.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  font-size: .95rem;
  gap: 16px;
  user-select: none;
}
.faq-question i { color: var(--orange); transition: transform .3s ease; flex-shrink: 0; }
.faq-item.open .faq-question i { transform: rotate(45deg); }

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 20px; }
.faq-answer p { font-size: .9rem; color: var(--gray-500); margin: 0; line-height: 1.7; }

/* ── CTA Section ────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 400px;
  height: 400px;
  background: rgba(249,115,22,.08);
  border-radius: 50%;
}

/* ── Newsletter ─────────────────────────────────────────────── */
.newsletter-section {
  background: var(--navy);
  padding: 50px 0;
  border-top: 3px solid var(--orange);
}
.newsletter-title { color: white; font-size: 1.4rem; font-weight: 700; margin-bottom: 6px; }
.newsletter-sub   { color: rgba(255,255,255,.65); font-size: .88rem; margin: 0; }

.newsletter-form .form-control {
  border: none;
  border-radius: 8px 0 0 8px;
  padding: 12px 18px;
  font-size: .9rem;
}
.newsletter-form .btn { border-radius: 0 8px 8px 0; padding: 12px 24px; }

/* ── Footer ─────────────────────────────────────────────────── */
.main-footer {
  background: var(--gray-900);
  padding: 80px 0 0;
}

.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-logo-icon { font-size: 1.8rem; color: var(--orange); }
.footer-logo-text { font-size: 1.3rem; font-weight: 800; color: white; }

.footer-desc { color: rgba(255,255,255,.55); font-size: .88rem; line-height: 1.75; margin-bottom: 20px; }

.footer-contact-list { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,.6);
  font-size: .85rem;
  transition: var(--transition);
}
.footer-contact-item i { color: var(--orange); margin-top: 2px; flex-shrink: 0; }
.footer-contact-item:hover { color: var(--orange); }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.65);
  font-size: .95rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--orange); color: white; }

.footer-heading {
  color: white;
  font-size: .88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 20px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,.55);
  font-size: .86rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--orange); padding-left: 4px; }

.footer-features { display: flex; flex-direction: column; gap: 16px; }
.footer-feature-item { display: flex; align-items: flex-start; gap: 14px; }
.footer-feature-item i { color: var(--orange); font-size: 1.1rem; margin-top: 2px; }
.footer-feature-item strong { display: block; color: white; font-size: .88rem; margin-bottom: 2px; }
.footer-feature-item span  { color: rgba(255,255,255,.5); font-size: .8rem; }

.footer-bottom {
  margin-top: 60px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-bottom p { color: rgba(255,255,255,.45); font-size: .82rem; margin: 0; }
.footer-bottom a { color: rgba(255,255,255,.45); font-size: .82rem; transition: var(--transition); }
.footer-bottom a:hover { color: var(--orange); }

/* ── Floating CTA ───────────────────────────────────────────── */
.floating-cta {
  position: fixed;
  right: 24px;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 900;
  opacity: 0;
  transform: translateX(20px);
  transition: all .4s ease;
}
.floating-cta.visible { opacity: 1; transform: translateX(0); }

.floating-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  color: white;
}
.floating-btn:hover { transform: scale(1.1); color: white; }
.floating-btn-call  { background: var(--navy); }
.floating-btn-quote { background: var(--orange); }

/* ── Back to Top ────────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(20px);
  transition: all .3s ease;
  z-index: 900;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover   { background: var(--orange); }

/* ── Page Hero (inner pages) ────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.04)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}
.page-hero h1 { color: white; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 12px; position: relative; }
.page-hero p  { color: rgba(255,255,255,.7); font-size: 1rem; max-width: 600px; position: relative; margin: 0; }

.breadcrumb-wrap { margin-bottom: 16px; position: relative; }
.breadcrumb-item, .breadcrumb-item a { color: rgba(255,255,255,.55); font-size: .82rem; }
.breadcrumb-item.active { color: var(--orange); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.3); }

/* ── Product Filter Bar ─────────────────────────────────────── */
.filter-bar {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
}

.filter-bar .form-select,
.filter-bar .form-control {
  border-color: var(--gray-200);
  border-radius: 8px;
  font-size: .88rem;
  color: var(--gray-700);
}
.filter-bar .form-select:focus,
.filter-bar .form-control:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,.12);
}

/* ── Forms ──────────────────────────────────────────────────── */
.form-control, .form-select {
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  padding: .7rem 1rem;
  font-size: .9rem;
  color: var(--gray-700);
  transition: var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,.1);
  outline: none;
}
.form-label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
textarea.form-control { min-height: 130px; resize: vertical; }

.form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

/* ── Alert / Flash ──────────────────────────────────────────── */
.alert { border-radius: 10px; border: none; font-size: .9rem; }
.alert-success { background: #ecfdf5; color: #065f46; }
.alert-danger   { background: #fef2f2; color: #991b1b; }
.alert-info     { background: #eff6ff; color: #1e40af; }

/* ── Blog Cards ─────────────────────────────────────────────── */
.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.blog-card-image {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--gray-100);
}
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.blog-card:hover .blog-card-image img { transform: scale(1.04); }

.blog-card-image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-300);
  font-size: 3rem;
}

.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }

.blog-category-tag {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.blog-card-title {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 10px;
  transition: var(--transition);
}
.blog-card:hover .blog-card-title { color: var(--orange); }

.blog-card-excerpt { font-size: .86rem; color: var(--gray-500); line-height: 1.7; flex: 1; }
.blog-card-meta { display: flex; align-items: center; gap: 14px; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--gray-100); font-size: .78rem; color: var(--gray-500); }
.blog-card-meta i { color: var(--orange); }

/* ── Service Cards ──────────────────────────────────────────── */
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--orange);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .3s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleY(1); }

.service-icon {
  width: 64px;
  height: 64px;
  background: rgba(249,115,22,.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--orange);
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--orange); color: white; }
.service-card h5 { font-size: 1.1rem; color: var(--navy); margin-bottom: 10px; }
.service-card p  { font-size: .88rem; color: var(--gray-500); line-height: 1.7; }

/* ── Location Cards ─────────────────────────────────────────── */
.location-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.location-card:hover { box-shadow: var(--shadow-md); border-color: var(--orange); }
.location-card h5 { color: var(--navy); font-size: 1rem; margin-bottom: 14px; }
.location-info { display: flex; align-items: flex-start; gap: 10px; color: var(--gray-500); font-size: .86rem; margin-bottom: 10px; }
.location-info i { color: var(--orange); margin-top: 2px; flex-shrink: 0; }
.location-badge { background: var(--gray-100); color: var(--navy); padding: 4px 10px; border-radius: 4px; font-size: .75rem; font-weight: 600; }

/* ── Gallery ─────────────────────────────────────────────────── */
.gallery-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.gallery-filter-btn {
  padding: 8px 18px;
  border: 1.5px solid var(--gray-200);
  background: white;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--gray-700);
  cursor: pointer;
  transition: var(--transition);
}
.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
}

.gallery-grid { columns: 3; gap: 14px; }
.gallery-item {
  break-inside: avoid;
  margin-bottom: 14px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img { width: 100%; display: block; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,37,64,.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s ease;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay i { color: white; font-size: 2rem; }

/* ── Lightbox ────────────────────────────────────────────────── */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
}
.lightbox-overlay.active { opacity: 1; visibility: visible; }
.lightbox-img { max-width: 90vw; max-height: 90vh; border-radius: 8px; box-shadow: 0 0 60px rgba(0,0,0,.5); }
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  transition: var(--transition);
}
.lightbox-close:hover { background: var(--orange); }

/* ── Financing Calculator ────────────────────────────────────── */
.calculator-card {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 40px;
  color: white;
}
.calculator-result {
  background: rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 24px;
  text-align: center;
}
.monthly-payment { font-size: 3rem; font-weight: 800; color: var(--orange); line-height: 1; }

/* ── Timeline ────────────────────────────────────────────────── */
.timeline { position: relative; padding-left: 32px; }
.timeline::before { content: ''; position: absolute; left: 12px; top: 0; bottom: 0; width: 2px; background: var(--gray-200); }
.timeline-item { position: relative; margin-bottom: 32px; }
.timeline-dot {
  position: absolute;
  left: -32px;
  top: 4px;
  width: 24px;
  height: 24px;
  background: var(--orange);
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 0 0 2px var(--orange);
}
.timeline-year { font-size: .78rem; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; }
.timeline-title { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.timeline-text { font-size: .85rem; color: var(--gray-500); margin: 0; }

/* ── Animations ─────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.in-view { opacity: 1; transform: translateY(0); }

.fade-in {
  opacity: 0;
  transition: opacity .6s ease;
}
.fade-in.in-view { opacity: 1; }

.slide-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity .6s ease, transform .6s ease;
}
.slide-left.in-view { opacity: 1; transform: translateX(0); }

.slide-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.slide-right.in-view { opacity: 1; transform: translateX(0); }

.delay-1 { transition-delay: .1s !important; }
.delay-2 { transition-delay: .2s !important; }
.delay-3 { transition-delay: .3s !important; }
.delay-4 { transition-delay: .4s !important; }
.delay-5 { transition-delay: .5s !important; }
.delay-6 { transition-delay: .6s !important; }

/* ── Pagination ─────────────────────────────────────────────── */
.pagination .page-link {
  color: var(--navy);
  border-color: var(--gray-200);
  border-radius: 8px !important;
  margin: 0 3px;
  font-weight: 600;
  font-size: .85rem;
  padding: 8px 14px;
}
.pagination .page-link:hover { background: var(--orange); color: white; border-color: var(--orange); }
.pagination .page-item.active .page-link { background: var(--orange); border-color: var(--orange); color: white; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .main-navbar { padding: 12px 0; }
  .features-strip-inner { flex-direction: column; }
  .feature-strip-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.2); }
  .feature-strip-item:last-child { border-bottom: none; }
  .gallery-grid { columns: 2; }
  .dropdown-menu { min-width: 100% !important; transform: none !important; left: 0 !important; }
}

@media (max-width: 767.98px) {
  .section-pad { padding: 60px 0; }
  .hero-section { min-height: auto; padding: 80px 0 60px; }
  .hero-title { font-size: 2.4rem; }
  .stat-card::after { display: none; }
  .gallery-grid { columns: 1; }
  .form-card { padding: 24px; }
  .floating-cta { right: 14px; bottom: 70px; }
  .hero-floating-card { display: none; }
}

@media (max-width: 575.98px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }
}
