/* ==========================================================================
   Deskins Property Services - Official Stylesheet
   Modern, High-Converting, Responsive Design
   ========================================================================== */

/* --- CSS Variables & Theme Tokens --- */
:root {
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Color Palette matching brand & flyer */
  --primary-deep: #0e271a;
  --primary-dark: #143625;
  --primary: #1b4332;
  --primary-mid: #2d6a4f;
  --primary-light: #40916c;
  --accent-green: #52b788;
  --accent-lime: #74c69d;
  
  --gold-primary: #e69d28;
  --gold-hover: #cb8418;
  --gold-light: #fef5e7;
  --gold-border: #f6c77a;

  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  
  --bg-sand: #fbfbf9;
  --bg-light: #f4f6f1;
  --white: #ffffff;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 25px -3px rgba(15, 23, 42, 0.12), 0 4px 10px -2px rgba(15, 23, 42, 0.05);
  --shadow-xl: 0 20px 35px -5px rgba(15, 23, 42, 0.18), 0 10px 15px -5px rgba(15, 23, 42, 0.08);
  --shadow-gold: 0 10px 30px -5px rgba(230, 157, 40, 0.45);
  --shadow-green: 0 10px 30px -5px rgba(27, 67, 50, 0.4);

  /* Radius & Transitions */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Base & Reset Styles --- */
*, *::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(--slate-800);
  background-color: var(--bg-sand);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  padding-bottom: 70px; /* offset for mobile sticky bar */
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

ul {
  list-style: none;
}

/* --- Container & Utilities --- */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section-padding {
  padding-top: 85px;
  padding-bottom: 85px;
}

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

.text-gold {
  color: var(--gold-primary) !important;
}

.text-green {
  color: var(--accent-green) !important;
}

.sub-heading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-mid);
  background: rgba(45, 106, 79, 0.1);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary-deep);
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.8rem;
  }
}

.section-desc {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1rem;
  color: var(--slate-600);
  line-height: 1.7;
  margin-bottom: 40px;
}

/* --- Buttons & UI Elements --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: none;
  transition: all var(--transition-fast);
  text-align: center;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-green);
}

.btn-primary:hover {
  background-color: var(--primary-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   Top Announcement Bar
   ========================================================================== */
.announcement-bar {
  background-color: var(--primary-deep);
  color: var(--white);
  font-size: 0.875rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 100;
}

.announcement-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.announcement-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulseGreen 1.8s infinite;
}

@keyframes pulseGreen {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

.announcement-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.announcement-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-primary);
  font-weight: 600;
}

.announcement-phone:hover {
  color: #fbd38d;
}

.badge-tag {
  background-color: rgba(230, 157, 40, 0.2);
  color: var(--gold-primary);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.announcement-btn {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
  transition: var(--transition-fast);
}

.announcement-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  z-index: 99;
  border-bottom: 1px solid var(--slate-200);
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-mark {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  border: 1px solid var(--slate-200);
}

.logo-svg {
  width: 34px;
  height: 34px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  color: var(--primary-deep);
  line-height: 1;
}

.brand-subtitle {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--primary-mid);
  margin-top: 2px;
}

.brand-location {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--gold-primary);
  margin-top: 1px;
}

/* Navigation Menu */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--slate-700);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width var(--transition-fast);
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link:hover::after {
  width: 100%;
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-phone-header {
  display: none;
  align-items: center;
  gap: 10px;
  background: var(--gold-light);
  border: 1px solid var(--gold-border);
  padding: 8px 16px;
  border-radius: var(--radius-md);
}

@media (min-width: 1100px) {
  .btn-phone-header {
    display: flex;
  }
}

.phone-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.phone-text-wrap {
  display: flex;
  flex-direction: column;
}

.phone-sub {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--slate-600);
  text-transform: uppercase;
}

.phone-num {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary-deep);
  line-height: 1.1;
}

.nav-quote-btn {
  padding: 10px 20px;
  font-size: 0.92rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-deep);
  cursor: pointer;
  padding: 6px;
}

@media (max-width: 991px) {
  .mobile-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--white);
    padding: 24px;
    box-shadow: var(--shadow-xl);
    border-bottom: 2px solid var(--primary);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-normal);
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .nav-link {
    font-size: 1.1rem;
  }

  .nav-quote-btn {
    display: none;
  }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  color: var(--white);
  padding: 60px 0 80px;
  overflow: hidden;
}

.hero-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.9);
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(14, 39, 26, 0.92) 0%, rgba(20, 54, 37, 0.85) 55%, rgba(14, 39, 26, 0.7) 100%);
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-container {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.hero-content {
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(230, 157, 40, 0.18);
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

@media (min-width: 768px) {
  .hero-headline {
    font-size: 3.5rem;
  }
}

.hero-headline .highlight {
  color: var(--gold-primary);
  display: block;
}

.hero-lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 36px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 40px;
}

/* Call Button Massive */
.btn-call-large {
  background: linear-gradient(135deg, #e69d28 0%, #d48b19 100%);
  color: #111827;
  padding: 14px 26px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-gold);
  display: inline-flex;
  align-items: center;
  gap: 16px;
  transition: all var(--transition-fast);
}

.btn-call-large:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px rgba(230, 157, 40, 0.6);
  color: #000;
}

.btn-call-icon {
  width: 44px;
  height: 44px;
  background: #111827;
  color: var(--gold-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.btn-call-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.cta-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #374151;
}

.cta-number {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
  color: #111827;
}

.btn-secondary-hero {
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: var(--white);
  padding: 16px 28px;
  border-radius: var(--radius-md);
  font-weight: 700;
}

.btn-secondary-hero:hover {
  background: var(--white);
  color: var(--primary-deep);
  border-color: var(--white);
  transform: translateY(-2px);
}

.hero-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 24px;
}

@media (min-width: 640px) {
  .hero-highlights {
    grid-template-columns: repeat(2, auto);
    justify-content: start;
    gap: 24px;
  }
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.highlight-item i {
  color: var(--accent-green);
  font-size: 1.05rem;
}

/* Hero Quick Card (Flyer Replica Style) */
.hero-quote-card {
  background: var(--white);
  color: var(--slate-800);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-xl);
  border: 3px solid var(--primary-mid);
  position: relative;
}

.card-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-deep);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-deep);
  margin-bottom: 18px;
}

.quick-service-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--slate-200);
  padding-bottom: 20px;
}

.quick-service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--slate-700);
}

.quick-service-list li i {
  color: var(--primary-mid);
  font-size: 1rem;
}

.card-direct-cta {
  text-align: center;
}

.direct-text {
  font-size: 0.88rem;
  color: var(--slate-600);
  margin-bottom: 12px;
  font-weight: 500;
}

.btn-direct-call {
  background: var(--primary-deep);
  color: var(--gold-primary);
  width: 100%;
  padding: 14px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all var(--transition-fast);
}

.btn-direct-call:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

/* ==========================================================================
   Trust Bar Strip
   ========================================================================== */
.trust-bar {
  background-color: var(--white);
  border-bottom: 1px solid var(--slate-200);
  padding: 30px 0;
  box-shadow: var(--shadow-sm);
}

.trust-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .trust-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .trust-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-stat {
  display: flex;
  align-items: center;
  gap: 16px;
}

.stat-icon {
  width: 52px;
  height: 52px;
  background: var(--bg-light);
  border: 1px solid rgba(45, 106, 79, 0.2);
  border-radius: var(--radius-md);
  color: var(--primary-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.stat-info h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary-deep);
  margin-bottom: 2px;
}

.stat-info p {
  font-size: 0.85rem;
  color: var(--slate-500);
  line-height: 1.3;
}

/* ==========================================================================
   Services Section & Filter Tabs
   ========================================================================== */
.services-section {
  background-color: var(--bg-sand);
}

.service-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  background: var(--white);
  padding: 6px;
  border-radius: var(--radius-full);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
  margin-bottom: 40px;
}

.tab-btn {
  background: none;
  border: none;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--slate-600);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.tab-btn.active, .tab-btn:hover {
  background-color: var(--primary);
  color: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-mid);
}

.service-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card:hover .service-img {
  transform: scale(1.06);
}

.service-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(14, 39, 26, 0.85);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.service-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-icon {
  width: 44px;
  height: 44px;
  background: var(--bg-light);
  color: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-top: -46px;
  margin-bottom: 16px;
  position: relative;
  z-index: 3;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--white);
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-deep);
  margin-bottom: 10px;
}

.service-text {
  font-size: 0.95rem;
  color: var(--slate-600);
  line-height: 1.6;
  margin-bottom: 18px;
  flex-grow: 1;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
  border-top: 1px solid var(--slate-100);
  padding-top: 14px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--slate-700);
  font-weight: 500;
}

.service-features li i {
  color: var(--accent-green);
  font-size: 0.85rem;
}

.service-footer {
  margin-top: auto;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: var(--bg-light);
  color: var(--primary);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.92rem;
  transition: all var(--transition-fast);
}

.service-btn:hover {
  background: var(--primary);
  color: var(--white);
}

/* Callout Banner below services */
.service-callout-banner {
  margin-top: 50px;
  background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .service-callout-banner {
    flex-direction: row;
  }
}

.callout-text h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.callout-text p {
  color: rgba(255, 255, 255, 0.85);
}

.btn-white-call {
  background: var(--white);
  color: var(--primary-deep);
  font-weight: 800;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
}

.btn-white-call:hover {
  background: var(--gold-primary);
  color: var(--slate-900);
}

/* ==========================================================================
   Interactive Cost Estimator & Calculator
   ========================================================================== */
.calculator-section {
  background-color: var(--white);
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
}

.calculator-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .calculator-wrapper {
    grid-template-columns: 1fr 1.2fr;
  }
}

.calc-intro p {
  font-size: 1.05rem;
  color: var(--slate-600);
  margin-bottom: 28px;
}

.calc-perks {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
}

.perk-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--slate-700);
}

.flyer-badge-highlight {
  background: var(--gold-light);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: center;
}

.flyer-badge-highlight .badge-icon {
  width: 42px;
  height: 42px;
  background: var(--gold-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.flyer-badge-highlight .badge-body {
  display: flex;
  flex-direction: column;
}

.flyer-badge-highlight strong {
  font-family: var(--font-heading);
  color: var(--slate-900);
  font-size: 1rem;
}

.flyer-badge-highlight span {
  font-size: 0.85rem;
  color: var(--slate-600);
}

/* Calculator Card */
.calc-card {
  background: var(--bg-sand);
  border: 2px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}

.calc-step {
  margin-bottom: 26px;
}

.calc-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--primary-deep);
  margin-bottom: 14px;
}

.step-num {
  width: 26px;
  height: 26px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

/* Size Chips */
.size-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

@media (min-width: 640px) {
  .size-options {
    grid-template-columns: repeat(4, 1fr);
  }
}

.size-chip {
  background: var(--white);
  border: 2px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 12px 10px;
  text-align: center;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: all var(--transition-fast);
}

.size-chip input {
  display: none;
}

.size-chip i {
  font-size: 1.2rem;
  color: var(--primary-mid);
  margin-bottom: 2px;
}

.chip-title {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--slate-800);
}

.chip-sub {
  font-size: 0.72rem;
  color: var(--slate-500);
}

.size-chip.active, .size-chip:hover {
  border-color: var(--primary);
  background: var(--bg-light);
}

.size-chip.active .chip-title {
  color: var(--primary);
}

/* Service Checkboxes */
.service-checkbox-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

@media (min-width: 600px) {
  .service-checkbox-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.service-checkbox-item {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all var(--transition-fast);
  user-select: none;
}

.service-checkbox-item input {
  display: none;
}

.custom-check {
  width: 20px;
  height: 20px;
  border: 2px solid var(--slate-300);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: transparent;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.service-checkbox-item input:checked + .custom-check {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.service-checkbox-item:hover {
  border-color: var(--primary-light);
}

.service-checkbox-item.checked {
  background: rgba(45, 106, 79, 0.06);
  border-color: var(--primary-mid);
}

.service-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--slate-700);
}

/* Frequency Chips */
.freq-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.freq-chip {
  background: var(--white);
  border: 2px solid var(--slate-200);
  border-radius: var(--radius-sm);
  padding: 10px 8px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--slate-700);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.freq-chip input {
  display: none;
}

.freq-chip.active, .freq-chip:hover {
  border-color: var(--primary);
  background: var(--bg-light);
  color: var(--primary);
}

/* Result Box */
.calc-result-box {
  background: var(--primary-deep);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-top: 16px;
}

.result-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}

.res-title {
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--accent-green);
}

.res-note {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
}

.result-price-display {
  margin-bottom: 10px;
}

.price-val {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold-primary);
  line-height: 1;
}

.result-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
  line-height: 1.4;
}

.result-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-call-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-size: 0.92rem;
}

.btn-call-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */
.why-us-section {
  background-color: var(--bg-sand);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 60px;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-box {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.feature-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-mid);
}

.feature-icon-badge {
  width: 56px;
  height: 56px;
  background: var(--bg-light);
  color: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.feature-box h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-deep);
  margin-bottom: 12px;
}

.feature-box p {
  font-size: 0.95rem;
  color: var(--slate-600);
  line-height: 1.6;
}

/* Proof Banner */
.proof-banner {
  background: linear-gradient(135deg, var(--primary-deep) 0%, #16402d 100%);
  border-radius: var(--radius-lg);
  color: var(--white);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .proof-banner {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.proof-content {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.proof-tag {
  display: inline-block;
  color: var(--gold-primary);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.proof-content h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
}

.proof-content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 30px;
}

.proof-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn-light-solid {
  background: var(--white);
  color: var(--primary-deep);
  font-weight: 800;
}

.btn-light-solid:hover {
  background: var(--gold-primary);
  color: var(--slate-900);
}

.btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.proof-visual {
  position: relative;
  min-height: 300px;
}

.proof-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   Project Gallery
   ========================================================================== */
.gallery-section {
  background-color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 260px;
  box-shadow: var(--shadow-md);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px 20px 16px;
  background: linear-gradient(to top, rgba(14, 39, 26, 0.95) 0%, rgba(14, 39, 26, 0.7) 60%, transparent 100%);
  color: var(--white);
  transform: translateY(10px);
  opacity: 0.95;
  transition: all var(--transition-normal);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
  opacity: 1;
}

.gallery-caption h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 2px;
}

.gallery-caption p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   Reviews / Testimonials
   ========================================================================== */
.reviews-section {
  background-color: var(--bg-sand);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars {
  color: #f59e0b;
  margin-bottom: 18px;
  font-size: 1rem;
  display: flex;
  gap: 3px;
}

.review-text {
  font-size: 0.98rem;
  color: var(--slate-700);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 24px;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.reviewer-info h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary-deep);
}

.reviewer-info span {
  font-size: 0.82rem;
  color: var(--slate-500);
}

/* ==========================================================================
   Quote & Booking Section
   ========================================================================== */
.quote-section {
  background-color: var(--primary-deep);
  color: var(--white);
  position: relative;
}

.quote-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

@media (min-width: 1024px) {
  .quote-wrapper {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

.quote-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .quote-title {
    font-size: 2.75rem;
  }
}

.quote-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
}

/* Direct Call Card */
.direct-call-card {
  background: rgba(255, 255, 255, 0.07);
  border: 2px solid var(--gold-primary);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  margin-bottom: 32px;
}

.direct-call-badge {
  color: var(--gold-primary);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.direct-call-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.phone-link-big {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold-primary);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  transition: all var(--transition-fast);
}

.phone-link-big:hover {
  color: #fff;
  transform: scale(1.03);
}

.call-subtext {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 16px;
}

.sms-quick-row {
  display: flex;
  justify-content: center;
}

.btn-sms {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
}

.btn-sms:hover {
  background: var(--gold-primary);
  color: var(--slate-900);
}

/* Service Guarantees */
.service-guarantees {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.guarantee-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.guarantee-item i {
  color: var(--accent-green);
  font-size: 1.25rem;
  margin-top: 3px;
}

.guarantee-item strong {
  display: block;
  font-size: 1rem;
  color: var(--white);
}

.guarantee-item span {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Quote Form Container */
.form-container {
  background: var(--white);
  color: var(--slate-800);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-xl);
}

.form-heading {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary-deep);
  margin-bottom: 6px;
}

.form-sub {
  font-size: 0.92rem;
  color: var(--slate-600);
  margin-bottom: 24px;
}

.site-form .form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

@media (min-width: 600px) {
  .site-form .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--slate-700);
  margin-bottom: 6px;
}

.req {
  color: #dc2626;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--slate-300);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--slate-800);
  background-color: var(--white);
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(27, 67, 50, 0.15);
}

/* Service Tags Checkboxes in Form */
.form-service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-checkbox {
  cursor: pointer;
  user-select: none;
}

.tag-checkbox input {
  display: none;
}

.tag-checkbox span {
  display: inline-block;
  background: var(--slate-100);
  border: 1px solid var(--slate-200);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--slate-700);
  transition: all var(--transition-fast);
}

.tag-checkbox input:checked + span {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-submit-quote {
  width: 100%;
  padding: 16px;
  font-size: 1.05rem;
  margin-top: 10px;
  margin-bottom: 12px;
}

.form-privacy {
  text-align: center;
  font-size: 0.78rem;
  color: var(--slate-500);
}

.form-success-box {
  background: var(--bg-light);
  border: 2px solid var(--accent-green);
  border-radius: var(--radius-md);
  padding: 30px;
  text-align: center;
}

.success-icon {
  font-size: 2.5rem;
  color: var(--primary-mid);
  margin-bottom: 12px;
}

.form-success-box h4 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--primary-deep);
  margin-bottom: 8px;
}

.form-success-box p {
  color: var(--slate-600);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.btn-call-success {
  background: var(--primary);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-weight: 700;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
  background-color: var(--white);
}

.faq-container {
  max-width: 860px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-sand);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-deep);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.faq-question i {
  font-size: 0.9rem;
  color: var(--slate-500);
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-question {
  color: var(--primary);
  background: var(--white);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
  background: var(--white);
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.98rem;
  color: var(--slate-600);
  line-height: 1.7;
}

/* ==========================================================================
   Final Call To Action Banner
   ========================================================================== */
.final-cta-section {
  background: var(--bg-sand);
  padding: 0 0 60px;
}

.final-cta-box {
  background: linear-gradient(135deg, #1b4332 0%, #0e271a 100%);
  border-radius: var(--radius-lg);
  padding: 60px 30px;
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow-xl);
  border: 2px solid var(--gold-primary);
}

.cta-tag {
  color: var(--gold-primary);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: block;
}

.final-cta-content h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .final-cta-content h2 {
    font-size: 3rem;
  }
}

.final-cta-content p {
  max-width: 640px;
  margin: 0 auto 36px;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}

.final-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.btn-call-massive {
  background: var(--gold-primary);
  color: var(--slate-900);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 900;
  padding: 16px 36px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-gold);
}

.btn-call-massive:hover {
  background: #fcd34d;
  transform: translateY(-2px);
}

.badge-sub {
  font-size: 0.8rem;
  background: rgba(0, 0, 0, 0.15);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  margin-left: 6px;
  font-weight: 700;
}

.btn-outline-massive {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: var(--radius-md);
}

.btn-outline-massive:hover {
  background: var(--white);
  color: var(--primary-deep);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background-color: #0b1c13;
  color: var(--slate-300);
  padding: 70px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.logo-svg-sm {
  width: 32px;
  height: 32px;
}

.footer-brand-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.footer-brand-sub {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--accent-green);
  display: block;
}

.footer-about {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.footer-flyer-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  color: var(--white);
  font-weight: 600;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold-primary);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold-primary);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.88rem;
}

.footer-contact-item i {
  font-size: 1.1rem;
  margin-top: 4px;
}

.f-label {
  display: block;
  font-weight: 700;
  color: var(--white);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.f-val {
  color: var(--gold-primary);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
}

.f-val:hover {
  color: #fff;
}

.f-val-text {
  color: rgba(255, 255, 255, 0.75);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-motto {
  font-style: italic;
  color: var(--accent-green);
}

/* ==========================================================================
   Mobile Sticky Bottom Floating Action Bar
   ========================================================================== */
.mobile-sticky-bar {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.12);
  z-index: 999;
  border-top: 1px solid var(--slate-200);
}

@media (min-width: 992px) {
  .mobile-sticky-bar {
    display: none;
  }
}

.mobile-bar-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
}

.btn-call-mobile {
  background: var(--primary-deep);
  color: var(--gold-primary);
}

.btn-quote-mobile {
  background: var(--gold-primary);
  color: var(--slate-900);
}

/* ==========================================================================
   Back To Top Button
   ========================================================================== */
.back-to-top {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-normal);
  z-index: 90;
}

@media (min-width: 992px) {
  .back-to-top {
    bottom: 24px;
  }
}

.back-to-top.show {
  opacity: 1;
  pointer-events: all;
}

.back-to-top:hover {
  background: var(--gold-primary);
  color: var(--slate-900);
  transform: translateY(-3px);
}
