/* 
 * Team Removals AU - Premium Australian Moving Company CSS Stylesheet
 * Custom Typography, HSL & Hex Color Palettes, Responsive Utilities, and Custom Hover Animations.
 */

@import url('https://fonts.googleapis.com/css2?family=Playball&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Tokens */
  --primary-color: #6E1A24;        /* Burgundy (Brand Color) */
  --primary-rgb: 110, 26, 36;
  --secondary-color: #0B1E38;      /* Dark Navy Blue */
  --secondary-rgb: 11, 30, 56;
  --accent-color: #D4AF37;         /* Gold Accent */
  --accent-hover: #C5A880;
  --bg-light: #F8F8F8;             /* Light Gray Background */
  --bg-white: #FFFFFF;             /* Pure White */
  --text-dark: #2D3748;            /* Charcoal Body Text */
  --text-muted: #718096;           /* Gray Text */
  --border-color: #E2E8F0;         /* Light Border */
  
  /* Layout Tokens */
  --max-width: 1400px;
  --radius-lg: 20px;
  --radius-md: 12px;
  
  /* Shadows & Transitions */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.08);
  --shadow-premium: 0 10px 30px rgba(11, 30, 56, 0.08);
  --shadow-premium-hover: 0 20px 40px rgba(11, 30, 56, 0.15);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;
}

/* Base resets & styles */
body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* General Layout Elements */
.container-custom {
  max-width: var(--max-width);
 margin:auto;
 padding:auto;
}
.navbar-div {
  width:100%;
  display:flex;
  justify-content: space-evenly;
}

.section-padding {
  padding-top: 2rem;
  padding-bottom: 1rem;
}

@media (max-width: 768px) {
  .section-padding {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

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

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

/* Title & Typography Overrides */
h1, h2, h3, h4, h5, h6 {
  color: var(--secondary-color);
  font-weight: 700;
}

.text-red { color: var(--primary-color); }
.text-navy { color: var(--secondary-color); }
.text-gold { color: var(--accent-color); }

.bg-red { background-color: var(--primary-color); }
.bg-navy { background-color: var(--secondary-color); }

/* Common UI Elements */
.rounded-20 {
  border-radius: var(--radius-lg);
}

.shadow-premium {
  box-shadow: var(--shadow-premium);
}

.btn-custom-red {
  background-color: var(--primary-color);
  color: var(--bg-white);
  font-weight: 600;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  border: 2px solid transparent;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(110, 26, 36, 0.2);
}
.btn-custom-red:hover {
  background-color: var(--secondary-color);
  color: var(--bg-white);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(11, 30, 56, 0.25);
}

.btn-custom-outline {
  border: 2px solid var(--secondary-color);
  color: var(--secondary-color);
  background: transparent;
  font-weight: 600;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  transition: var(--transition-smooth);
}
.btn-custom-outline:hover {
  background-color: var(--secondary-color);
  color: var(--bg-white);
  transform: translateY(-3px);
}

/* Floating contact button for mobile */
.floating-call-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: var(--primary-color);
  color: var(--bg-white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 25px rgba(var(--primary-rgb), 0.4);
  z-index: 1000;
  transition: var(--transition-smooth);
  font-size: 1.5rem;
  animation: pulse 2s infinite;
}
.floating-call-btn:hover {
  background-color: var(--secondary-color);
  color: var(--accent-color);
  transform: scale(1.1);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0.4); }
  70% { box-shadow: 0 0 0 20px rgba(var(--primary-rgb), 0); }
  100% { box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0); }
}

/* ----------------------------------------------------
 * 1. Sticky Header & Announcement Bar
 * ---------------------------------------------------- */
.announcement-bar {
  display:block;
  background: linear-gradient(90deg, #380005 0%, var(--primary-color) 50%, #380005 100%);
  color: var(--bg-white);
  border-bottom: 2px solid var(--accent-color);
  font-size: 0.95rem;
  padding: 8px 0;
  position: relative;
  overflow: hidden;
}

.announcement-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  width: 100%;
}

.gold-line {
  display: inline-block;
  height: 1px;
  width: 80px;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0) 0%, rgba(212, 175, 55, 1) 100%);
  position: relative;
}

.gold-line.right-line {
  background: linear-gradient(90deg, rgba(212, 175, 55, 1) 0%, rgba(212, 175, 55, 0) 100%);
}

.gold-line::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  background-color: var(--accent-color);
  transform: rotate(45deg);
}

.gold-line.right-line::after {
  left: 0;
  right: auto;
}

.gold-emblem {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--accent-color);
  background-color: rgba(212, 175, 55, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  position: relative;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
  animation: emblemPulse 2.5s infinite;
}

.emblem-dollar-sign {
  position: absolute;
  font-size: 0.65rem;
  font-weight: 800;
  color: #FFE485;
  top: 14px;
  left: 17px;
}

@keyframes emblemPulse {
  0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
  70% { box-shadow: 0 0 0 8px rgba(212, 175, 55, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.announcement-text {
  font-weight: 500;
  letter-spacing: 0.2px;
}

.offers-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(180deg, #FFEAB5 0%, #D4AF37 100%);
  color: #3D2300;

  font-weight: 700;
  font-size: 0.85rem;
  line-height: 1;

  padding: 10px 18px;
  border: 1px solid #FFE485;
  border-radius: 8px;

  box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.15),
    0 2px 8px rgba(212, 175, 55, 0.25);

  transform-origin: center;
  animation: heartbeat 1.5s ease-in-out infinite;

  transition: all 0.3s ease;
}

.offers-badge:hover {
  animation-play-state: paused;

  transform: translateY(-2px);

  box-shadow:
    0 10px 24px rgba(212, 175, 55, 0.35),
    0 0 22px rgba(255, 228, 133, 0.7);
}

@keyframes heartbeat {

  0% {
    transform: scale(1);
  }

  14% {
    transform: scale(1.08);
  }

  28% {
    transform: scale(1);
  }

  42% {
    transform: scale(1.12);
  }

  70% {
    transform: scale(1);
  }

  100% {
    transform: scale(1);
  }
}

.main-navbar {
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-smooth);
  padding: 12px 10px;
}

.main-navbar.sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  box-shadow: var(--shadow-sm);
  padding: 8px 20px;
}

/* Overlapping TR Brand Logo */
.navbar-brand {
  transition: var(--transition-smooth);
}
.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-smooth);
}
.logo-img:hover {
  transform: scale(1.02);
}

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

.logo-team {
  font-size: 1.55rem;
  font-weight: 700;
  color: #333333;
  letter-spacing: -0.5px;
}

.logo-removals {
  font-size: 1.55rem;
  font-weight: 700;
  color: #6E1A24;
  letter-spacing: -0.5px;
}

.logo-wings {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  margin-left: 5px;
}

.logo-wings .wing {
  display: block;
  height: 2px;
  background-color: #6E1A24;
  border-radius: 1px;
}
.logo-wings .wing:nth-child(1) { width: 14px; }
.logo-wings .wing:nth-child(2) { width: 11px; }
.logo-wings .wing:nth-child(3) { width: 8px; }

.logo-subtext {
  font-size: 0.75rem;
  font-style: italic;
  color: #6E1A24;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-top: -5px;
  text-align: left;
}

/* Nav Menu links and active underlines */
.navbar-nav .nav-link {
  color: #2D3748;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 12px !important;
  position: relative;
  transition: var(--transition-fast);
  white-space: nowrap !important;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 12px;
  right: 12px;
  height: 3px;
  background-color: #6E1A24;
  transform: scaleX(0);
  transition: var(--transition-smooth);
  border-radius: 4px;
}

.navbar-nav .nav-link:hover {
  color: #6E1A24;
}

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

.navbar-nav .nav-link.active {
  color: #6E1A24 !important;
}

/* Phone Block */
.nav-phone-container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #4A0E13;
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1rem;

  box-shadow: 0 4px 8px rgba(74, 14, 19, 0.25);

animation: float 2.2s ease-in-out infinite;
}

@keyframes float{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-4px); }
}

.phone-icon-btn:hover {
  background-color: #6E1A24;
  color: var(--bg-white);
  transform: scale(1.05);
}

.phone-number-text {
  display: inline-block;

  font-size: 1.50rem;
  font-weight: 700;
  letter-spacing: -0.2px;
  color: #6E1A24;

  /*animation: premiumBlink 1s ease-in-out infinite;*/
}

@keyframes premiumBlink {

  0%, 100% {
    opacity: 1;

    transform: scale(1);

    text-shadow:
      0 0 0 rgba(110, 26, 36, 0);
  }

  50% {
    opacity: 0.75;

    transform: scale(1.06);

    text-shadow:
      0 0 8px rgba(110, 26, 36, 0.35),
      0 0 18px rgba(110, 26, 36, 0.2),
      0 0 28px rgba(110, 26, 36, 0.12);
  }
}

.phone-number-text:hover {
  color: var(--secondary-color);
}

/* ----------------------------------------------------
 * 2. Hero Section & Quick Quote Form
 * ---------------------------------------------------- */
.hero-section{
  position: relative;
  background: url('assets/images/hero_truck.png') no-repeat center center / cover;
  height: 584px;
  display: flex;
  align-items: center;
  color: var(--text-dark);
  padding: 6.5rem 0;
  margin-top: 0;
  overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.80) 40%, rgba(255, 255, 255, 0.45) 70%, rgba(255, 255, 255, 0.10) 100%);
    z-index: 1;
}

.hero-section > *{
  position: relative;
  z-index: 2;
}

.hero-tagline-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gold-dash {
color: #3f0309;
  font-weight: 700;
  font-size: 1.25rem;
}

.hero-tagline {
  color: #E28743;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0;
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  color: #1A1A1A;
  letter-spacing: -3px;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 500;
  color: #2D3748;
  
}
.hero-p {
      color: #0b1e38;
      font-weight: 700;
    font-size: 20px;
    letter-spacing: 1px;
 
}


/* Hero Rating Cards */
.hero-ratings-row {
  max-width: 540px;
  width: 100%;
}

.rating-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 20px;
  padding: 1.1rem 1.5rem;
  flex: 1 1 220px;
  display: flex;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: var(--transition-smooth);
}

.rating-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-premium-hover);
  border-color: rgba(212, 175, 55, 0.5);
}

.google-logo-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.55rem;
  letter-spacing: -1.2px;
}

.google-logo-text .g-blue { color: #4285F4; }
.google-logo-text .o-red { color: #EA4335; }
.google-logo-text .o-yellow { color: #FBBC05; }
.google-logo-text .l-green { color: #34A853; }
.google-logo-text .e-red { color: #EA4335; }

.rating-info .stars {
  color: #FBBC05;
  font-size: 0.95rem;
  margin-bottom: 2px;
  display: flex;
  gap: 2px;
}

.rating-info .rating-text {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}

.happy-icon-wrapper {
  color: #EA4335;
  font-size: 1.7rem;
  background-color: rgba(234, 67, 53, 0.08);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.happy-info .happy-count {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1.2;
}

.happy-info .happy-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* Quick Quote Form Card */
.quote-card {
  background-color: var(--bg-white);
  border-radius: 24px;
  padding: 3rem 2.2rem 2.2rem 2.2rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
  border: 2px solid var(--accent-color); /* Gold outline border */
  color: var(--text-dark);
  position: relative;
}

/* Clipboard emblem overlapping top border */
.quote-header-emblem {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-color); /* Brand Burgundy */
  border: 2px solid var(--accent-color); /* Gold outline */
  color: #FFFFFF; /* White icon inside */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  box-shadow: 0 6px 15px rgba(var(--primary-rgb), 0.3);
}

.quote-title-wrapper {
  margin-bottom: 1.25rem;
}

.quote-title-sub {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-color); /* Gold "GET YOUR" text as in mockup */
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 2px;
  text-transform: capitalize;
}

.quote-title-main {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 4px;
  letter-spacing: -0.5px;
  text-transform: capitalize;
}
.free-quote-animate{
    display:inline-block;
    animation:glowText 1.5s infinite alternate;
}

@keyframes glowText{
    from{
        text-shadow:0 0 0 rgba(255,0,0,0);
    }
    to{
        text-shadow:
            0 0 8px rgba(255,0,0,.6),
            0 0 16px rgba(255,0,0,.4);
    }
}

/* Diamond Divider */
.quote-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.quote-divider .divider-line {
  height: 1.5px;
  background-color: var(--accent-color); /* Gold divider line */
  width: 40px;
}

.quote-divider .divider-diamond {
  color: var(--accent-color);
  font-size: 0.6rem;
}

/* Fields Styling */
.form-control {
  border-radius: 8px;
  padding: 0.75rem 1rem;
  border: 1.5px solid #E2E8F0;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition-fast);
  background-color: #FFFFFF !important;
  color: #2D3748;
  height: 48px;
}

.form-control::placeholder {
  color: #718096;
  opacity: 0.8;
}

.form-control:focus {
  border-color: #D4AF37;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
  background-color: #FFFFFF !important;
}

.form-group-icon {
  position: relative;
}

.form-group-icon i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-color); /* Gold icons inside form inputs */
  font-size: 0.95rem;
  pointer-events: none;
}

.form-group-icon .form-control {
  padding-left: 2.5rem;
}

/* Submit Button */
.btn-submit-quote {
  background: linear-gradient(180deg, var(--primary-color) 0%, #4A0E13 100%);
  color: var(--bg-white);
  border: none;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  padding: 0.9rem;
  border-radius: 12px;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.2);
}

.btn-submit-quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.35);
  background: linear-gradient(180deg, #8E2531 0%, #4A0E13 100%);
  color: var(--bg-white);
}

/* Golden Dot Grid Pattern with radial mask fade */
.gold-dot-grid {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(#D4AF37 1.2px, transparent 1.2px);
  background-size: 8px 8px;
  opacity: 0.35;
  pointer-events: none;
  border-bottom-right-radius: 20px;
  mask-image: radial-gradient(circle at bottom right, black, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at bottom right, black, transparent 80%);
}

/* Responsive fixes */
@media (max-width: 991px) {

  .hero-title {
    font-size: 2.5rem;
  }
  .badge-container {
    justify-content: center;
  }
  .quote-card {
    margin-top: 3rem;
  }
}

/* ----------------------------------------------------
 * 3. About Us Section
 * ---------------------------------------------------- */
/* ----------------------------------------------------
 * 3. About Us Section
 * ---------------------------------------------------- */
.about-section {
  background-color: var(--bg-white); /* Plain white page background as in the image */
  position: relative;
  overflow: hidden;
}

/* Custom full-bleed about sidebar panel */
.about-sidebar-panel {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-sidebar-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.about-sidebar-content {
     position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    padding: 80px 10px 10px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: initial;
}

@media (min-width: 1400px) {
  .about-sidebar-panel {
    width: calc((100vw - 1400px) / 2 + 250px);
  }
  .about-sidebar-content {
    padding-left: calc((98vw - 1387px) / 8 + 0px);
    width: 80% !important;
    margin-right: auto !important;
  }
}

@media (min-width: 992px) and (max-width: 1399.98px) {
  .about-sidebar-panel {
    width: 25vw;
  }
  .about-sidebar-content {
    padding-left: 20px;
    padding-right: 20px;
    width: 80% !important;
    margin-right: auto !important;
  }
}

@media (max-width: 991.98px) {
  .about-sidebar-panel {
 position: relative;
        width: 100%;
        height: auto;
        margin-bottom: 10px;
        padding: 22px 0px;
    border-radius: 20px;
    background: linear-gradient(180deg, #4A0E13 0%, #30090D 100%);
    border: 1px solid rgba(212, 175, 55, 0.25);
  }
  .about-sidebar-bg {
    display: none;
  }
  .about-sidebar-content {
    padding: 0;
  }
}





/* ======================================================
   About Sidebar - Mobile Responsive (Keep SVG Shape)
   ====================================================== */

@media (max-width: 767.98px) {
    
    svg.about-sidebar-bg {
    display: none;
}
    
hr.navy-divider-dotted.mb-4 {
    margin: 0;
}
footer.custom-footer {
    padding-bottom: 42px !important;
}
    
.reviews-slider-controls.d-flex.align-items-center.justify-content-center.mt-3 {
display: none;
}
.swiper-pagination.reviews-dots.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
    display: none;
}
    
    
 
    .about-bottom-card-badge {
    top: 319px;
    left: 45%;
}
    
  /* Sidebar panel - full width with the SVG shape */
  /* .about-sidebar-panel {
    position: relative !important;
    width: 100% !important;
    margin-bottom: 2rem;
    border-radius: 16px;
    overflow: hidden;
    min-height: 380px !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  } */

  /* SVG background - scales with the container */
  .about-sidebar-bg {
    width: 100% !important;
    height: 100% !important;
    min-height: 380px !important;
    display: block;
    /* Ensure the SVG fills the space */
    position: absolute;
    top: 0;
    left: 0;
  }

  /* Content overlay - centered with good spacing */
  .about-sidebar-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
  }

  /* --- Wreath Badge (centered, visible) --- */
  .wreath-badge-container {
   margin-bottom:10px;
  }

  .wreath-svg {
    width: 100%;
    height: 100%;
  }

  .wreath-badge-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    line-height: 1.2;
  }

  .wreath-badge-text .trusted-by {
    font-size: 0.65rem !important;
    letter-spacing: 0.5px;
    color: #D4AF37;
    display: block;
    font-weight: 400;
    text-transform: uppercase;
  }

  .wreath-badge-text .number {
    font-size: 1.6rem !important;
    font-weight: 800;
    color: #FFFFFF;
    display: block;
    letter-spacing: -0.5px;
    margin: 1px 0;
  }

  .wreath-badge-text .happy {
    font-size: 0.6rem !important;
    color: #D4AF37;
    display: inline-block;
    font-weight: 400;
    text-transform: uppercase;
  }

  .wreath-badge-text .customers {
    font-size: 0.6rem !important;
    color: #D4AF37;
    display: inline-block;
    font-weight: 400;
    text-transform: uppercase;
  }

  /* --- Features List (horizontal row) --- */
  .sidebar-features-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  
    flex-wrap: wrap;
    width: 100%;
    max-width: 450px;
    margin-top: 0.25rem;
  }



  .sidebar-feature-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 0.3rem;
    color: #D4AF37;
    flex-shrink: 0;
  }

  

  .sidebar-feature-text {
    font-size: 0.72rem !important;
    font-weight: 500 !important;
    color: #FFFFFF !important;
    line-height: 1.25 !important;
    text-align: center !important;
  }

  /* Show line breaks on mobile */
  .sidebar-feature-text br {
    display: inline !important;
  }
}

/* --- Extra Small Mobile (up to 400px) --- */
@media (max-width: 400px) {

  .about-sidebar-bg {
    min-height: 340px !important;
  }

  .wreath-badge-container {
    width: 100px !important;
    height: 100px !important;
  }

  .wreath-badge-text .number {
    font-size: 1.3rem !important;
  }

  .wreath-badge-text .trusted-by {
    font-size: 0.55rem !important;
  }

  .wreath-badge-text .happy,
  .wreath-badge-text .customers {
    font-size: 0.5rem !important;
  }



  .sidebar-feature-item {
    min-width: 65px !important;
    max-width: 90px !important;
    padding: 0.5rem 0.3rem !important;
  }

  .sidebar-feature-icon {
    width: 30px !important;
    height: 30px !important;
  }



  .sidebar-feature-text {
    font-size: 0.6rem !important;
  }
}

/* --- Tablet (768px - 991px) - keep original layout --- */
@media (min-width: 768px) and (max-width: 991.98px) {
  .sidebar-features-list {
    flex-direction: column !important;
    gap: 0.75rem !important;
  }

  .sidebar-feature-item {
    flex-direction: row !important;
    text-align: left !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0.4rem 0.75rem !important;
    background: rgba(255, 255, 255, 0.06) !important;
    border-radius: 8px !important;
  }

  .sidebar-feature-icon {
    width: 32px !important;
    height: 32px !important;
    margin-bottom: 0;
  }

  .sidebar-feature-icon svg {
    width: 26px !important;
    height: 26px !important;
  }

  .sidebar-feature-text {
    font-size: 0.7rem !important;
    text-align: left !important;
  }
}
.floating-quote-btn{
    position: fixed;
    right: -45px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    z-index: 9999;

    background: #5f151d;
    color: #fff;
    text-decoration: none;
    padding: 14px 30px;
    font-weight: 700;
    border-radius: 12px 12px 0 0;
}

/* Hide on mobile & tablet */






.wreath-badge-container {
  position: relative;
  width: 140px;
  height: 140px;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media (max-width: 991px){
  .wreath-badge-container{
    margin-bottom: 14px;
  }
    .floating-quote-btn{
        display: none;
    }
}
.wreath-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-5deg);
}

.wreath-badge-text {
  z-index: 2;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wreath-badge-text .trusted-by {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #FFE485;
  text-transform: uppercase;
}

.wreath-badge-text .number {
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1.1;
  color: #FFFFFF;
  margin: 1px 0;
}

.wreath-badge-text .happy {
  font-size: 0.7rem;
  font-weight: 700;
  color: #FFE485;
  text-transform: uppercase;
}

.wreath-badge-text .customers {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #FFFFFF;
  text-transform: uppercase;
}

.sidebar-features-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 3rem;
  margin-top: 1.5rem;
}

.sidebar-feature-item {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 1.25rem 0;
  border-bottom: 1.5px solid rgba(212, 175, 55, 0.15); /* Thin gold border divider */
}




.sidebar-feature-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D4AF37; /* Gold color */
  flex-shrink: 0;
}

.sidebar-feature-text {
  font-size: 1.05rem; /* Larger, premium text sizing */
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.35;
}

/* Corner Decorations */
.about-decor-tl {
  position: absolute;
  top: 0;
  left: 0;
  width: 220px;
  height: 150px;
  z-index: 1;
  pointer-events: none;
}

@media (min-width: 1400px) {
  .about-decor-tl {
    left: calc((100vw - 1400px) / 2 + 350px);
  }
}
@media (min-width: 992px) and (max-width: 1399.98px) {
  .about-decor-tl {
    left: 25vw;
  }
}

.about-decor-tr {
  position: absolute;
  top: 0;
  right: 0;
  width: 220px;
  height: 150px;
  z-index: 1;
  pointer-events: none;
}

.about-dot-grid {
  position: absolute;
  top: 15%;
  right: 25px;
  width: 80px;
  height: 160px;
  background-image: radial-gradient(#D4AF37 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  opacity: 0.35;
  pointer-events: none;
  z-index: 1;
}

/* Gold Title Dividers */
.about-title-divider, .promise-title-divider {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1.5rem;
}

.about-title-divider {
  justify-content: flex-start;
}

.promise-title-divider {
  justify-content: center;
}

.about-title-divider .divider-line, .promise-title-divider .divider-line {
  height: 1.5px;
  background-color: #D4AF37;
  width: 40px;
}

.about-title-divider .divider-circle {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #D4AF37;
}

.promise-title-divider svg {
  color: #D4AF37;
  fill: #D4AF37;
}

/* Our Promise of Care Card */
.promise-care-card {
  background-color: var(--bg-white);
  border-radius: 20px;
  padding: 3.5rem 2rem 2.5rem 2rem;
  box-shadow: var(--shadow-premium);
  border: 1px solid rgba(212, 175, 55, 0.45);
  position: relative;
  height: 100%;
}

.promise-care-badge {
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #6E1A24;
  border: 2px solid #D4AF37;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 10px rgba(110, 26, 36, 0.25);
}

/* Three Bottom Image Cards */
.about-bottom-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-premium);
  overflow: visible;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1.5px solid rgba(212, 175, 55, 0.35); /* Elegant gold border framing */
  transition: var(--transition-smooth);
  padding-bottom: 10px;
  position: relative;
}

.about-bottom-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-premium-hover);
  border-color: rgba(110, 26, 36, 0.4);
}

.about-bottom-card-img-wrapper {
  position: relative;
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
  overflow: hidden;
  height: 220px;
}

.about-bottom-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.about-bottom-card:hover .about-bottom-card-img-wrapper img {
  transform: scale(1.05);
}

.about-bottom-card-badge {
  position: absolute;
  top: 220px; /* Aligns exactly with the bottom edge of the image wrapper */
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #6E1A24;
  border: 2px solid #D4AF37; /* Gold border around badge as in the image */
  color: #FFE485;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  z-index: 5;
}

.about-bottom-card-body {
  padding: 2.2rem 1.2rem 0.5rem 1.2rem;
  text-align: center;
  flex-grow: 1;
}

.about-bottom-card-caption {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0;
}


/* ----------------------------------------------------
 * 4. Why Choose Us Section
 * ---------------------------------------------------- */
.why-section {
  position: relative;
  overflow: hidden;
}

/* Reusable Dot Grid Accents */
.why-section::before {
  content: '';
  position: absolute;
  top: 15%;
  left: 20px;
  width: 90px;
  height: 180px;
  background-image: radial-gradient(#D4AF37 1.2px, transparent 1.2px);
  background-size: 10px 10px;
  opacity: 0.25;
  z-index: 0;
  pointer-events: none;
}

.why-section::after {
  content: '';
  position: absolute;
  bottom: 15%;
  right: 20px;
  width: 90px;
  height: 180px;
  background-image: radial-gradient(#D4AF37 1.2px, transparent 1.2px);
  background-size: 10px 10px;
  opacity: 0.25;
  z-index: 0;
  pointer-events: none;
}

.why-subheading-wrapper {
  margin-bottom: 0.5rem;
}

.why-subheading-wrapper .gold-line {
  height: 1.5px;
  background-color: #D4AF37;
  width: 50px;
}

.why-subheading-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: #D4AF37;
  letter-spacing: 2px;
}

.why-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--secondary-color);
}

.why-intro-text {
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 780px;
  margin: 0 auto;
  padding:0 10px;
}

.why-cards-list {
  position: relative;
  z-index: 1;
}

.why-card-pill {
  background-color: var(--bg-white);
  border-radius: 20px;
  padding: 1.25rem 1.75rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: var(--transition-smooth);
}

.why-card-pill:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(110, 26, 36, 0.15);
}

/* Card Accent Borders */
.card-gold {
  border-right: 5px solid #F76B1C;
}

.card-navy {
  border-right: 5px solid #0B1E38;
}

.card-green {
  border-right: 5px solid #28a745;
}

.card-pink {
  border-right: 5px solid #6E1A24;
}

.card-orange {
  border-right: 5px solid #FD7E14;
}

/* Icon Gradient Containers */
.why-card-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #FFFFFF;
}

.icon-orange-gradient {
  background: linear-gradient(135deg, #FAD961 0%, #F76B1C 100%);
}

.icon-navy-gradient {
  background: linear-gradient(135deg, #1D3D6F 0%, #0B1E38 100%);
}

.icon-green-gradient {
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.icon-pink-gradient {
  background: linear-gradient(135deg, #6E1A24 0%, #6E1A24 100%);
}

.icon-blue-gradient {
   background: linear-gradient(135deg, #c22d2d 0%, #962332 100%);
}

.why-card-content {
  flex-grow: 1;
}

.why-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #6E1A24;
  margin-bottom: 4px;
}

.why-card-text {
  font-size: 0.85rem;
  color: #4A5568;
  line-height: 1.55;
  margin-bottom: 0;
}

/* Symmetrical Right Card */
.why-right-column {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-right-bg-swoosh {
  position: absolute;
  top: -12px;
  right: 8px;
  width: 160px;
  height: 160px;
  background-color: #6E1A24;
  border-radius: 0 24px 0 160px;
  z-index: 1;
  pointer-events: none;
}

.why-right-premium-card {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: var(--shadow-premium);
  border: 1.5px solid #F3EDE2;
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.why-right-img-container {
  position: relative;
  border-radius: 18px;
  /* overflow: hidden; */
  height: 530px;
  background-color: #F8F8F8;
}

.why-right-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-badge-overlap {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 83px;
    height: 83px;
  border-radius: 50%;
  background-color: #6E1A24;
  border: 3px solid #FFFFFF;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(110, 26, 36, 0.2);
  z-index: 5;
}

.why-right-text-container {
  padding: 2rem 1rem 0.5rem 1rem;
  text-align: center;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-right-quote-text {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--secondary-color);
  line-height: 1.6;
}

.peace-of-mind {
  font-family: 'Playball', cursive;
  font-size: 1.6rem;
  color: #6E1A24;
  font-weight: 700;
  display: inline-block;
  margin-left: 3px;
}

/* ----------------------------------------------------
 * 5. Our Services Section
 * ---------------------------------------------------- */
/* ----------------------------------------------------
 * 5. Our Services Section Redesign
 * ---------------------------------------------------- */
.services-section {
  background-color: #FFFFFF;
  padding-top: 2rem;
  padding-bottom: 1rem;
}

/* Subtitle and header formatting matching mockup */
.services-subtitle-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.services-subtitle-line {
  height: 1px;
  background-color: #6E1A24;
  width: 40px;
}

.services-subtitle-text {
  color: #6E1A24;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.services-title-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 0.5rem;
}

.services-divider-line {
  height: 1.5px;
  background-color: #C5A880;
  width: 70px;
  opacity: 0.7;
}

.services-divider-diamond {
  color: #C5A880;
  font-size: 0.75rem;
}

/* Redesigned service card wrapper */
.service-card-new {
  background-color: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1.5px solid #F0F0F0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  padding-top: 6px; /* space for the overlapping icon badge */
}

.service-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(110, 26, 36, 0.08);
  border-color: rgba(110, 26, 36, 0.15);
}

/* Red curved corner highlight at top left */
.service-card-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  border-top: 4px solid #6E1A24;
  border-left: 4px solid #6E1A24;
  border-top-left-radius: 20px;
  z-index: 3;
  pointer-events: none;
}

/* Image wrapper with diagonal top curve */
.service-img-wrapper-new {
  position: relative;
  overflow: hidden;
  height: 190px;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  margin: 0 6px;
  z-index: 1;
}

/* Curved path cutout for the image bottom edge */
.service-img-wrapper-new img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card-new:hover .service-img-wrapper-new img {
  transform: scale(1.08);
}

/* Floating custom icon badge at top center */
.service-icon-badge-new {
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #FFFFFF;
  color: #6E1A24;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  border: 1.5px solid #C5A880;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  z-index: 4;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.service-card-new:hover .service-icon-badge-new {
  background-color: #6E1A24;
  color: #FFFFFF;
  border-color: #6E1A24;
}

/* Card Body text elements */
.service-card-body-new {
  padding: 1.75rem 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.service-card-title-new {
  font-size: 1.25rem;
  font-weight: 700;
  color: #6E1A24;
  margin-bottom: 0.75rem;
}

.service-card-text-new {
  font-size: 0.88rem;
  color: #4A5568;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 1rem;
}

/* Small divider line under description */
.service-card-divider-new {
  width: 30px;
  height: 1.5px;
  background-color: #6E1A24;
  opacity: 0.8;
  margin-top: auto;
}

/* ----------------------------------------------------
 * 6. Choose Your Truck Section
 * ---------------------------------------------------- */
.trucks-section {
  position: relative;
  z-index: 1;
}

.truck-tabs-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 2.5rem;
}

.truck-tab-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  border-radius: 12px;
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  color: var(--secondary-color);
  transition: var(--transition-smooth);
  position: relative;
  min-width: 145px;
  box-shadow: var(--shadow-sm);
}

.truck-tab-btn:hover {
  border-color: #6E1A24;
  color: #6E1A24;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.truck-tab-btn.active {
  background-color: #6E1A24;
  border-color: #6E1A24;
  color: #FFFFFF;
  box-shadow: 0 6px 15px rgba(110, 26, 36, 0.25);
}

/* Tooltip Caret pointing down for active tab selector */
.truck-tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background-color: #6E1A24;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  z-index: 2;
}

.truck-tab-icon {
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}

.truck-tab-label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.tab-num {
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.1;
}

.tab-txt {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  opacity: 0.8;
}



/* Dynamic Active Truck Display Card */
.truck-display-card {
  position:relative;
  background-color: var(--bg-white);
  border-radius: 24px;
  box-shadow: var(--shadow-premium);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
  min-height: 480px;
}
/* .text-start {
  position: absolute;
    top: 1rem;
} */

/* Left portion styles */
.border-bottom-red {
  border-bottom: 4.5px solid #6E1A24;
  display: inline-block;
}

.truck-bg-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 290px;
  height: 290px;
  background: radial-gradient(circle, rgba(252,217,219,0.9) 0%, rgba(252,217,219,0.3) 100%);
  border-radius: 50%;
  z-index: 1;
}

.truck-main-img {
  position: relative;
    z-index: 2;
    top: 27px;
    right: 7%;
    /* left: 0%; */
    height: 354px;
    object-fit: cover;
    transform: scale(1.2);
  transition: transform 0.3s ease;
}

.truck-display-card:hover .truck-main-img {
  transform: scale(1.12);
}

/* Right portion Navy spec card styling */
.truck-spec-navy-card {
  background-color: #0A1C33;
  border-radius: 20px;
  padding: 2.2rem 2rem;
  color: #FFFFFF;
  box-shadow: 0 10px 30px rgba(10, 28, 51, 0.2);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.truck-text {
 position: absolute;
    left: 0;
    top: 1px;

}
.truck-circle-badge {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: #e4232b;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.navy-divider {
  border: 0;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.15);
  margin: 1.5rem 0;
}

.navy-divider-dotted {
  border: 0;
  border-top: 1.5px dotted rgba(255, 255, 255, 0.25);
  margin: 1.5rem 0;
  height: 0;
}

.navy-spec-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.navy-spec-icon-wrapper {
  color: #e4232b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.navy-spec-label {
  font-size: 0.7rem;
  color: #A0AEC0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.navy-spec-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
}

.text-red-custom {
  color: #e4232b;
}

.border-navy-light {
  border-color: rgba(255, 255, 255, 0.15) !important;
}

.btn-quote-navy {
  background: linear-gradient(135deg, #6E1A24 0%, #760010 100%);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 14px;

  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;

  padding: 12px 18px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);

  transition: all 0.35s ease;

  animation: premiumPulse 2s ease-in-out infinite;

  transform-origin: center;
  will-change: transform, box-shadow;
}

.btn-quote-navy {
  position: relative;
  overflow: hidden;

  background: linear-gradient(135deg, #6E1A24 0%, #760010 100%);
  color: #FFFFFF;

  border: 1px solid rgba(255,255,255,.25);
  border-radius: 14px;

  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .5px;

  padding: 12px 18px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  box-shadow:
    0 8px 24px rgba(0,0,0,.18);

  transform-origin: center;

  animation: luxuryBreath 3s ease-in-out infinite;

  transition: all .35s ease;
}

.btn-quote-navy::before{
  content: "";

  position: absolute;
  top: -150%;
  left: -40%;

  width: 40%;
  height: 400%;

  transform: rotate(25deg);

  background: linear-gradient(
    to right,
    transparent,
    rgba(255,255,255,.08),
    rgba(255,255,255,.45),
    rgba(255,255,255,.08),
    transparent
  );

  animation: shineMove 3.5s linear infinite;
}

.btn-quote-navy:hover{
  animation-play-state: paused;

  transform: translateY(-4px);

  box-shadow:
    0 18px 40px rgba(110,26,36,.35),
    0 0 28px rgba(118,0,16,.22);
}

@keyframes luxuryBreath {

  0%,100%{
    transform: translateY(0) scale(1);

    box-shadow:
      0 8px 24px rgba(0,0,0,.18);
  }

  50%{
    transform: translateY(-2px) scale(1.04);

    box-shadow:
      0 16px 34px rgba(110,26,36,.35),
      0 0 20px rgba(118,0,16,.18);
  }
}

@keyframes shineMove {

  0%{
    left: -60%;
  }

  100%{
    left: 160%;
  }
}

.btn-quote-navy:hover {
  background: linear-gradient(135deg, #C5001A 0%, #6E1A24 100%);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 6px 20px rgba(110, 26, 36, 0.4);
  color: #FFFFFF;
}

.quote-btn-arrow-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #FFFFFF;
  color: #6E1A24;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.btn-quote-navy:hover .quote-btn-arrow-circle {
  transform: translateX(3px);
}

/* ----------------------------------------------------
 * 7. Our Move Day Section
 * ---------------------------------------------------- */
.moveday-section {
  background-color: var(--bg-white);
}

/* ----------------------------------------------------
 * 7. Our Move Day Section Redesign
 * ---------------------------------------------------- */
.moveday-section {
  position: relative;
  background-color: #FFFFFF;
  overflow: hidden;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

/* Red Slanted Dot Accent */
.moveday-bg-decoration {
    position: absolute;
    left: 100px;
    top: 23%;
    bottom: 0;
    width: 610px;
    background-color: #6E1A24;
    transform: skewX(-20deg) translateX(-180px);
    z-index: 1;
    pointer-events: none;
}

.moveday-bg-decoration::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  opacity: 0.8;
}

.moveday-section .container-custom {
  position: relative;
  z-index: 2;
}

/* Title divider for moveday */
.moveday-divider-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.moveday-divider-line {
  height: 1.5px;
  background-color: #6E1A24;
  width: 60px;
  opacity: 0.8;
}

.moveday-divider-truck {
  color: #6E1A24;
  font-size: 1.15rem;
}

/* Image container */
.moveday-img-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
  border: 1px solid #E2E8F0;
  height: 100%;
}

.moveday-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Right Side Premium Card */
.moveday-premium-card {
  background: #FFFFFF;
  border-radius: 28px;
  padding: 3rem 2.5rem;
  border: 1.5px solid #F0F0F0;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04);
}

.moveday-block {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.moveday-badge-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.moveday-badge-circle.badge-red {
  background: linear-gradient(135deg, #6E1A24 0%, #760010 100%);
  color: #FFFFFF;
}

.moveday-badge-circle.badge-navy {
  background: linear-gradient(135deg, #0B1E38 0%, #050E1A 100%);
  color: #FFFFFF;
}

.moveday-block-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #0B1E38;
  margin-bottom: 1.25rem;
  letter-spacing: -0.2px;
}

/* List details */
.moveday-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.moveday-list li {
  display: flex;
  align-items: flex-start;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #4A5568;
}

.moveday-list-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  margin-right: 12px;
  margin-top: 3px;
  flex-shrink: 0;
  color: #FFFFFF;
}

.moveday-list-check.check-red {
  background-color: #6E1A24;
}

.moveday-list-check.check-navy {
  background-color: #0B1E38;
}

.moveday-list li strong {
  color: #1A202C;
  font-weight: 700;
  margin-right: 4px;
}

/* Banner container beige */
.moveday-banner {
  background-color: #FAF6EE;
  border: 1px solid #EADDC9;
  border-radius: 16px;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.moveday-banner-shield {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid #C5A880;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C5A880;
  flex-shrink: 0;
}

.moveday-banner-text {
  flex-grow: 1;
  font-size: 0.95rem;
  color: #5C5446;
  line-height: 1.4;
}

.moveday-banner-text .text-bold-red {
  color: #6E1A24;
  font-weight: 700;
  display: block;
}

.moveday-banner-box {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C5A880;
  flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .moveday-bg-decoration {
    display: none;
  }
  .moveday-premium-card {
    margin-top: 1rem;
    padding: 0 10px;
  }
  .moveday-banner {
    padding: 10px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
  .moveday-banner-shield, .moveday-banner-box {
    margin: 0 auto;
  }
  .moveday-banner-text {
    width: 100%;
  }
    .sidebar-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap:0;
    border-bottom: none;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.1);
  }

  .about-bottom-card-badge{
 top: 318px;
    bottom:0;
  }
}

/* ----------------------------------------------------
 * 8. Customer Reviews & Slider
 * ---------------------------------------------------- */
.stars-badge-wrapper {
  margin-bottom: 1rem;
}

.stars-badge-wrapper .badge-line {
  height: 1.5px;
  background-color: #6E1A24;
  width: 60px;
}

.stars-badge {
  border: 1.5px solid #6E1A24;
  border-radius: 6px;
  padding: 3px 10px;
  color: #6E1A24;
  font-size: 0.75rem;
  letter-spacing: 2.5px;
  font-weight: 800;
  display: inline-flex;
  gap: 2px;
}

.reviews-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.reviews-filter-btn {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 50px;
  padding: 5px 24px 5px 6px;
  font-weight: 700;
  color: #1A202C;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  height: 48px;
  cursor: pointer;
}

.reviews-filter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  border-color: #CBD5E0;
}

.reviews-filter-btn::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 12px;
  border-radius: 0 50px 50px 0;
  background-color: transparent;
  transition: all 0.3s ease;
}

.reviews-filter-btn.youtube::after { background-color: #6E1A24; }
.reviews-filter-btn.instagram::after { background: linear-gradient(to bottom, #833AB4, #FD1D1D, #F56040); }
.reviews-filter-btn.facebook::after { background-color: #1877F2; }
.reviews-filter-btn.productreview::after { background-color: #00B67A; }
.reviews-filter-btn.google::after { background-color: #4285F4; }

.reviews-filter-btn:hover::after {
  width: 18px;
}

.filter-icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.filter-icon-circle.icon-youtube { background-color: #FF0000; }
.filter-icon-circle.icon-instagram { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285aeb 90%); }
.filter-icon-circle.icon-facebook { background-color: #1877F2; }
.filter-icon-circle.icon-productreview { background-color: #00B67A; }
.filter-icon-circle.icon-google { background-color: #FFFFFF; border: 1px solid #E2E8F0; }

.review-slider-container {
  padding: 1rem 0;
  margin-bottom: 2rem;
}

.review-slide-card-new {
  background-color: #FFFFFF;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  height: 100%;
  min-height: 290px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1.5px solid #E2E8F0;
  transition: all 0.3s ease;
}

.review-slide-card-new:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.review-slide-card-new.card-border-red {
  border-color: #6E1A24;
}

.review-slide-card-new.card-border-navy {
  border-color: #0A1C33;
}

.review-card-left-panel {
  width: 140px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 2rem;
}

.review-card-left-panel.bg-red-panel {
  background: linear-gradient(135deg, #6E1A24 0%, #760010 100%);
}

.review-card-left-panel.bg-navy-panel {
  background: linear-gradient(135deg, #0A1C33 0%, #050E1A 100%);
}

.left-quote-mark {
  position: absolute;
  top: 15px;
  left: 20px;
  font-size: 5rem;
  color: #FFFFFF;
  font-weight: 800;
  line-height: 1;
  z-index: 3;
  opacity: 0.95;
  font-family: Georgia, serif;
}

.panel-img-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.left-panel-bg-img {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.25;
  filter: grayscale(30%);
}

.left-panel-caret {
  position: absolute;
  top: 36px;
  right: -10px;
  width: 20px;
  height: 20px;
  transform: rotate(45deg);
  z-index: 4;
}

.bg-red-panel .left-panel-caret {
  background-color: #6E1A24;
}

.bg-navy-panel .left-panel-caret {
  background-color: #0A1C33;
}

.review-card-right-panel {
  flex-grow: 1;
  padding: 2.25rem 2.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #FFFFFF;
}

.rating-badge-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 50px;
  padding: 3px 12px 3px 3px;
  gap: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.rating-badge-pill.rating-badge-red {
  background-color: #6E1A24;
}

.rating-badge-pill.rating-badge-navy {
  background-color: #0A1C33;
}

.platform-icon-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

.stars-stars {
  display: flex;
  gap: 2px;
  color: #FFD700;
  font-size: 0.7rem;
}

.reviewer-text-body {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4A5568;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.right-quote-mark-end {
  position: absolute;
  bottom: 0px;
  right: 20px;
  font-size: 5rem;
  font-family: Georgia, serif;
  line-height: 1;
  font-weight: 800;
  opacity: 0.08;
  pointer-events: none;
}

.right-quote-mark-end.text-red-quote {
  color: #6E1A24;
}

.right-quote-mark-end.text-navy-quote {
  color: #0A1C33;
}

.reviews-swiper .swiper-pagination-bullet-active {
  background: var(--primary-color);
}

/* Testimonial Gallery */
.gallery-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 3;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11, 30, 56, 0.4);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.gallery-overlay i {
  color: var(--bg-white);
  font-size: 2rem;
  transform: scale(0.5);
  transition: var(--transition-smooth);
}

.gallery-card:hover img {
  transform: scale(1.1);
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-card:hover .gallery-overlay i {
  transform: scale(1);
}

.modal-content {
  width: 50%;
    margin: auto;
}
.btn-close-custom{
    opacity: 1;
    filter: brightness(0) saturate(100%)
            invert(73%) sepia(35%)
            saturate(635%) hue-rotate(6deg)
            brightness(92%) contrast(89%);
}
/* Modal lightbox image styling */
.lightbox-modal .modal-content {
  background-color: transparent;
  border: none;
}

.lightbox-modal img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
}

.gallery-card img {
    width: 100%;
    border-radius: 15px;
    object-fit: cover;
}

.carousel-control-prev,
.carousel-control-next {
    width: 45px;
    height: 45px;
    background: #9B0018;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-prev {
    left: -20px;
}

.carousel-control-next {
    right: -20px;
}

/* Mobile */
@media (max-width: 768px) {
    .gallery-card {
        max-width: 100%;
    }
    .modal-content {
      width:100%;
    }
}

/* ----------------------------------------------------
 * 9. FAQ Section (Accordion)
 * ---------------------------------------------------- */
/* ----------------------------------------------------
 * 9. FAQ Section (Accordion Redesign)
 * ---------------------------------------------------- */
.faq-section {
  background-color: #FFFFFF;
}

/* Subtitle help-badge */
.help-badge-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.help-badge-wrapper .badge-line {
  height: 1px;
  background-color: #6E1A24;
  width: 40px;
}

.help-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #6E1A24;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.help-badge svg {
  color: #6E1A24;
  display: inline-block;
}

/* Divider under title */
.faq-divider-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.faq-divider-line {
  height: 1.5px;
  background-color: #6E1A24;
  width: 80px;
  opacity: 0.8;
}

.faq-divider-truck {
  color: #6E1A24;
  font-size: 1.25rem;
  animation: truckDrive 3s infinite ease-in-out;
}

@keyframes truckDrive {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

/* Accordion Custom Styling */
.faq-accordion {
  max-width: 1050px;
  margin: 0 auto;
}

.faq-accordion .accordion-item {
  border-radius: 20px !important;
  border: 1.5px solid #F0F0F0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  margin-bottom: 1.5rem;
  background-color: #FFFFFF;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-accordion .accordion-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.faq-accordion .accordion-button {
  padding: 0 30px 0 120px;
  height: 86px;
  font-weight: 700;
  color: #0B1E38;
  font-size: 1.05rem;
  background-color: #FFFFFF;
  border: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: none;
  transition: background-color 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: #0B1E38;
  background-color: #FFFFFF;
  border-bottom: 1.5px solid #F0F0F0;
}

.faq-accordion .accordion-button::after {
  display: none; /* remove bootstrap default arrow */
}

/* Left Chevron Icon block */
.faq-icon-panel {
  width: 100px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(135deg, #6E1A24 0%, #4A0E13 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  clip-path: polygon(0 0, 82px 0, 100px 50%, 82px 100%, 0 100%);
  z-index: 2;
  box-shadow: 4px 0 15px rgba(110, 26, 36, 0.2);
}

/* Mini Dollar sign overlapping calculator */
.faq-mini-dollar {
  bottom: -3px;
  right: -5px;
  font-size: 0.65rem;
  background: #6E1A24;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #FFFFFF;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  color: #FFFFFF;
}

/* Question text spacing */
.faq-question-text {
  flex-grow: 1;
  padding-right: 20px;
  text-align: left;
  line-height: 1.4;
}

/* Right custom arrow wrapper */
.faq-arrow-wrapper {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(110, 26, 36, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6E1A24;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed) .faq-arrow-wrapper {
  transform: rotate(180deg);
  background-color: #6E1A24;
  color: #FFFFFF;
}

/* Accordion body container */
.faq-accordion .accordion-body {
  padding: 1.75rem 2rem 1.75rem 120px;
  background-color: #FFFFFF;
  color: #4A5568;
  font-size: 0.98rem;
  line-height: 1.7;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .faq-accordion .accordion-button {
    padding-left: 90px;
    padding-right: 15px;
    height: auto;
    min-height: 80px;
    font-size: 0.95rem;
  }
  .faq-icon-panel {
    width: 76px;
    clip-path: polygon(0 0, 62px 0, 76px 50%, 62px 100%, 0 100%);
    font-size: 1.35rem;
  }
  .faq-accordion .accordion-body {
    padding-left: 90px;
    padding-right: 15px;
    font-size: 0.9rem;
  }
}

/* ----------------------------------------------------
 * 10. Footer Section
 * ---------------------------------------------------- */
/* ----------------------------------------------------
 * 10. Custom Premium Footer (Same as Mockup Image)
 * ---------------------------------------------------- */



    .footer-mobile-wraper {
    background-color: #40040a; color:#fff;
    width: 100%;
    position: fixed;
    bottom: 0;
    z-index: 99;
}
.footer-mobile-wraper a {
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    padding: 10px 0;
}
.icon-wraper {
    padding: 0;
    display: flex;
    gap: 10px;
    justify-content: center;
}



.footer-mobile-wraper i.fas.fa-phone-volume {
    margin-right: 10px;
}


   .hero-tagline {
    color: #32090d;
  
}

.custom-footer {
  width: 100%;
  position: relative;
  overflow: hidden;
  background-color: #FFFFFF;
}

/* --- Top Light Footer Section --- */
.footer-top-section {
  background-color: #FFFFFF;
  background-image: 
    radial-gradient(#E2E8F0 1.2px, transparent 1.2px),
    linear-gradient(135deg, rgba(247,250,252,0.7) 25%, transparent 25%, transparent 50%, rgba(247,250,252,0.7) 50%, rgba(247,250,252,0.7) 75%, transparent 75%, transparent);
  background-size: 24px 24px, 40px 40px;
  padding-top: 3.5rem;
  padding-bottom: 4rem;
  position: relative;
}

.footer-logo-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 4rem;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.footer-brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-main-logo {
    max-width: 55%;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-main-logo {
        max-width: 180px;
    }
}
.footer-brand-logo .logo-mark {
  display: flex;
  align-items: center;
}

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

.footer-brand-logo .logo-main-text {
  display: flex;
  align-items: center;
  position: relative;
}

.footer-brand-logo .text-team {
  font-size: 2.4rem;
  font-weight: 800;
  color: #0B1E38;
  font-style: italic;
  letter-spacing: -1px;
}

.footer-brand-logo .text-removals {
  font-size: 2.4rem;
  font-weight: 800;
  color: #6E1A24;
  font-style: italic;
  letter-spacing: -1px;
}

.footer-brand-logo .logo-wings {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  margin-left: 8px;
  margin-top: 5px;
}

.footer-brand-logo .logo-wings .wing {
  height: 3px;
  background-color: #6E1A24;
  border-radius: 1px;
  display: block;
}
.footer-brand-logo .logo-wings .wing:nth-child(1) { width: 28px; }
.footer-brand-logo .logo-wings .wing:nth-child(2) { width: 20px; }
.footer-brand-logo .logo-wings .wing:nth-child(3) { width: 12px; }

.footer-brand-logo .logo-tm {
  font-size: 0.55rem;
  font-weight: 700;
  color: #0B1E38;
  border: 1px solid #0B1E38;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 5px;
  margin-top: -15px;
}

.logo-tagline-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 0.25rem;
  width: 100%;
}

.logo-tagline-row .tagline-line {
  height: 1px;
  background-color: #6E1A24;
  width: 50px;
}

.logo-tagline-row .tagline-text {
  font-size: 0.95rem;
  font-weight: 500;
  font-style: italic;
  color: #0B1E38;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Contact Cards Row */
.footer-cards-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  width: 100%;
  max-width: 1200px;
  margin: 33px auto;
}

.footer-pill-card {
  background: #FFFFFF;
  border-radius: 50px;
  padding: 10px 30px 10px 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  height: 84px;
  width: 320px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  z-index: 2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-pill-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.footer-pill-card.pill-red {
  border: 1.5px solid #6E1A24;
}

.footer-pill-card.pill-navy {
  border: 1.5px solid #0B1E38;
}

/* Card Dots */
.card-dots-top {
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFFFFF;
  padding: 0 10px;
  display: flex;
  gap: 4px;
}

.card-dots-top .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #6E1A24;
  display: block;
}

.card-dots-bottom {
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFFFFF;
  padding: 0 10px;
  display: flex;
  gap: 4px;
}

.card-dots-bottom .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #0B1E38;
  display: block;
}

/* Card Icon layered styling */
.card-icon-wrap {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid #E2E8F0;
  flex-shrink: 0;
}

.card-icon-inner {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #6E1A24;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.25rem;
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.2);
}

.card-content-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-content-wrap .card-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: #0B1E38;
  letter-spacing: 0.8px;
  margin-bottom: 2px;
}

.card-content-wrap .card-desc {
  font-size: 0.85rem;
  font-weight: 600;
  color: #718096;
  transition: color 0.2s ease;
}

.card-content-wrap a.card-desc:hover {
  color: #6E1A24;
}

/* Card Connectors */
.card-connector {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 70px;
  height: 2px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.card-connector .connector-line {
  height: 1px;
  background-color: #718096;
  opacity: 0.4;
  flex-grow: 1;
}

.card-connector .connector-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: block;
}

.card-connector .connector-dot.red {
  background-color: #6E1A24;
}

.card-connector .connector-dot.navy {
  background-color: #0B1E38;
}

/* --- Bottom Dark Footer Section --- */
.footer-bottom-section {
  background-color: #0B1E38;
  background-image: 
    radial-gradient(rgba(255, 255, 255, 0.08) 1.2px, transparent 1.2px);
  background-size: 16px 16px;
  padding-top: 3.5rem;
  padding-bottom: 2.5rem;
  position: relative;
}

/* Divider curve top */
.footer-divider-curve {
  position: absolute;
  top: -49px;
  left: 0;
  width: 100%;
  height: 50px;
  line-height: 0;
  z-index: 2;
}

.footer-divider-curve svg {
  width: 100%;
  height: 50px;
  display: block;
}

/* Badge container in the center */
.footer-badge-container {
  position: absolute;
  top: -75px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.footer-badge-circle {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
  border: 1px solid #E2E8F0;
}

.footer-badge-inner {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1.5px solid #6E1A24;
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
}

.moving-box-icon {
  width: 30px;
  height: 30px;
}

/* Slanted red lines in bottom left */
.footer-bottom-accents {
  position: absolute;
  bottom: 25px;
  left: 5%;
  pointer-events: none;
}

.footer-bottom-accents .slanted-lines {
  display: flex;
  gap: 8px;
}

.footer-bottom-accents .slanted-lines span {
  width: 4px;
  height: 32px;
  background-color: #6E1A24;
  transform: skewX(-35deg);
  display: block;
}

.footer-bottom-accents .slanted-lines span:nth-child(1) { opacity: 0.3; }
.footer-bottom-accents .slanted-lines span:nth-child(2) { opacity: 0.6; }
.footer-bottom-accents .slanted-lines span:nth-child(3) { opacity: 1.0; }

/* Copyright Row */
.footer-copyright-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  margin-top: 1rem;
}

.footer-copyright-row .copyright-line-left,
.footer-copyright-row .copyright-line-right {
  height: 1.5px;
  background-color: #6E1A24;
  flex-grow: 1;
  max-width: 280px;
  position: relative;
}

.footer-copyright-row .copyright-line-left::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: #6E1A24;
  border-radius: 50%;
}

.footer-copyright-row .copyright-line-right::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: #6E1A24;
  border-radius: 50%;
}

.footer-copyright-row .copyright-text {
  font-size: 0.9rem;
  color: #FFFFFF;
  opacity: 0.9;
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* Responsive Styles for Footer */
@media (max-width: 1100px) {
  .footer-copyright-row .copyright-line-left,
  .footer-copyright-row .copyright-line-right {
    max-width: 150px;
  }
}

@media (max-width: 991px) {
  .footer-cards-row {
    flex-direction: column;
    gap: 20px;
  }
  .card-connector {
    display: none;
  }
  .footer-copyright-row .copyright-line-left,
  .footer-copyright-row .copyright-line-right {
    display: none;
  }
  .footer-bottom-accents {
    display: none;
  }
  .footer-copyright-row .copyright-text {
    white-space: normal;
    text-align: center;
  }
}

/* =========================================================================
 * 11. Mobile Responsiveness Overrides
 * ========================================================================= */

/* Disable all entrance transitions on mobile screens */
@media (max-width: 991.98px) {
  [data-aos] {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
    transition-duration: 0s !important;
    animation: none !important;
  }
}

/* Global Responsive Section Title */
.section-title {
  font-size: 2.8rem;
  line-height: 1.2;
}

@media (max-width: 991px) {
  .section-title {
    font-size: 2.25rem;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.85rem;
  }
}

/* 1. Header Navigation Overrides */
@media (min-width: 1200px) and (max-width: 1400px) {
  .navbar-nav .nav-link {
    font-size: 0.82rem !important;
    padding: 8px 6px !important;
  }
  .navbar-nav .nav-link::after {
    left: 6px !important;
    right: 6px !important;
  }
}
@media (max-width: 1199.98px) {
  .navbar-div {
    flex-wrap: wrap !important;
    justify-content: space-between !important;
  }
  .navbar-collapse {
    flex-basis: 100% !important;
    width: 100% !important;
  }
  .nav-phone-container {
    justify-content: center !important;
  }
}
@media (max-width: 480px) {
  .logo-img {
    max-width: 220px !important;
    height: auto !important;
  }
}

/* 2. Hero Section Overrides */
@media (max-width: 576px) {

  .hero-ratings-row {
    max-width: 100%;
  }
  .rating-card {
    padding: 1rem 1.25rem;
  }
  .quote-card {
    padding: 2.5rem 1.25rem 1.5rem 1.25rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-subtitle {
    font-size: 1.05rem;
   
  }
}

/* 3. About Us Section Overrides */
@media (max-width: 991.98px) {

  .sidebar-features-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content:space-around;
   
    margin-top: 1.5rem;
  }
  /* .sidebar-feature-item {
    width: auto;
    flex-direction: column;
    text-align: center;
    gap: 8px;
    border-bottom: none !important;
    padding: 0 !important;
  } */
}

/* @media (max-width: 576px) {
  .sidebar-features-list {
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
  }
  .sidebar-feature-item {
    flex-direction: row;
    text-align: left;
    width: 100%;
    max-width: 250px;
    border-bottom: none !important;
    padding: 0 !important;
  }
} */

/* 4. Why Choose Us Section Overrides */
@media (max-width: 576px) {
  .why-card-pill {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 1rem;
    padding: 11px;
  }
  .why-card-title {
    font-size: 1rem;
  }
  .why-right-img-container {
    height: 260px;
  }
}

/* 5. Choose Your Truck Section Overrides */
@media (max-width: 991px) {
  .truck-display-card .text-start {
    text-align: center !important;
  }
  .truck-heading {
    justify-content: center !important;
  }
}

@media (max-width: 576px) {
  .truck-bg-circle {
    width: 220px;
    height: 220px;
  }
 
  .truck-spec-navy-card {
    padding: 1.5rem 1.25rem;
  }
}

/* 6. Our Move Day Section Overrides */
@media (max-width: 576px) {
  .moveday-block {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }
  .moveday-block-title {
    text-align: center;
    font-size: 1.2rem;
  }
  .moveday-list {
    align-items: flex-start;
    text-align: left;
  }
}

/* 7. Customer Reviews Section Overrides */
@media (max-width: 768px) {
  .review-slide-card-new {
    flex-direction: column;
    min-height: auto;
  }
  .review-card-left-panel {
    width: 100%;
    height: 100px;
    padding: 1rem;
  }
  .left-panel-caret {
    display: none;
  }
  .review-card-right-panel {
    padding: 1.5rem 1.25rem;
  }
}

@media (max-width: 576px) {
  .review-card-right-header {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 10px;
  }
}

/* 8. FAQ Accordion Section Overrides */
@media (max-width: 576px) {
  .faq-accordion .accordion-button {
    padding: 1.25rem 3.5rem 1.25rem 1.25rem;
    min-height: auto;
    height: auto;
  }
  .faq-icon-panel {
    display: none;
  }
  .faq-accordion .accordion-body {
    padding: 1rem 1.25rem;
  }
}

/* 9. Footer Section Overrides */
@media (max-width: 480px) {
  .footer-brand-logo .text-team,
  .footer-brand-logo .text-removals {
    font-size: 1.8rem;
  }
  .footer-brand-logo .logo-wings .wing:nth-child(1) { width: 20px; }
  .footer-brand-logo .logo-wings .wing:nth-child(2) { width: 14px; }
  .footer-brand-logo .logo-wings .wing:nth-child(3) { width: 8px; }
}


/* Reviews Carousel Navigation Buttons & Pagination */
.reviews-swiper-outer {
  position: relative;
  padding: 0 70px;
}

.reviews-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  background-color: #FFFFFF;
  border: 2px solid #0B1E38; /* Navy border */
  border-radius: 6px; /* Square as in the image */
  color: #0B1E38; /* Navy icon */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(11, 30, 56, 0.06);
}

.reviews-nav-btn.prev-btn {
  left: 10px;
}

.reviews-nav-btn.next-btn {
  right: 10px;
}

.reviews-nav-btn.prev-btn:hover {
  transform: translateY(-50%) scale(1.08);
  background-color: #6E1A24; /* Burgundy hover */
  border-color: #6E1A24;
  color: #FFFFFF;
  box-shadow: 0 6px 16px rgba(110, 26, 36, 0.2);
}

.reviews-nav-btn.next-btn:hover {
  transform: translateY(-50%) scale(1.08);
  background-color: #6E1A24; /* Burgundy hover */
  border-color: #6E1A24;
  color: #FFFFFF;
  box-shadow: 0 6px 16px rgba(110, 26, 36, 0.2);
}

/* Premium Pagination Dots */
.reviews-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.reviews-dots .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: #0B1E38 !important;
  opacity: 0.25;
  margin: 0 !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 50%;
}

.reviews-dots .swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 4px;
  background-color: #6E1A24 !important;
  opacity: 1;
}
.reviews-slider-controls{
    position: relative;
    width: 100%;
    text-align: center;
}

.reviews-slider-controls .swiper-pagination,
.reviews-dots{
    position: static !important;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100% !important;
    margin: 0 auto;
    transform: none !important;
}


 #hero-section {
  display: flex;
        align-items: center;
        padding: 26px 32px 17px 30px;
  }
.content-div {
  margin: 0px 0px 54px 0px;
}
  

/* Hero section adjustment for screens 1100-1300px */
@media (min-width: 1100px) and (max-width: 1300px) {
 
  
  #hero-section .container-custom {
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0 !important;
  }
  
  #hero-section .row {
    align-items: center;
  }
  .quote-title-sub {
    font-size: 0.80rem;
    margin-bottom: 0px;
    margin-top: 5px;
}
  

  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-ratings-row {
    gap: 1rem !important;
  }
  
  .rating-card {
    padding: 0.6rem 1.2rem;
  }
  
  .quote-card {
    padding: 1.5rem 1.8rem;
  }
  
  .quote-title-main {
    font-size: 1.6rem;
  }
  
  #hero-section .form-control {
    font-size: 0.85rem;
    padding: 0.5rem 2rem 0.5rem 2.4rem;
  }
  
  .btn-submit-quote {
    font-size: 0.85rem;
    padding: 0.7rem !important;
  }
  
  .form-group-icon i {
    font-size: 0.85rem;
  }
}


@media (max-width: 767.98px) {
    #hero-section {
     
        padding: 26px 0px 17px 0px;
  }
   
    
.container-custom {
  max-width: var(--max-width);
 margin:auto;
 padding:0 12px !important ;
}
.review-slider-container {
    padding-bottom: 0 !important;
}

.footer-bottom-section {
    margin: 0 !important;
}

.about-bottom-card-img-wrapper {
    height: 320px;
}
        .quote-card {
        margin-top: 0;
    }
    
        section#faq-section {
    max-width: 100%;
    overflow: hidden;
}
html, body {
    overflow-x: hidden;
    width: 100%;
}
    
  .reviews-swiper-outer {
    padding: 0;
  }
  .reviews-nav-btn {
    display: none;
  }
  .promise-care-card {
    padding: 2.5rem 1rem 1.5rem 1rem;
  }
  .services-section, .moveday-section {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.reviews-filter-tabs, .review-slider-container {
  margin-bottom: 10px;
}
.footer-top-section, .footer-bottom-section {
  padding:10px;
  margin:10px;
}
.announcement-bar { 
 display:none;
}
.hero-section {
  height:561px;
}



.carousel-control-next {
    right: 0px;
}
.carousel-control-prev {
    left: 0;
}



    .sidebar-features-list {
        margin-top: 0;
    }

  
	
	   .navbar-div {
        flex-wrap: wrap !important;
        justify-content: space-around;
    }
	.main-navbar {
    justify-content: space-between;
}
    
.why-title {
    font-size: 36px;
}

.section-title {
    font-size: 31px !important;
    line-height: 39px;
}
hr.navy-divider.mb-4 {
    margin-bottom: 15px !important;
}

.navy-divider{
  margin:0;
}

}

.truck-heading .truck-num {
  font-size: 3.5rem;
  line-height: 1;
  font-family: 'Poppins', sans-serif;
}
.truck-heading .truck-label {
  font-size: 1.4rem;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.5px;
}

@media (max-width: 991px) {
  /* ... other overrides ... */
  .truck-heading .truck-num {
    font-size: 1.5rem !important;
  }
  .truck-heading .truck-label {
    font-size: 1rem !important;
  }
  .truck-new-text{
    display: none;
  }
  .truck-main-img {
    height: 205px;
  }
}

@media (max-width: 576px) {
   .truck-main-img {
    right: 2%;
    max-height: 158px;
  }
}

/* ===============================
   Why Different Section
================================= */
.why-different-section {
    position: relative;
    overflow: hidden;
}

.why-different-bg-shape {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 280px;
    height: 280px;
    background: rgba(155, 44, 60, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.premium-content-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.06);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.premium-content-card:hover {
    transform: translateY(-8px);
}

.premium-content-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin: 20px 0 15px;
}

.premium-content-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

.card-red {
    border-top: 4px solid #9b2c3c;
    border-right: 4px solid red;
}

.card-navy {
    border-top: 4px solid #102a43;
}

.card-gold {
    border-top: 4px solid #C5A880;
}

.premium-icon-box {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, #9b2c3c, #6E1A24);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
}

.why-bottom-banner {
    background: #fff8f3;
    border-left: 5px solid #C5A880;
    padding: 20px 25px;
    border-radius: 15px;
    text-align: center;
}

.why-bottom-banner p {
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
}

/* ===============================
   Tablet
================================= */
@media (max-width: 991px) {
    .section-title {
        font-size: 2.2rem !important;
    }

    .premium-content-card {
        padding: 30px 20px;
    }

    .premium-content-card h4 {
        font-size: 20px;
    }
}

/* ===============================
   Mobile
================================= */
@media (max-width: 767px) {
    .section-title {
        font-size: 1.8rem !important;
        line-height: 1.3;
    }

    .premium-content-card {
        padding: 25px 18px;
        text-align: center;
    }

    .premium-icon-box {
        margin: 0 auto;
        width: 58px;
        height: 58px;
        font-size: 20px;
    }

    .premium-content-card h4 {
        font-size: 18px;
    }

    .premium-content-card p {
        font-size: 14px;
        line-height: 1.7;
    }

    .why-bottom-banner {
        padding: 18px;
    }

    .why-bottom-banner p {
        font-size: 15px;
    }

    .why-different-bg-shape {
        width: 180px;
        height: 180px;
        top: -60px;
        right: -60px;
    }
}

/* ===============================
   Small Mobile
================================= */
@media (max-width: 480px) {
    .section-title {
        font-size: 1.5rem !important;
    }

    .services-subtitle-text {
        font-size: 12px;
    }

    .premium-content-card {
        border-radius: 15px;
    }
}

:root{
  --maroon:#751126;
  --dark:#15151d;
}


 
.how-work{
  padding:25px 30px 35px;
  background:
    radial-gradient(circle at center,#ffffff 0%,#ffffff 60%,#f7f7f7 100%);
  overflow:hidden;
}
 
.container{
  max-width:1420px;
  margin:auto;
  text-align:center;
}
 
h2{
  margin:0;
  font-size:74px;
  line-height:1;
  font-weight:900;
  color:var(--maroon);
  letter-spacing:.5px;
  animation:fadeDown .8s ease both;
}
 
.sub{
  margin:10px 0 4px;
  font-size:26px;
  color:#111;
  animation:fadeDown 1s ease both;
}
 
.divider{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:8px;
  margin-bottom:75px;
}
 
.divider span{
  width:65px;
  height:3px;
  background:var(--maroon);
  border-radius:10px;
}
 
.divider i{
  width:0;
  height:0;
  border-left:8px solid transparent;
  border-right:8px solid transparent;
  border-top:14px solid var(--maroon);
}
 
.timeline{
  position:relative;
  display:grid;
  grid-template-columns:repeat(3,1fr);
 gap: 92px 69px;
}
 
/* connecting outer lines */
.timeline:before{
  content:"";
  position:absolute;
     left: -57px;
    right: -45px;
  top:90px;
  bottom:100px;
  border:5px solid var(--maroon);
  border-radius:42px;
  opacity:.95;
  z-index:0;
}
 
.timeline:after{
  content:"";
  position:absolute;
 left: -71px;
    right: -62px;
    top: 163px;
    height: 145px;
  border-left:5px dotted var(--maroon);
  border-right:5px dotted var(--maroon);
  z-index:0;
}
 
.card{
  position:relative;
  z-index:2;
min-height: 191px;
    padding: 38px 24px 19px;
  background:#fff;
  border:3px solid var(--maroon);
  border-radius:18px;
  box-shadow:
    0 14px 0 var(--maroon),
    0 22px 18px rgba(0,0,0,.18);
  animation:fadeUp .8s ease both;
  transition:.35s ease;
}
 
.card:hover{
  transform:translateY(-12px) scale(1.025);
  box-shadow:
    0 18px 0 var(--maroon),
    0 34px 28px rgba(117,17,38,.28);
}
 
.card:hover .circle{
  transform:translateX(-50%) rotateY(360deg) scale(1.08);
}
 
.circle{
 position: absolute;
    top: -41px;
    left: 50%;
    transform: translateX(-50%);
    width: 69px;
    height: 69px;
    border-radius: 50%;
    background: #fff;
    border: 6px double var(--maroon);
    display: grid;
    place-items: center;
    font-size: 30px;
  color:var(--maroon);
  box-shadow:0 8px 15px rgba(0,0,0,.18);
  transition:.7s ease;
}
 
.step{
    position: absolute;
    left: -42px;
    top: 68px;
    width: 48px;
    height: 45px;
    background: var(--maroon);
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 17px;
    font-weight: 900;
}
 
.step:after{
 content: "";
    position: absolute;
    right: -8px;
    top: 10px;
    border-left: 13px solid var(--maroon);
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}
 
.card h3{
  margin:0 0 16px;
  color:var(--maroon);
  font-size:20px;
  line-height:1.25;
  font-weight:900;
}
 

 
.arrow{
  position:absolute;
  z-index:5;
  width:48px;
  height:48px;
  border-radius:50%;
  background:var(--maroon);
  color:#fff;
  display:grid;
  place-items:center;
  font-size:54px;
  line-height:40px;
  font-weight:700;
  animation:pulse 1.8s infinite;
}
 
.a1{left:31.6%;top:128px}
.a2{left:65.3%;top:128px}
.a3{left:31.6%;top:558px}
.a4{left:65.3%;top:558px}
 
.c1{animation-delay:.1s}
.c2{animation-delay:.2s}
.c3{animation-delay:.3s}
.c4{animation-delay:.4s}
.c5{animation-delay:.5s}
.c6{animation-delay:.6s}
 
.bottom-logo{
  margin-top:62px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:35px;
  color:var(--maroon);
}
 
.bottom-logo span{
  height:3px;
  width:330px;
  background:linear-gradient(90deg,transparent,var(--maroon));
  position:relative;
}
 
.bottom-logo span:last-child{
  background:linear-gradient(90deg,var(--maroon),transparent);
}
 
.bottom-logo span:after{
  content:"";
  position:absolute;
  right:0;
  top:-4px;
  width:10px;
  height:10px;
  background:var(--maroon);
  border-radius:50%;
}
 
.bottom-logo span:last-child:after{
  left:0;
  right:auto;
}
 
.bottom-logo strong{
  display:block;
  font-size:50px;
  font-weight:900;
  font-style:italic;
  line-height:.9;
}
 
.bottom-logo small{
  font-size:13px;
  font-style:italic;
}
 
@keyframes fadeUp{
  from{opacity:0;transform:translateY(50px)}
  to{opacity:1;transform:translateY(0)}
}
 
@keyframes fadeDown{
  from{opacity:0;transform:translateY(-30px)}
  to{opacity:1;transform:translateY(0)}
}
 
@keyframes pulse{
  0%,100%{transform:scale(1)}
  50%{transform:scale(1.15)}
}
 
@media(max-width:1100px){
  h2{font-size:54px}
  .timeline{
    grid-template-columns:repeat(2,1fr);
    gap:90px 55px;
  }
  .timeline:before,.timeline:after,.arrow{display:none}
}
 
@media(max-width:650px){
  .how-work{padding:15px 16px}
  h2{font-size:38px}
  .sub{font-size:17px}
  .timeline{grid-template-columns:1fr;gap:85px}
  .card{padding:78px 24px 28px}
  .card p{font-size:16px}
  .bottom-logo span{display:none}
  .bottom-logo strong{font-size:36px}
}

.lightbox-nav{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:rgba(122, 15, 30, 0.9);
    color:#fff;
    font-size:28px;
    font-weight:700;
    cursor:pointer;
    z-index:10;
    transition:.3s;
}

.lightbox-nav:hover{
    background:#d4af37;
    color:#111;
}

.prev-btn{
    left:20px;
}

.next-btn{
    right:20px;
}

#lightboxImage{
    max-height:85vh;
    object-fit:contain;
}


.pricing-tag {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    background: linear-gradient(135deg, #5a131b, #6c1923);
    padding: 18px 25px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(155, 44, 60, 0.25);
    max-width: 340px;
}

.pricing-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-icon span {
    font-size: 28px;
    font-weight: 700;
    color: #9b2c3c;
}

.pricing-content p {
    margin: 0;
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-content h3 {
    margin: 4px 0 0;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}

.pricing-content h3 span {
    font-size: 16px;
    font-weight: 400;
}

.shine {
    position: absolute;
    top: 0;
    left: -80%;
    width: 50%;
    height: 100%;
    background: rgba(255,255,255,0.15);
    transform: skewX(-25deg);
    animation: shineMove 3s infinite;
}

@keyframes shineMove {
    100% {
        left: 130%;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .pricing-tag {
        padding: 15px 18px;
        gap: 12px;
        max-width: 100%;
    }

    .pricing-icon {
        width: 50px;
        height: 50px;
    }

    .pricing-content h3 {
        font-size: 22px;
    }
}

.pop-form-modal {
  width:61%;
}

.pop-form-modal .btn-danger {
  background-color:#340c10;
}

.modal-title {
  font-size:19px;
}