/* ============================================================
   Better Call Haul — Custom Styles
   Theme: Orange (#F97316) + Black (#0f0f0f) + Dark Gray (#1e1e1e)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Oswald:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ── Root Variables ── */
:root {
  --orange:      #F97316;
  --orange-dark: #EA580C;
  --orange-glow: rgba(249, 115, 22, 0.25);
  --black:       #0f0f0f;
  --dark:        #1a1a1a;
  --dark-2:      #242424;
  --dark-3:      #2d2d2d;
  --gray:        #6b7280;
  --light-gray:  #9ca3af;
  --white:       #ffffff;
  --off-white:   #f5f5f5;
  --font-head:   'Oswald', sans-serif;
  --font-display:'Bebas Neue', sans-serif;
  --font-body:   'Inter', sans-serif;
}

/* ── Base ── */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: clip;
  max-width: 100vw;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  letter-spacing: 0.02em;
}

a { color: var(--orange); text-decoration: none; transition: color .2s; }
a:hover { color: var(--orange-dark); }

.text-orange   { color: var(--orange) !important; }
.bg-orange     { background-color: var(--orange) !important; }
.bg-dark-panel { background-color: var(--dark-2); }

/* ── Utility ── */
.section-label {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: .5rem;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
}

.section-title span { color: var(--orange); }

.divider-orange {
  width: 60px;
  height: 4px;
  background: var(--orange);
  border-radius: 2px;
  margin: 1rem 0 1.5rem;
}

.divider-orange.center { margin-left: auto; margin-right: auto; }

/* ── Buttons ── */
.btn-orange {
  background: var(--orange);
  color: var(--white);
  border: 2px solid var(--orange);
  font-family: var(--font-head);
  font-size: 1rem;
  letter-spacing: .08em;
  padding: .75rem 2rem;
  border-radius: 4px;
  transition: all .25s ease;
  text-transform: uppercase;
}

.btn-orange:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--orange-glow);
}

.btn-outline-orange {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
  font-family: var(--font-head);
  font-size: 1rem;
  letter-spacing: .08em;
  padding: .75rem 2rem;
  border-radius: 4px;
  transition: all .25s ease;
  text-transform: uppercase;
}

.btn-outline-orange:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--orange-glow);
}

.btn-dark-lg {
  background: var(--dark-3);
  color: var(--white);
  border: 2px solid var(--dark-3);
  font-family: var(--font-head);
  font-size: 1rem;
  letter-spacing: .08em;
  padding: .75rem 2rem;
  border-radius: 4px;
  transition: all .25s ease;
  text-transform: uppercase;
}

.btn-dark-lg:hover {
  background: var(--dark-2);
  border-color: var(--orange);
  color: var(--orange);
}

/* ── Navbar ── */
#mainNav {
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(249, 115, 22, 0.15);
  padding: .75rem 0;
  transition: all .3s ease;
  z-index: 1000;
}

#mainNav.scrolled {
  background: rgba(15, 15, 15, 0.99);
  border-bottom-color: var(--orange);
  padding: .5rem 0;
}

.navbar-brand {
  line-height: 0;
  padding: 0;
}

.navbar-brand img {
  height: 65px;
  width: auto;
}

.navbar-nav .nav-link {
  font-family: var(--font-head);
  font-size: .95rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--light-gray) !important;
  padding: .4rem .9rem !important;
  transition: color .2s;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: .9rem; right: .9rem;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform .25s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--white) !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-toggler {
  border-color: var(--orange);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23F97316' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── Hero / Parallax ── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: -20%;
  background-image: url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  will-change: transform;
  transition: transform .05s linear;
}

/* Dark gradient overlay */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 15, 15, 0.88) 0%,
    rgba(15, 15, 15, 0.65) 50%,
    rgba(234, 88, 12, 0.18) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: .8rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  line-height: .95;
  color: var(--white);
  text-shadow: 0 4px 30px rgba(0,0,0,.6);
}

.hero-title .accent { color: var(--orange); }

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--light-gray);
  max-width: 520px;
  line-height: 1.6;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin: 1.5rem 0;
}

.hero-badge {
  background: rgba(249,115,22,.15);
  border: 1px solid rgba(249,115,22,.4);
  color: var(--orange);
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 2rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: var(--light-gray);
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero-scroll svg { color: var(--orange); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── Stats Bar ── */
.stats-bar {
  background: var(--orange);
  padding: 1.25rem 0;
}

.stat-item {
  text-align: center;
  padding: .5rem 1rem;
  border-right: 1px solid rgba(255,255,255,.25);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 1;
  color: var(--white);
}

.stat-label {
  font-family: var(--font-body);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  margin-top: .15rem;
}

/* ── Services Section ── */
#services {
  padding: 6rem 0;
  background: var(--dark);
}

.service-card {
  background: var(--dark-2);
  border: 1px solid var(--dark-3);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  height: 100%;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform .3s ease;
  transform-origin: left;
}

.service-card:hover {
  border-color: rgba(249,115,22,.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.4);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 64px;
  height: 64px;
  background: rgba(249,115,22,.12);
  border: 1px solid rgba(249,115,22,.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  transition: all .3s;
}

.service-card:hover .service-icon {
  background: var(--orange);
  border-color: var(--orange);
}

.service-card h4 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: .75rem;
}

.service-card p {
  color: var(--light-gray);
  font-size: .92rem;
  line-height: 1.7;
  margin: 0;
}

/* ── Pricing Section ── */
#pricing {
  padding: 6rem 0;
  background: var(--black);
}

.pricing-card {
  background: var(--dark-2);
  border: 1px solid var(--dark-3);
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  transition: all .3s ease;
}

.pricing-card.featured {
  border-color: var(--orange);
  box-shadow: 0 0 40px var(--orange-glow);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
}

.pricing-card.featured:hover {
  box-shadow: 0 24px 60px var(--orange-glow);
}

.pricing-header {
  padding: 2rem;
  background: var(--dark-3);
  text-align: center;
  position: relative;
}

.pricing-card.featured .pricing-header {
  background: var(--orange);
}

.popular-badge {
  position: absolute;
  top: -1px; right: 1.5rem;
  background: var(--orange-dark);
  color: var(--white);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 0 0 6px 6px;
}

.pricing-card.featured .popular-badge {
  background: var(--black);
}

.pricing-size {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--white);
  line-height: 1;
}

.pricing-size span {
  font-family: var(--font-body);
  font-size: .9rem;
  color: rgba(255,255,255,.7);
}

.pricing-desc {
  font-size: .8rem;
  color: rgba(255,255,255,.7);
  letter-spacing: .05em;
  margin-top: .25rem;
}

.pricing-body {
  padding: 2rem;
}

.pricing-price {
  text-align: center;
  margin-bottom: 1.5rem;
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--orange);
  line-height: 1;
}

.pricing-period {
  font-size: .8rem;
  color: var(--gray);
  letter-spacing: .05em;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  padding: .5rem 0;
  border-bottom: 1px solid var(--dark-3);
  font-size: .88rem;
  color: var(--light-gray);
}

.pricing-features li:last-child { border-bottom: none; }
.pricing-features li .check { color: var(--orange); font-size: .85rem; margin-top: .1rem; }

/* ── Pricing tier rows ── */
.pricing-tiers {
  margin-bottom: 1.75rem;
}

.tier-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .6rem .85rem;
  border-radius: 6px;
  margin-bottom: .3rem;
  font-size: .88rem;
}

.tier-row:nth-child(odd) { background: rgba(255,255,255,.04); }

.tier-label { color: var(--light-gray); }

.tier-price {
  font-weight: 700;
  color: var(--orange);
  font-size: 1rem;
}

.tier-row.tier-contact .tier-price {
  color: var(--gray);
  font-style: italic;
  font-size: .85rem;
}

.tier-badge {
  font-size: .6rem;
  background: rgba(249,115,22,.18);
  color: var(--orange);
  border-radius: 4px;
  padding: .1rem .4rem;
  margin-left: .45rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  vertical-align: middle;
  white-space: nowrap;
}

.extra-fees {
  background: var(--dark-2);
  border: 1px solid rgba(249,115,22,.2);
  border-radius: 10px;
  padding: 2rem;
  margin-top: 3rem;
}

.extra-fees h4 {
  color: var(--orange);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.fee-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .6rem 0;
  border-bottom: 1px solid var(--dark-3);
  font-size: .88rem;
}

.fee-item:last-child { border-bottom: none; }
.fee-item .fee-name { color: var(--light-gray); }
.fee-item .fee-price { color: var(--orange); font-weight: 600; }

.not-accepted {
  background: rgba(239, 68, 68, .08);
  border: 1px solid rgba(239, 68, 68, .25);
  border-radius: 10px;
  padding: 1.5rem 2rem;
  margin-top: 1.5rem;
}

.not-accepted h5 {
  color: #ef4444;
  font-size: .95rem;
  margin-bottom: .75rem;
}

.not-accepted ul {
  margin: 0;
  padding-left: 1.25rem;
}

.not-accepted ul li {
  color: var(--light-gray);
  font-size: .85rem;
  margin-bottom: .3rem;
}

/* ── Quote Calculator ── */
.calc-label {
  color: var(--light-gray);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
  margin-bottom: .65rem;
}

.calc-size-card {
  border: 2px solid var(--dark-3);
  border-radius: 10px;
  background: var(--dark-3);
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  transition: all .2s;
  text-align: center;
  user-select: none;
}

.calc-size-card:hover { border-color: rgba(249,115,22,.5); }

.calc-size-card.selected {
  border-color: var(--orange);
  background: rgba(249,115,22,.1);
}

.calc-size-card .size-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--white);
  line-height: 1;
}

.calc-size-card.selected .size-num { color: var(--orange); }
.calc-size-card .size-label { font-size: .8rem; color: var(--gray); margin-top: .2rem; }

.calc-dur-btn {
  background: var(--dark-3);
  border: 1px solid #3d3d3d;
  color: var(--light-gray);
  border-radius: 6px;
  padding: .55rem 1rem;
  font-size: .82rem;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
  flex: 1;
  text-align: center;
}

.calc-dur-btn:hover { border-color: rgba(249,115,22,.5); color: var(--white); }

.calc-dur-btn.selected {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  font-weight: 600;
}

.addon-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .65rem 0;
  border-bottom: 1px solid var(--dark-3);
  font-size: .88rem;
}

.addon-row:last-child { border-bottom: none; }
.addon-row .addon-name { color: var(--light-gray); }
.addon-row .addon-rate { color: var(--gray); font-size: .78rem; margin-top: .1rem; }

.addon-counter {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.addon-counter button {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: 1px solid #3d3d3d;
  background: var(--dark-3);
  color: var(--light-gray);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  transition: all .15s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.addon-counter button:hover { border-color: var(--orange); color: var(--orange); }
.addon-counter .qty { min-width: 24px; text-align: center; color: var(--white); font-weight: 600; }

.price-breakdown-box {
  background: var(--dark-3);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
}

.breakdown-row {
  display: flex;
  justify-content: space-between;
  font-size: .88rem;
  padding: .3rem 0;
  color: var(--light-gray);
}

.breakdown-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #3d3d3d;
  margin-top: .75rem;
  padding-top: .75rem;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
}

.breakdown-total .total-price { color: var(--orange); font-size: 1.4rem; }

.estimate-badge {
  background: rgba(249,115,22,.1);
  border: 1px solid rgba(249,115,22,.3);
  border-radius: 8px;
  padding: .85rem 1.25rem;
  margin-bottom: 1.5rem;
  font-size: .88rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

/* ── Photo Carousel ── */
#gallery {
  padding: 6rem 0;
  background: var(--dark);
}

.carousel-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
  border: 1px solid var(--dark-3);
}

.carousel-item img {
  height: 540px;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.carousel-caption {
  background: linear-gradient(transparent, rgba(15,15,15,.85));
  padding: 2rem;
  text-align: left;
}

.carousel-caption h5 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  margin: 0;
}

.carousel-control-prev,
.carousel-control-next {
  width: 4rem;
  background: rgba(249,115,22,.15);
  transition: background .2s;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: rgba(249,115,22,.4);
}

.carousel-indicators [data-bs-target] {
  background-color: var(--orange);
  width: 30px;
  height: 3px;
  border-radius: 2px;
}

/* ── Why Choose Us ── */
#why-us {
  padding: 6rem 0;
  background: var(--black);
}

.why-feature {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  align-items: flex-start;
}

.why-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: rgba(249,115,22,.12);
  border: 1px solid rgba(249,115,22,.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.why-feature h5 {
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: .35rem;
}

.why-feature p {
  color: var(--light-gray);
  font-size: .88rem;
  line-height: 1.6;
  margin: 0;
}

/* ── Parallax Mid-Section ── */
.parallax-section {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.parallax-section .parallax-bg {
  position: absolute;
  inset: -20%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.parallax-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15,15,15,.82);
}

.parallax-section .parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.parallax-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,.5);
}

.parallax-section p {
  font-size: 1.1rem;
  color: var(--light-gray);
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* ── Service Area ── */
#service-area {
  padding: 6rem 0;
  background: var(--dark);
}

.area-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: .75rem;
  margin-top: 1.5rem;
}

.area-list li {
  background: var(--dark-2);
  border: 1px solid var(--dark-3);
  border-radius: 6px;
  padding: .6rem 1rem;
  font-size: .85rem;
  color: var(--light-gray);
  display: flex;
  align-items: center;
  gap: .5rem;
  transition: border-color .2s;
}

.area-list li:hover { border-color: var(--orange); color: var(--white); }
.area-list li::before { content: '📍'; font-size: .75rem; }

/* ── Footer ── */
footer {
  background: var(--black);
  border-top: 1px solid var(--dark-3);
  padding: 4rem 0 2rem;
}

.footer-brand {
  line-height: 0;
  margin-bottom: .75rem;
}

.footer-brand img {
  height: 72px;
  width: auto;
}

.footer-tagline {
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 1.25rem;
}

.footer-contact p {
  font-size: .9rem;
  color: var(--light-gray);
  margin-bottom: .4rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}

.footer-contact i { color: var(--orange); width: 16px; }

.footer-heading {
  font-family: var(--font-head);
  font-size: .9rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li { margin-bottom: .4rem; }

.footer-links a {
  color: var(--light-gray);
  font-size: .88rem;
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: .4rem;
}

.footer-links a::before {
  content: '›';
  color: var(--orange);
}

.footer-links a:hover { color: var(--orange); }

.social-links {
  display: flex;
  gap: .75rem;
  margin-top: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--dark-2);
  border: 1px solid var(--dark-3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-gray);
  font-size: 1rem;
  transition: all .25s;
}

.social-link:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--dark-3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: .8rem;
  color: var(--gray);
  margin: 0;
}

.footer-bottom a { color: var(--orange); font-size: .8rem; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  position: relative;
  padding: 10rem 0 5rem;
  overflow: hidden;
  background: var(--dark);
}

.page-hero-bg {
  position: absolute;
  inset: -20%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,15,15,.9) 0%, rgba(15,15,15,.7) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--white);
  line-height: 1;
}

.breadcrumb {
  background: none;
  padding: 0;
  margin: .75rem 0 0;
}

.breadcrumb-item, .breadcrumb-item a {
  color: var(--gray);
  font-size: .82rem;
  letter-spacing: .05em;
}

.breadcrumb-item.active { color: var(--orange); }
.breadcrumb-item + .breadcrumb-item::before { color: var(--dark-3); }

/* ── Team / About cards ── */
.value-card {
  background: var(--dark-2);
  border: 1px solid var(--dark-3);
  border-radius: 10px;
  padding: 2rem 1.5rem;
  text-align: center;
  height: 100%;
  transition: all .3s;
}

.value-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
}

.value-card .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.value-card h5 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: .5rem;
}

.value-card p {
  font-size: .85rem;
  color: var(--light-gray);
  margin: 0;
  line-height: 1.6;
}

/* ── Contact Page ── */
.contact-info-card {
  background: var(--dark-2);
  border: 1px solid var(--dark-3);
  border-radius: 10px;
  padding: 1.75rem;
  height: 100%;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: border-color .3s;
}

.contact-info-card:hover { border-color: rgba(249,115,22,.4); }

.contact-info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(249,115,22,.12);
  border: 1px solid rgba(249,115,22,.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.contact-info-text h6 {
  color: var(--orange);
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .25rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.contact-info-text p, .contact-info-text a {
  color: var(--white);
  font-size: .95rem;
  margin: 0;
}

.form-embed-wrapper {
  background: var(--dark-2);
  border: 1px solid var(--dark-3);
  border-radius: 12px;
  padding: 2.5rem;
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

.form-embed-wrapper h3 {
  font-size: 1.75rem;
  margin-bottom: .5rem;
}

/* ── AOS custom easing ── */
[data-aos="fade-up"]     { transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94); }
[data-aos="fade-right"]  { transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94); }
[data-aos="zoom-in"]     { transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94); }

/* ── Floating CTA phone button (mobile) ── */
.float-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  display: none;
}

@media (max-width: 768px) {
  .float-cta { display: block; }
  .hero-bg { background-attachment: scroll; }
  .parallax-section .parallax-bg { background-attachment: scroll; }
  .page-hero-bg { background-attachment: scroll; }
  .carousel-item img { height: 360px; }
}

.float-cta a {
  background: var(--orange);
  color: var(--white);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 20px var(--orange-glow);
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(249,115,22,.6); }
  70%  { box-shadow: 0 0 0 16px rgba(249,115,22,0); }
  100% { box-shadow: 0 0 0 0 rgba(249,115,22,0); }
}

/* ── Misc ── */
::selection { background: var(--orange); color: var(--white); }

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--dark-3), transparent);
  margin: 0;
  border: none;
}

img.lazy { opacity: 0; transition: opacity .4s; }
img.lazy.loaded { opacity: 1; }
