/* ============================================================
   BRICK BROTHERS — styles.css
   Color Scheme: Red, Blue, Green, White, Black (Modern Sleek)
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@400;600;700&display=swap');

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  /* Brand Colors */
  --brand-primary:       #1E40AF;   /* Rich Royal Blue */
  --brand-secondary:     #0F172A;   /* Deep Slate Navy (Sleek dark, not black) */
  --brand-accent:        #0066FF;   /* Bright Deep Blue */
  --brand-accent-hover:  #0052CC;   /* Deeper Electric Blue */
  --brand-red:           #EF4444;   /* Crimson Red */
  --brand-red-hover:     #DC2626;
  --brand-green:         #10B981;   /* Emerald Green */
  --brand-green-hover:   #059669;   /* Dark Emerald Green */

  /* Primary scale */
  --primary-50:  #EFF6FF;
  --primary-100: #DBEAFE;
  --primary-300: #93C5FD;
  --primary-500: #3B82F6;
  --primary-700: #1D4ED8;
  --primary-900: #1E40AF;

  /* Neutral palette */
  --color-dark:   #0F172A;   /* Slate Black */
  --color-mid:    #4B5563;   /* Refined Slate Gray */
  --color-light:  #F8FAFC;   /* Soft Ice White */
  --color-white:  #FFFFFF;   /* Pure White */
  --color-border: #E2E8F0;   /* Light Slate Border */

  /* Layout */
  --section-padding:   100px;
  --container-max:     1240px;
  --radius-card:       14px;
  --radius-btn:        6px;

  /* Shadows */
  --shadow-card:       0 4px 24px rgba(15,23,42,0.06);
  --shadow-card-hover: 0 12px 40px rgba(15,23,42,0.12);

  /* Typography */
  --font-heading: 'Bebas Neue', sans-serif;
  --font-body:    'Outfit', sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--color-dark);
  background: var(--color-white);
  opacity: 0;
  transition: opacity 0.4s ease;
  overflow-x: hidden;
}

body.loaded { opacity: 1; }

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

h1 { font-family: var(--font-heading); font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 400; line-height: 1.05; letter-spacing: 0.02em; }
h2 { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; line-height: 1.1; letter-spacing: 0.03em; }
h3 { font-family: var(--font-heading); font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 400; letter-spacing: 0.02em; }
p  { font-size: 1rem; line-height: 1.78; }

/* ============================================================
   UTILITIES
   ============================================================ */
.container { max-width: var(--container-max); margin-inline: auto; padding-inline: 24px; }
.section-padding { padding-block: var(--section-padding); }

.bg-white  { background: var(--color-white); }
.bg-light  { background: var(--color-light); }
.bg-mid    { background: var(--color-border); }
.bg-dark   { background: var(--brand-primary); }

.text-white { color: var(--color-white); }
.text-gold  { color: var(--brand-accent); }
.text-center { text-align: center; }

/* Section labels & headings */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-accent);
  margin-bottom: 10px;
}

.section-heading {
  color: var(--color-dark);
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section-heading::after {
  content: '';
  display: block;
  width: 56px;
  height: 4px;
  background: var(--brand-accent);
  border-radius: 2px;
  margin-top: 10px;
}

.section-heading.center::after { margin-inline: auto; }

.section-sub {
  font-size: 1.05rem;
  color: var(--color-mid);
  max-width: 620px;
  line-height: 1.75;
}

/* ============================================================
   BUTTONS
   ============================================================ */
/* Style: 3D Push */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--brand-accent);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-btn);
  letter-spacing: 0.04em;
  box-shadow: 0 6px 0 var(--brand-accent-hover);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  text-transform: uppercase;
}
.btn-primary:hover  { transform: translateY(3px); box-shadow: 0 3px 0 var(--brand-accent-hover); }
.btn-primary:active { transform: translateY(6px); box-shadow: none; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  background: transparent;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: var(--radius-btn);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: var(--color-white); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  background: var(--brand-primary);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-btn);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s ease;
  box-shadow: 0 4px 0 var(--brand-secondary);
}
.btn-secondary:hover { background: var(--brand-secondary); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.anim-target {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s ease calc(var(--i, 0) * 0.1s),
              transform 0.65s ease calc(var(--i, 0) * 0.1s);
}
.anim-target.animate-in { opacity: 1; transform: none; }

.fade-in-block { animation: fadeInSection 0.9s ease 0.2s both; }

@keyframes kenburns {
  from { transform: scale(1) translateX(0); }
  to   { transform: scale(1.08) translateX(-1%); }
}
@keyframes slideDown {
  from { transform: translateY(-40px); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
@keyframes trustScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes fadeInSection {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}
@keyframes statBounce {
  0%   { transform: scale(0.88); opacity: 0; }
  70%  { transform: scale(1.04); }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--brand-secondary);
  color: rgba(255,255,255,0.88);
  font-size: 0.82rem;
  padding: 7px 0;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.top-bar .container { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.top-bar a { color: rgba(255,255,255,0.88); transition: color 0.2s; }
.top-bar a:hover { color: var(--brand-accent); }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 18px; }
.top-bar i { color: var(--brand-accent); margin-right: 5px; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
  padding: 16px 0;
}

.site-header.scrolled {
  background: var(--color-white);
  box-shadow: 0 2px 20px rgba(15,23,42,0.08);
  padding: 8px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-logo img { height: 54px; width: auto; }
.header-logo-text {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-white);
  letter-spacing: 0.05em;
  transition: color 0.35s;
}
.site-header.scrolled .header-logo-text { color: var(--brand-primary); }

.header-nav { display: flex; align-items: center; gap: 32px; }

.nav-link {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-white);
  position: relative;
  transition: color 0.2s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--brand-accent);
  transition: width 0.25s ease;
}
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-link:hover { color: var(--brand-accent); }

.site-header.scrolled .nav-link { color: var(--color-dark); }
.site-header.scrolled .nav-link:hover { color: var(--brand-accent); }

.header-cta { display: flex; align-items: center; gap: 12px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.site-header.scrolled .hamburger span { background: var(--color-dark); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   MOBILE NAV
   ============================================================ */
.mobile-nav-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 850;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-nav-overlay.open { opacity: 1; pointer-events: all; }

.mobile-nav {
  position: fixed;
  top: 0; right: -320px;
  width: 300px; height: 100vh;
  background: var(--color-white);
  z-index: 860;
  padding: 80px 28px 40px;
  transition: right 0.35s ease;
  overflow-y: auto;
  box-shadow: -4px 0 30px rgba(0,0,0,0.15);
}
.mobile-nav.open { right: 0; }
.mobile-nav-links { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-link {
  display: block;
  padding: 13px 0;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-dark);
  border-bottom: 1px solid var(--color-border);
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-nav-link:hover { color: var(--brand-accent); padding-left: 6px; }
.mobile-nav-close {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 1.4rem;
  color: var(--color-mid);
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-nav-close:hover { color: var(--brand-primary); }
.mobile-nav-contact { margin-top: 28px; }
.mobile-nav-contact a {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; color: var(--brand-primary);
  margin-bottom: 12px; font-size: 0.95rem;
}
.mobile-nav-contact a i { color: var(--brand-accent); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-swiper { position: absolute; inset: 0; z-index: 0; }
.hero-swiper .swiper-wrapper,
.hero-swiper .swiper-slide { height: 100%; }
.hero-swiper .swiper-slide {
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.45) 0%, rgba(30, 41, 59, 0.4) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  max-width: 780px;
}

.hero-eyebrow {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-accent);
  margin-bottom: 14px;
  animation: heroFadeUp 0.8s ease 0.05s both;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.hero-title { 
  color: var(--color-white); 
  animation: heroFadeUp 0.8s ease 0.1s both; 
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.95);
  margin-top: 18px;
  max-width: 580px;
  animation: heroFadeUp 0.8s ease 0.3s both;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}
.hero-ctas {
  margin-top: 34px;
  display: flex; flex-wrap: wrap; gap: 14px;
  animation: heroFadeUp 0.8s ease 0.5s both;
}
.hero-badges {
  margin-top: 40px;
  display: flex; flex-wrap: wrap; gap: 10px;
  animation: heroFadeUp 0.8s ease 0.7s both;
}
.hero-badge {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-white);
  backdrop-filter: blur(4px);
}
.hero-badge i { color: var(--brand-accent); }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.6);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: heroFadeUp 0.8s ease 0.9s both;
}
.hero-scroll-dot {
  width: 2px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   HERO CONTENT GRID & GLASSMORPHIC BOOKING FORM
   ============================================================ */
.hero-content-grid {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  max-width: var(--container-max);
  width: 100%;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
  margin-top: 20px;
}

.hero-text-side {
  max-width: 680px;
}

.hero-form-side {
  width: 100%;
}

.hype-badge-wrap {
  margin-bottom: 18px;
  animation: heroFadeUp 0.8s ease 0s both;
}

.hype-badge {
  display: inline-block;
  background: var(--brand-red);
  color: var(--color-white);
  padding: 6px 14px;
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  border-radius: 4px;
  box-shadow: 0 4px 14px rgba(229, 62, 62, 0.4);
}

.hero-form-card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-card);
  padding: 28px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
  animation: heroFadeUp 0.8s ease 0.4s both;
}

.hero-form-card h3 {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  color: var(--color-dark);
  margin-bottom: 4px;
  letter-spacing: 0.03em;
}

.hero-form-card p {
  font-size: 0.85rem;
  color: var(--color-mid);
  margin-bottom: 18px;
  line-height: 1.4;
}

.hero-form-card .form-group label {
  color: var(--color-dark);
  font-size: 0.8rem;
}

.hero-form-card .form-group input,
.hero-form-card .form-group select,
.hero-form-card .form-group textarea {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  color: var(--color-dark);
  padding: 10px 12px;
  font-size: 0.9rem;
}

.hero-form-card .form-group input:focus,
.hero-form-card .form-group select:focus,
.hero-form-card .form-group textarea:focus {
  border-color: var(--brand-accent);
  background: var(--color-white);
}

.hero-form-card .form-group select option {
  background: var(--color-white);
  color: var(--color-dark);
}

/* Standard Simple Form Card */
.standard-form-card {
  background: var(--color-white);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 30px;
  box-shadow: var(--shadow-card);
}

/* Validation & Captcha Errors */
input.error, select.error {
  border-color: #ff3b30 !important;
  background-color: rgba(255, 59, 48, 0.05) !important;
}

@media (max-width: 1024px) {
  .hero-content-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 110px;
    padding-bottom: 50px;
  }
  .hero {
    height: auto;
    min-height: 100vh;
    padding-block: 100px 60px;
    display: flex;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-block: 60px 40px;
  }
  .hero-content-grid {
    padding-top: 20px;
    padding-bottom: 30px;
  }
  .hype-badge-wrap {
    margin-bottom: 12px;
  }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--brand-primary);
  padding: 14px 0;
  overflow: hidden;
}
.trust-track-wrap { overflow: hidden; }
.trust-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: trustScroll 28s linear infinite;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-white);
  white-space: nowrap;
}
.trust-item i { color: var(--brand-accent); font-size: 1rem; }

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 28px;
}

.service-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--color-white);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  position: relative;
}
.service-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-4px); }

.service-card-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-img { transform: scale(1.05); }
.service-card-img-wrap { overflow: hidden; position: relative; }

.service-card-body { padding: 22px 24px 26px; }
.service-card-icon {
  width: 44px; height: 44px;
  background: var(--primary-50);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
  color: var(--brand-accent);
  font-size: 1.2rem;
}
.service-card h3 { color: var(--color-dark); margin-bottom: 8px; }
.service-card p  { font-size: 0.92rem; color: var(--color-mid); margin-bottom: 16px; }
.service-card-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brand-accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.2s;
}
.service-card-link:hover { gap: 10px; }

/* ============================================================
   ABOUT / SPLIT SECTION
   ============================================================ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
}
.about-img-wrap img { width: 100%; height: 500px; object-fit: cover; }
.about-img-badge {
  position: absolute;
  bottom: 28px; right: -20px;
  background: var(--brand-accent);
  color: var(--color-white);
  border-radius: 12px;
  padding: 18px 24px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(234,88,12,0.35);
}
.about-img-badge strong { font-family: var(--font-heading); font-size: 2.4rem; display: block; line-height: 1; }
.about-img-badge span   { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }

.about-highlight {
  display: inline-block;
  background: var(--primary-50);
  border-left: 4px solid var(--brand-accent);
  padding: 14px 18px;
  border-radius: 0 8px 8px 0;
  font-weight: 700;
  color: var(--brand-primary);
  margin: 18px 0;
  font-size: 1rem;
  line-height: 1.5;
}

.about-checks { margin: 20px 0; display: flex; flex-direction: column; gap: 10px; }
.about-check {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.95rem; font-weight: 600; color: var(--color-dark);
}
.about-check i { color: var(--brand-accent); font-size: 1rem; flex-shrink: 0; }

/* ============================================================
   STATS BAND
   ============================================================ */
.stats-band {
  background: #EFF6FF; /* Soft Blue Tint */
  position: relative;
  overflow: hidden;
  padding: 70px 0;
  border-top: 1px solid #DBEAFE;
  border-bottom: 1px solid #DBEAFE;
}
.stats-band::before {
  display: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5vw, 4rem);
  color: var(--brand-primary);
  line-height: 1;
  display: block;
}
.stat-suffix { color: var(--brand-accent); }
.stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-mid);
  margin-top: 6px;
  display: block;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.why-item {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 30px 28px;
  box-shadow: var(--shadow-card);
  border-top: 3px solid var(--brand-accent);
  transition: box-shadow 0.3s, transform 0.3s;
}
.why-item:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-3px); }
.why-icon {
  width: 52px; height: 52px;
  background: var(--primary-50);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-accent);
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.why-item h3 { color: var(--color-dark); margin-bottom: 8px; font-size: 1.1rem; }
.why-item p  { font-size: 0.92rem; color: var(--color-mid); line-height: 1.65; }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.step-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  position: relative;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s, transform 0.3s;
}
.step-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-3px); }
.step-num {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--primary-100);
  line-height: 1;
  margin-bottom: 12px;
}
.step-card h3 { color: var(--color-dark); margin-bottom: 8px; }
.step-card p  { font-size: 0.92rem; color: var(--color-mid); line-height: 1.65; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { padding: var(--section-padding) 0; background: var(--color-light); }
.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 28px;
  box-shadow: var(--shadow-card);
  height: 100%;
}
.testimonial-stars { color: var(--brand-accent); font-size: 0.95rem; margin-bottom: 12px; }
.testimonial-quote {
  font-size: 0.95rem;
  color: var(--color-mid);
  line-height: 1.75;
  margin-bottom: 18px;
  font-style: italic;
}
.testimonial-quote::before { content: '\201C'; font-size: 2rem; color: var(--brand-accent); line-height: 0; vertical-align: -0.4em; margin-right: 4px; }
.testimonial-author strong { font-size: 0.95rem; color: var(--color-dark); font-weight: 700; }
.testimonial-author span   { font-size: 0.82rem; color: var(--color-mid); display: block; margin-top: 2px; }

.testimonial-source {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand-accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 6px;
}
.testimonial-source i { font-size: 0.85rem; }

/* Swiper pagination */
.swiper-pagination-bullet { background: var(--color-border) !important; opacity: 1 !important; }
.swiper-pagination-bullet-active { background: var(--brand-accent) !important; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--brand-primary);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 40% 60%, rgba(229,62,62,0.15) 0%, transparent 65%);
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--color-white); margin-bottom: 12px; }
.cta-banner p  { color: rgba(255,255,255,0.78); font-size: 1.05rem; margin-bottom: 30px; }
.cta-banner-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* ============================================================
   CONTACT SECTION / FORM
   ============================================================ */
.contact-section { padding: var(--section-padding) 0; background: var(--color-white); }
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Form steps */
.form-steps-indicator {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
}
.form-step-dot {
  height: 4px;
  border-radius: 2px;
  background: var(--color-border);
  flex: 1;
  transition: background 0.3s;
}
.form-step-dot.active { background: var(--brand-accent); }

.form-step { display: none; }
.form-step.active { display: block; }

.form-step-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-accent);
  margin-bottom: 8px;
}
.form-step-title { color: var(--color-dark); margin-bottom: 20px; font-size: 1.4rem; font-weight: 700; font-family: var(--font-heading); letter-spacing: 0.03em; }

/* Service selection grid */
.service-select-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 10px;
  margin-bottom: 24px;
}
.service-select-card {
  border: 2px solid var(--color-border);
  border-radius: 10px;
  padding: 14px 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-mid);
}
.service-select-card:hover,
.service-select-card.selected {
  border-color: var(--brand-accent);
  background: var(--primary-50);
  color: var(--brand-primary);
}
.service-select-card i { display: block; font-size: 1.3rem; margin-bottom: 6px; color: var(--brand-accent); }

/* Radio pills */
.radio-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 18px; }
.radio-pill {
  position: relative;
}
.radio-pill input { position: absolute; opacity: 0; }
.radio-pill label {
  display: block;
  padding: 9px 18px;
  border: 2px solid var(--color-border);
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-mid);
  cursor: pointer;
  transition: all 0.2s;
}
.radio-pill input:checked + label {
  border-color: var(--brand-accent);
  background: var(--primary-50);
  color: var(--brand-primary);
}

/* Form fields */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--color-dark); margin-bottom: 6px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--color-border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-dark);
  background: var(--color-white);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--brand-accent); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 22px; gap: 12px; }
.btn-form-back {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.88rem; font-weight: 700; color: var(--color-mid);
  text-transform: uppercase; letter-spacing: 0.05em;
  cursor: pointer; transition: color 0.2s;
  background: none; border: none;
}
.btn-form-back:hover { color: var(--brand-primary); }

/* Form success */
.form-success { text-align: center; padding: 40px 20px; display: none; }
.form-success i { font-size: 3rem; color: var(--brand-accent); margin-bottom: 16px; }
.form-success h3 { color: var(--color-dark); margin-bottom: 10px; }
.form-success p  { color: var(--color-mid); }

/* Map placeholder */
.contact-map { border-radius: var(--radius-card); overflow: hidden; }
.contact-map iframe { width: 100%; height: 320px; border: none; }
.contact-map-placeholder {
  width: 100%;
  height: 320px;
  background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
  border-radius: var(--radius-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--brand-primary);
}
.contact-map-placeholder i { font-size: 2.5rem; color: var(--brand-accent); }
.contact-map-placeholder p { font-weight: 600; font-size: 0.95rem; }

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}
.contact-info-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--color-light);
  border-radius: 10px;
}
.contact-info-icon {
  width: 42px; height: 42px;
  background: var(--brand-accent);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-dark);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-info-card strong { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--color-mid); display: block; margin-bottom: 2px; }
.contact-info-card a,
.contact-info-card span { font-size: 0.95rem; font-weight: 600; color: var(--color-dark); }
.contact-info-card a:hover { color: var(--brand-accent); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { padding: var(--section-padding) 0; background: var(--color-light); }
.faq-list { max-width: 800px; margin-inline: auto; }
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-dark);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--brand-accent); }
.faq-question i { color: var(--brand-accent); flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-question i { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  font-size: 0.95rem;
  color: var(--color-mid);
  line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 18px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--brand-secondary);
  padding: 70px 0 0;
  color: rgba(255,255,255,0.85);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 50px;
}
.footer-logo img { height: 50px; margin-bottom: 16px; }
.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--color-white);
  margin-bottom: 16px;
  display: block;
}
.footer-about { font-size: 0.9rem; line-height: 1.75; color: rgba(255,255,255,0.7); margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  transition: background 0.2s, color 0.2s;
}
.footer-social-link:hover { background: var(--brand-accent); color: var(--color-dark); }

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-accent);
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s, padding-left 0.2s;
  display: flex; align-items: center; gap: 7px;
}
.footer-link:hover { color: var(--color-white); padding-left: 4px; }
.footer-link i { color: var(--brand-accent); font-size: 0.8rem; }

.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 12px;
}
.footer-contact-item i { color: var(--brand-accent); margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.75); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--color-white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--brand-accent); }

/* ============================================================
   MOBILE STICKY CTA
   ============================================================ */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 800;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid var(--color-border);
  padding: 12px 16px;
  gap: 10px;
  box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.08);
}
.mobile-cta-bar a { flex: 1; text-align: center; font-size: 0.88rem; }

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top-btn {
  position: fixed;
  bottom: 80px; right: 24px;
  z-index: 700;
  width: 46px; height: 46px;
  background: var(--brand-accent);
  color: var(--color-dark);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
  opacity: 0; pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
  cursor: pointer;
  border: none;
}
.scroll-top-btn.visible { opacity: 1; pointer-events: all; transform: none; }
.scroll-top-btn:hover { background: var(--brand-primary); color: var(--color-white); }

/* ============================================================
   INNER PAGE HERO
   ============================================================ */
.inner-hero {
  position: relative;
  height: 420px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.inner-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.65) 0%, rgba(15, 23, 42, 0.3) 100%);
}
.inner-hero .container { position: relative; z-index: 1; }
.inner-hero h1 { color: var(--color-white); margin-bottom: 10px; }
.inner-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}
.inner-breadcrumb a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.inner-breadcrumb a:hover { color: var(--brand-accent); }
.inner-breadcrumb i { font-size: 0.7rem; color: var(--brand-accent); }

/* ============================================================
   GALLERY GRID
   ============================================================ */
.gallery-grid { }
.gallery-item {
  margin-bottom: 20px;
  border-radius: var(--radius-card);
  overflow: hidden;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

/* ============================================================
   WAVE DIVIDERS
   ============================================================ */
.wave-divider { display: block; width: 100%; overflow: hidden; line-height: 0; }
.wave-divider svg { display: block; }

/* ============================================================
   SECTION TILTED
   ============================================================ */
.section-tilted {
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
  padding-bottom: 80px;
}

/* ============================================================
   CUSTOM BRICKWORK HIGHLIGHT BAND
   ============================================================ */
.custom-highlight-band {
  background: #DBEAFE; /* Soft blue tint */
  padding: 24px 0;
  text-align: center;
  border-top: 1px solid #BFDBFE;
  border-bottom: 1px solid #BFDBFE;
}
.custom-highlight-band p {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1E40AF; /* Deep blue text */
  letter-spacing: 0.03em;
}
.custom-highlight-band span { text-decoration: underline; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-split        { grid-template-columns: 1fr; gap: 40px; }
  .about-img-badge    { right: 20px; }
  .contact-layout     { grid-template-columns: 1fr; }
  .stats-grid         { grid-template-columns: repeat(2, 1fr); }
  .footer-grid        { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  :root { --section-padding: 70px; }

  .header-nav, .header-cta  { display: none; }
  .hamburger                 { display: flex; }

  h1 { font-size: clamp(2.2rem, 8vw, 3rem); }

  .services-grid      { grid-template-columns: 1fr; }
  .why-grid           { grid-template-columns: 1fr; }
  .process-steps      { grid-template-columns: 1fr; }
  .stats-grid         { grid-template-columns: repeat(2, 1fr); }
  .footer-grid        { grid-template-columns: 1fr; gap: 28px; }
  .mobile-cta-bar     { display: flex; }
  .form-row           { grid-template-columns: 1fr; }
  .hero-ctas          { flex-direction: column; }
  .inner-hero         { background-attachment: scroll; }

  .top-bar-left { display: none; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .about-img-badge { right: 10px; bottom: 10px; }
}
