/* ============================================================
   Classic Car Care — style.css
   Color Theme: White · Deep Navy · Steel Blue · Gold Accent
   Fonts: Playfair Display · Poppins · Montserrat
   ============================================================ */

/* ── CSS Variables ── */
:root {
  --navy: #0a1628;
  --navy-mid: #0f2144;
  --navy-light: #162d5a;
  --blue: #1a4a8a;
  --steel: #2d6bb0;
  --sky: #4a90d9;
  --gold: #c8973f;
  --gold-light: #dba94e;
  --white: #ffffff;
  --off-white: #f7f8fc;
  --light-gray: #eef1f7;
  --mid-gray: #8a94a8;
  --text-dark: #0d1f3c;
  --text-body: #3a4a65;
  --text-light: #6b7a99;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 12px rgba(10, 22, 40, 0.08);
  --shadow-md: 0 6px 28px rgba(10, 22, 40, 0.13);
  --shadow-lg: 0 16px 56px rgba(10, 22, 40, 0.18);
  --transition: 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* ── Utility ── */
.section-pad {
  padding: 96px 0;
}

.text-accent {
  color: var(--gold);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(200, 151, 63, 0.10);
  border: 1px solid rgba(200, 151, 63, 0.25);
  padding: 6px 14px;
  border-radius: 40px;
  margin-bottom: 18px;
}

.section-label::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-body {
  color: var(--text-body);
  font-size: 0.97rem;
  max-width: 580px;
}

.section-sub-body {
  color: var(--text-light);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

/* ============================================================
   NAVBAR
   ============================================================ */
#mainNavbar {
  background: transparent;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
  z-index: 1000;
}

#mainNavbar.scrolled {
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(14px);
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white) !important;
  letter-spacing: 0.02em;
}

.brand-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--navy);
  flex-shrink: 0;
}

.brand-text {
  color: var(--white);
}

.brand-accent {
  color: var(--gold);
}

.nav-link {
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 14px !important;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width var(--transition);
  border-radius: 2px;
}

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

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

.btn-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy) !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 9px 20px !important;
  border-radius: 40px;
  border: none;
  letter-spacing: 0.04em;
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 151, 63, 0.38);
  color: var(--navy) !important;
}

.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-size: 1.4rem;
  padding: 4px 9px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 45%, var(--blue) 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 75% 50%, rgba(26, 74, 138, 0.45) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(200, 151, 63, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content {
  padding: 120px 0 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-light);
  background: rgba(200, 151, 63, 0.12);
  border: 1px solid rgba(200, 151, 63, 0.28);
  padding: 7px 16px;
  border-radius: 40px;
  margin-bottom: 24px;
  letter-spacing: 0.06em;
  font-family: 'Montserrat', sans-serif;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-highlight {
  color: var(--gold);
  position: relative;
  display: inline-block;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  max-width: 520px;
  line-height: 1.75;
}

.btn-primary-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy) !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 40px;
  border: none;
  letter-spacing: 0.04em;
  transition: transform var(--transition), box-shadow var(--transition);
  display: inline-flex;
  align-items: center;
}

.btn-primary-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(200, 151, 63, 0.4);
  color: var(--navy) !important;
}

.btn-outline-cta {
  background: transparent;
  color: var(--white) !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 40px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  letter-spacing: 0.03em;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
}

.btn-outline-cta:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.7);
}

/* Hero Stats */
.hero-stats {
  gap: 32px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
  letter-spacing: 0.04em;
}

.stat-divider {
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
}

/* Hero Image */
.hero-img-wrapper {
  position: relative;
  width: 420px;
  max-width: 100%;
  margin-top: 80px;
}

.hero-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero-img-badge {
  position: absolute;
  bottom: 28px;
  left: -28px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  font-weight: 700;
  color: var(--text-dark);
  font-size: 0.92rem;
}

.hero-img-badge i {
  color: #f0b429;
  font-size: 1.1rem;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1.5px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(1);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.15);
  }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-strip {
  background: var(--navy);
  border-top: 1px solid rgba(200, 151, 63, 0.15);
  border-bottom: 1px solid rgba(200, 151, 63, 0.15);
  overflow: hidden;
  padding: 14px 0;
}

.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-track span {
  white-space: nowrap;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

.marquee-track span i {
  color: var(--gold);
  font-size: 0.45rem;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-section {
  background: var(--off-white);
}

.about-img-grid {
  position: relative;
  max-width: 480px;
}

.about-img-main {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.about-img-small {
  position: absolute;
  bottom: -32px;
  right: -28px;
  width: 190px;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 5px solid var(--white);
  box-shadow: var(--shadow-md);
}

.about-exp-badge {
  position: absolute;
  top: 28px;
  left: -24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.exp-num {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}

.exp-text {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.3;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--gold);
}

.about-feature i {
  color: var(--gold);
  font-size: 1rem;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section {
  background: var(--white);
}


.img-car{
  width: 100%;
  height: 220px;
  border-radius: 10px;
  margin-bottom: 10px;
}

.service-card {
  background: #f0f0f0;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--sky));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

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

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

.service-card--highlight {
  background: var(--navy);
  border-color: var(--navy);
}

.service-card--highlight .service-title {
  color: var(--white);
}

.service-card--highlight .service-desc {
  color: rgba(255, 255, 255, 0.65);
}

.service-card--highlight .service-icon-wrap {
  background: rgba(200, 151, 63, 0.15);
  color: var(--gold-light);
}

.service-card--highlight .service-link {
  color: var(--gold);
}

.service-icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--steel);
  margin-bottom: 18px;
  transition: background var(--transition), color var(--transition);
}

.service-card:hover .service-icon-wrap {
  background: var(--gold);
  color: var(--navy);
}

.service-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 18px;
}

.service-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--steel);
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition), gap var(--transition);
}

.service-link:hover {
  color: var(--gold);
  gap: 10px;
}

/* ============================================================
   SALE BANNER
   ============================================================ */
.sale-banner-section {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--blue) 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.sale-banner-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg,
      transparent,
      transparent 30px,
      rgba(255, 255, 255, 0.015) 30px,
      rgba(255, 255, 255, 0.015) 60px);
}

.sale-banner-inner {
  position: relative;
  z-index: 1;
}

.sale-badge {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: 5px 14px;
  border-radius: 40px;
  margin-bottom: 14px;
}

.sale-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--white);
  margin-bottom: 12px;
}

.sale-body {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  max-width: 560px;
}

.btn-sale-cta {
  background: var(--white);
  color: var(--navy) !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 40px;
  border: none;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-sale-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section {
  background: var(--off-white);
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  height: 100%;
  border: 1px solid var(--light-gray);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid #dddddd;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.why-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: #c8973f;
  line-height: 1;
  margin-bottom: 14px;
  display: block;
}

.why-icon {
  font-size: 1.8rem;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}

.why-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.why-desc {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
  background: var(--white);
}

.contact-info-card,
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
}

.contact-info-card {
  background: var(--navy);
  border-color: var(--navy);
}

.contact-info-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 28px;
}

.contact-info-card .contact-info-title {
  color: var(--white);
}

.contact-form-card .contact-info-title {
  color: var(--text-dark);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.contact-item:last-of-type {
  border-bottom: none;
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  background: rgba(200, 151, 63, 0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-item-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 4px;
}

.contact-item-val {
  display: block;
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 500;
  line-height: 1.5;
}

.contact-link:hover {
  color: var(--gold);
}

.contact-hours {
  background: rgba(200, 151, 63, 0.1);
  border: 1px solid rgba(200, 151, 63, 0.2);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 16px;
}

.contact-hours i {
  color: var(--gold);
}

/* Form */
.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}

.ccc-input {
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius-sm);
  padding: 11px 16px;
  font-size: 0.9rem;
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background: var(--off-white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.ccc-input:focus {
  outline: none;
  border-color: var(--steel);
  box-shadow: 0 0 0 3px rgba(45, 107, 176, 0.12);
  background: var(--white);
}

.form-success-msg {
  background: #e6f4ea;
  color: #1e7e34;
  border: 1px solid #b2dfdb;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-top: 16px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* ============================================================
   MAP
   ============================================================ */
.map-section {
  display: block;
  line-height: 0;
  filter: grayscale(20%);
}

.map-section iframe {
  display: block;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer-section {
  background: var(--navy);
  padding-top: 72px;
  padding-bottom: 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
}

.footer-about {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 300px;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.social-link:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.footer-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

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

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  transition: color var(--transition);
}

.footer-links a i {
  color: var(--gold);
  font-size: 0.75rem;
}

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

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

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 12px;
  line-height: 1.5;
}

.footer-contact-list li i {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-list a {
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
}

.footer-contact-list a:hover {
  color: var(--gold);
}

.footer-top {
  padding-bottom: 48px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  text-align: center;
  padding: 20px 0;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
}

/* ============================================================
   FLOATING ELEMENTS
   ============================================================ */
.float-cta {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 6px 20px rgba(200, 151, 63, 0.45);
  z-index: 999;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: pulse 2.5s infinite;
}

.float-cta:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 28px rgba(200, 151, 63, 0.6);
  color: var(--navy);
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 6px 20px rgba(200, 151, 63, 0.45);
  }

  50% {
    box-shadow: 0 6px 30px rgba(200, 151, 63, 0.7);
  }
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 42px;
  height: 42px;
  background: var(--navy);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  z-index: 998;
  transition: var(--transition);
}

.back-to-top.visible {
  display: flex;
}

.back-to-top:hover {
  background: var(--steel);
  border-color: var(--steel);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate="fade-right"] {
  transform: translateX(-32px);
}

[data-animate="fade-left"] {
  transform: translateX(32px);
}

[data-animate="fade-up"] {
  transform: translateY(32px);
}

[data-animate].animated {
  opacity: 1;
  transform: translate(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
  .section-pad {
    padding: 72px 0;
  }

  .hero-content {
    padding: 110px 0 60px;
  }

  .about-img-small {
    display: none;
  }

  .about-img-grid {
    margin-bottom: 48px;
  }
}

@media (max-width: 767.98px) {
  .section-pad {
    padding: 56px 0;
	width: 98%;
        overflow-x: hidden;
        margin: 0 auto;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .hero-stats {
    gap: 20px;
  }

  .stat-num {
    font-size: 1.6rem;
  }

  .stat-divider {
    height: 36px;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 28px 22px;
  }

  .about-exp-badge {
    left: 0;
    top: 16px;
  }

  .sale-banner-section {
    padding: 52px 0;
  }
}

@media (max-width: 575.98px) {
  .hero-actions {
    flex-direction: column;
  }

  .btn-primary-cta,
  .btn-outline-cta {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    gap: 16px;
  }

  .stat-divider {
    display: none;
  }

  .service-card {
    padding: 24px 20px;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 24px 18px;
  }

  .why-card {
    padding: 28px 22px;
  }
}

