/* ============================================================
   LUXE AUTO SPA — Premium Automotive Service Website
   Centralized CSS Theme File
   ============================================================ */

/* ----- CSS Custom Properties (Gold-Themed Tokens) ----- */

@import url('https://fonts.googleapis.com/css2?family=Krona+One&family=Mona+Sans:ital,wght@0,200..900;1,200..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Raleway:ital,wght@0,100..900;1,100..900&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');
:root {
  /* Primary Brand Colors */
  --gold-primary: #D4AF37;
  --gold-secondary: #C9A24D;
  --gold-light: #F5E6B8;
  --gold-dark: #A8882C;
  --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F5E6B8 50%, #C9A24D 100%);
  --gold-gradient-btn: linear-gradient(135deg, #D4AF37 0%, #C9A24D 100%);
  --gold-shimmer: linear-gradient(90deg, #D4AF37 0%, #F5E6B8 40%, #D4AF37 80%);

  /* Neutral Palette */
  --charcoal: #1A1A2E;
  --charcoal-light: #222240;
  --dark-bg: #0F0F1A;
  --dark-card: #16162B;
  --grey-900: #1E1E1E;
  --grey-800: #2D2D2D;
  --grey-700: #3D3D3D;
  --grey-600: #555555;
  --grey-400: #9E9E9E;
  --grey-200: #E0E0E0;
  --grey-100: #F5F5F5;
  --off-white: #FAF9F6;
  --white: #FFFFFF;

  /* Typography */
  --font-primary: "Krona One", sans-serif;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 400;
  --fw-bold: 400;
  --fw-extrabold: 800;

  /* Spacing */
  --section-padding: 50px 0;
  --section-padding-sm: 40px 0;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 50px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
  --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.25);
  --shadow-gold-lg: 0 8px 40px rgba(212, 175, 55, 0.35);

  /* Transitions */
  --transition-fast: all 0.2s ease;
  --transition-base: all 0.3s ease;
  --transition-slow: all 0.5s ease;
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
p{
  font-family: "Urbanist", sans-serif !important;
}
/* ----- Global Reset & Base ----- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
  color: var(--grey-800);
  background-color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-base);
}

a:hover {
  color: var(--gold-primary);
}

/* ----- Typography Hierarchy ----- */
h1, h2, h3, h4, h5, h6 {
  font-weight: var(--fw-bold);
  line-height: 1.3;
  color: var(--charcoal);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }

.display-hero {
  font-size: 4rem;
  font-weight: var(--fw-extrabold);
  line-height: 1.1;
  letter-spacing: -1px;
}

.text-gold {
  color: var(--gold-primary) !important;
}

.text-charcoal {
  color: var(--charcoal) !important;
}

.text-light-muted {
  color: var(--grey-400) !important;
}

.bg-charcoal {
  background-color: var(--charcoal) !important;
  margin:0 20px 0px 20px ;
  border-radius: 20px;
}

.bg-dark-deep {
  background-color: var(--dark-bg) !important;
}

.bg-off-white {
  background-color: var(--off-white) !important;
}

/* ----- Section Styling ----- */
.section-padding {
  padding: var(--section-padding);
}

.section-padding-sm {
  padding: var(--section-padding-sm);
}

.section-title {
  font-size: 30px;
  font-weight: var(--fw-bold);
  margin-bottom: 1rem;
  position: relative;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--grey-600);
  max-width: 640px;
  margin: 0 auto 3rem;
  font-weight: var(--fw-light);
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold-primary);
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 45px;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 2px;
  background: var(--gold-gradient-btn);
}

/* Gold underline decorator */
.gold-underline {
  display: inline-block;
  position: relative;
  padding-bottom: 12px;
}

.gold-underline::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gold-gradient-btn);
  border-radius: 2px;
}

.gold-underline.text-start::after {
  left: 0;
  transform: none;
}

/* Gold separator */
.gold-separator {
  width: 60px;
  height: 3px;
  background: var(--gold-gradient-btn);
  border: none;
  border-radius: 2px;
  margin: 1.5rem auto;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar-premium {
  /* padding: 35px 0; */
  transition: var(--transition-smooth);
  z-index: 1050;
  background: transparent !important;
  margin: 0px 20px 0 20px;
}

.navbar-premium.scrolled {
  background: rgba(15, 15, 26, 0.95) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-premium .navbar-brand {
  font-size: 1.6rem;
  font-weight: var(--fw-extrabold);
  color: var(--white) !important;
  letter-spacing: 1px;
}

.navbar-premium .navbar-brand span {
  color: var(--gold-primary);
}

.navbar-premium .nav-link {
  color: rgba(0, 0, 0, 0.85) !important;
  font-weight: var(--fw-medium);
  font-size: 0.9rem;
  padding: 8px 18px !important;
  letter-spacing: 0.5px;
  position: relative;
  transition: var(--transition-base);
}

.navbar-premium .nav-link:hover,
.navbar-premium .nav-link.active {
  color: var(--gold-primary) !important;
}

.navbar-premium .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--gold-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.navbar-premium .nav-link:hover::after,
.navbar-premium .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-toggler {
  border: 1px solid var(--gold-primary) !important;
  padding: 6px 10px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23D4AF37' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ----- CTA Button Styles ----- */
.btn-gold {
  background: var(--gold-gradient-btn);
  color: var(--charcoal) !important;
  border: none;
  padding: 12px 32px;
  border-radius: var(--radius-pill);
  font-weight: var(--fw-semibold);
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
  z-index: -1;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-lg);
  color: var(--charcoal) !important;
}

.btn-gold:hover::before {
  left: 100%;
}

.btn-gold-outline {
  background: transparent;
  color: var(--gold-primary) !important;
  border: 2px solid var(--gold-primary);
  padding: 10px 30px;
  border-radius: var(--radius-pill);
  font-weight: var(--fw-semibold);
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: var(--transition-smooth);
}

.btn-gold-outline:hover {
  background: var(--gold-primary);
  color: var(--charcoal) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-white-outline {
  background: transparent;
  color: var(--white) !important;
  border: 2px solid rgba(255, 255, 255, 0.4);
  padding: 10px 30px;
  border-radius: var(--radius-pill);
  font-weight: var(--fw-semibold);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.btn-white-outline:hover {
  background: var(--white);
  color: var(--charcoal) !important;
  border-color: var(--white);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 750px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.568) 0%, rgba(15, 15, 20, 0.63) 100%),
              url('https://cdn.prod.website-files.com/66dc179a1d6aa88848a4efac/675021f0245836dd38d0d517_hero-01.avif') center/cover no-repeat;
  overflow: hidden;
  /* margin:20px;
  border-radius: 20px; */
  margin-top: 0px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-30px, 30px) scale(1.2); }
}

.hero-section .hero-title {
  font-size: 2.8rem;
  font-weight: var(--fw-extrabold);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-section .hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: var(--fw-light);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  color: var(--gold-primary);
  font-weight: var(--fw-medium);
  margin-bottom: 1.5rem;
}

/* Hero Quote / Booking Card */
.hero-form-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-form-card .form-control,
.hero-form-card .form-select {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 0.9rem;
  transition: var(--transition-base);
}

.hero-form-card .form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.hero-form-card .form-control:focus,
.hero-form-card .form-select:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
  background: rgba(255, 255, 255, 0.1);
}

.hero-form-card .form-select option {
  background: var(--charcoal);
  color: var(--white);
}

.hero-form-card .form-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

/* ============================================================
   PREMIUM CARDS
   ============================================================ */
.premium-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.premium-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient-btn);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.premium-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212, 175, 55, 0.3);
}

.premium-card:hover::before {
  transform: scaleX(1);
}

.premium-card .card-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
  color: var(--gold-primary);
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
}

.premium-card:hover .card-icon {
  background: var(--gold-gradient-btn);
  color: var(--charcoal);
  transform: scale(1.1);
}

.premium-card .card-title {
  font-size: 1.2rem;
  font-weight: var(--fw-semibold);
  margin-bottom: 0.75rem;
}

.premium-card .card-text {
  color: var(--grey-600);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* Dark Card Variant */
.premium-card-dark {
  background: var(--dark-card);
  border-color: rgba(255, 255, 255, 0.08);
}

.premium-card-dark .card-title {
  color: var(--white);
}

.premium-card-dark .card-text {
  color: rgba(255, 255, 255, 0.6);
}

.premium-card-dark:hover {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: var(--shadow-gold);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.step-card {
  text-align: center;
  position: relative;
  padding: 30px 20px;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-gradient-btn);
  color: var(--charcoal);
  font-size: 1.3rem;
  font-weight: var(--fw-bold);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-gold);
}

.step-connector {
  position: absolute;
  top: 58px;
  left: 55%;
  width: calc(100% - 10%);
  height: 2px;
  background: linear-gradient(90deg, var(--gold-primary), rgba(212, 175, 55, 0.2));
}

.step-card h5 {
  font-weight: var(--fw-semibold);
  margin-bottom: 0.5rem;
  font-size: 15px;
}

.step-card p {
  color: var(--grey-600);
  font-size: 0.9rem;
}

/* ============================================================
   TRUST / STATS SECTION
   ============================================================ */
.stat-item {
  text-align: center;
  padding: 30px 15px;
}

.stat-number {
  font-size: 3rem;
  font-weight: var(--fw-extrabold);
  background: var(--gold-gradient-btn);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin: 15px;
  position: relative;
  transition: var(--transition-smooth);
}

.testimonial-card::before {
  content: '\f10d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 2rem;
  color: rgba(212, 175, 55, 0.15);
  position: absolute;
  top: 20px;
  right: 30px;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 175, 55, 0.3);
}

.testimonial-stars {
  color: var(--gold-primary);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--grey-700);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-gradient-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  font-weight: var(--fw-bold);
  font-size: 1rem;
}

.testimonial-author-name {
  font-weight: var(--fw-semibold);
  font-size: 0.95rem;
  color: var(--charcoal);
}

.testimonial-author-role {
  font-size: 0.8rem;
  color: var(--grey-400);
}

/* ============================================================
   PRICING CARDS
   ============================================================ */
.pricing-card {
  background: var(--white);
  border: 2px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 45px 35px;
  text-align: center;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.pricing-card.featured {
  border-color: var(--gold-primary);
  transform: scale(1.03);
}

.pricing-card.featured::after {
  content: 'POPULAR';
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--gold-gradient-btn);
  color: var(--charcoal);
  padding: 5px 40px;
  font-size: 0.7rem;
  font-weight: var(--fw-bold);
  letter-spacing: 1px;
  transform: rotate(45deg);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-primary);
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-6px);
}

.pricing-label {
  font-size: 0.8rem;
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

.pricing-amount {
  font-size: 3rem;
  font-weight: var(--fw-extrabold);
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.pricing-amount span {
  font-size: 1rem;
  font-weight: var(--fw-regular);
  color: var(--grey-600);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  text-align: left;
}

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--grey-100);
  font-size: 0.9rem;
  color: var(--grey-700);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li i {
  color: var(--gold-primary);
  font-size: 0.8rem;
}

.pricing-features li.disabled {
  color: var(--grey-400);
  text-decoration: line-through;
}

.pricing-features li.disabled i {
  color: var(--grey-400);
}

/* ============================================================
   FEATURE COMPARISON TABLE
   ============================================================ */
.comparison-table {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--grey-200);
}

.comparison-table thead th {
  background: var(--charcoal);
  color: var(--white);
  font-weight: var(--fw-semibold);
  font-size: 0.9rem;
  padding: 18px 20px;
  border: none;
  text-align: center;
  vertical-align: middle;
}

.comparison-table thead th:first-child {
  text-align: left;
}

.comparison-table thead th.featured-col {
  background: var(--gold-primary);
  color: var(--charcoal);
}

.comparison-table tbody td {
  padding: 14px 20px;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--grey-100);
  text-align: center;
  vertical-align: middle;
}

.comparison-table tbody td:first-child {
  text-align: left;
  font-weight: var(--fw-medium);
  color: var(--charcoal);
}

.comparison-table tbody tr:hover {
  background: rgba(212, 175, 55, 0.04);
}

.comparison-table .check {
  color: var(--gold-primary);
}

.comparison-table .cross {
  color: var(--grey-400);
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-accordion .accordion-item {
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md) !important;
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition-base);
}

.faq-accordion .accordion-item:hover {
  border-color: rgba(212, 175, 55, 0.3);
}

.faq-accordion .accordion-button {
  font-family: var(--font-primary);
  font-weight: var(--fw-semibold);
  font-size: 1rem;
  color: var(--charcoal);
  padding: 20px 25px;
  background: var(--white);
  box-shadow: none !important;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: rgba(212, 175, 55, 0.05);
  color: var(--gold-dark);
}

.faq-accordion .accordion-button::after {
  background-image: none;
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.9rem;
  color: var(--gold-primary);
  transition: transform 0.3s ease;
  width: auto;
  height: auto;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

.faq-accordion .accordion-body {
  padding: 0 25px 25px;
  color: var(--grey-600);
  font-size: 0.92rem;
  line-height: 1.8;
}

/* ============================================================
   CONTACT FORM & INFO CARDS
   ============================================================ */
.contact-form .form-control,
.contact-form .form-select {
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 0.9rem;
  font-family: var(--font-primary);
  transition: var(--transition-base);
  background: var(--white);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

.contact-form .form-label {
  font-weight: var(--fw-medium);
  font-size: 0.85rem;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.contact-info-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  padding: 30px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: var(--transition-smooth);
}

.contact-info-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: var(--shadow-md);
}

.contact-info-card .info-icon {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
  color: var(--gold-primary);
  font-size: 1.2rem;
}

.contact-info-card h6 {
  font-weight: var(--fw-semibold);
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.contact-info-card p {
  color: var(--grey-600);
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.6;
}

/* ============================================================
   PAGE HEADER / INNER PAGES BANNER
   ============================================================ */
.page-header {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.637) 0%, rgba(0, 0, 0, 0.548) 100%),
              url('./images/about.avif') center/cover no-repeat;
  padding: 160px 0 80px;
  text-align: center;
  /* position: relative; */
  overflow: hidden;
  height: 400px;
  border-radius: 20px;
  margin:20px;
  margin-top:0px !important;
}

/* .page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--white), transparent);
} */

.page-header h1 {
  color: var(--white);
  font-size: 3rem;
  font-weight: var(--fw-extrabold);
  margin-bottom: 1rem;
}

.page-header .breadcrumb {
  justify-content: center;
  margin: 0;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.page-header .breadcrumb-item.active {
  color: var(--gold-primary);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.3);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer-premium {
  background: var(--dark-bg);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 80px;
}

.footer-premium .footer-brand {
  font-size: 1.5rem;
  font-weight: var(--fw-extrabold);
  color: var(--white);
  margin-bottom: 1rem;
  display: inline-block;
}

.footer-premium .footer-brand span {
  color: var(--gold-primary);
}

.footer-premium .footer-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  max-width: 300px;
}

.footer-premium h6 {
  color: var(--white);
  font-weight: var(--fw-semibold);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 12px;
}

.footer-premium h6::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold-primary);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  transition: var(--transition-base);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--gold-primary);
  padding-left: 5px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 1.5rem;
}
.navbar-social {
  display: flex;
  gap: 12px;
  margin-top: 1.5rem;
}
.navbar-social.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition-smooth);
  font-size: 0.9rem;
  background-color: #A8882C;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition-smooth);
  font-size: 0.9rem;
}

.footer-social a:hover {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: var(--charcoal);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 25px 0;
  margin-top: 60px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

/* ============================================================
   ABOUT / VALUES SECTION
   ============================================================ */
.value-card {
  text-align: center;
  padding: 40px 25px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--grey-200);
  transition: var(--transition-smooth);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 175, 55, 0.3);
}

.value-card .value-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0.04) 100%);
  color: var(--gold-primary);
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

/* Counter / Achievement */
.counter-box {
  text-align: center;
  padding: 30px;
}

.counter-number {
  font-size: 3rem;
  font-weight: var(--fw-extrabold);
  color: var(--gold-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.counter-label {
  font-size: 0.88rem;
  color: var(--grey-600);
  font-weight: var(--fw-medium);
}

/* ============================================================
   MECHANICAL SERVICES
   ============================================================ */
.service-detail-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 35px 30px;
  transition: var(--transition-smooth);
  height: 100%;
}

.service-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 175, 55, 0.3);
}

.service-detail-card .service-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0.04) 100%);
  color: var(--gold-primary);
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  transition: var(--transition-smooth);
}

.service-detail-card:hover .service-icon {
  background: var(--gold-gradient-btn);
  color: var(--charcoal);
}

.service-detail-card h5 {
  font-weight: var(--fw-semibold);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.service-detail-card p {
  color: var(--grey-600);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ============================================================
   LEGAL / CONTENT PAGES
   ============================================================ */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h3 {
  font-size: 1.3rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--grey-200);
}

.legal-content p,
.legal-content li {
  color: var(--grey-600);
  font-size: 0.92rem;
  line-height: 1.9;
}

.legal-content ul {
  padding-left: 1.5rem;
}

.legal-content ul li {
  margin-bottom: 8px;
}

/* ============================================================
   MAP EMBED
   ============================================================ */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--grey-200);
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--dark-bg) 100%);
  border-radius: var(--radius-xl);
  padding: 60px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2rem;
}

/* ============================================================
   SCROLL-TO-TOP BUTTON
   ============================================================ */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-gradient-btn);
  color: var(--charcoal);
  border: none;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  z-index: 1000;
  box-shadow: var(--shadow-gold);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold-lg);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE OVERRIDES
   ============================================================ */
@media (max-width: 991.98px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  .display-hero { font-size: 3rem; }
  .hero-section .hero-title { font-size: 2.8rem; }
  .section-padding { padding: 70px 0; }
  .hero-form-card { padding: 30px; margin-top: 40px; }
  .cta-banner { padding: 40px 30px; }
  .step-connector { display: none; }
  .page-header { padding: 140px 0 60px; }
  .page-header h1 { font-size: 2.2rem; }
}

@media (max-width: 767.98px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  .display-hero { font-size: 2.5rem; }
  .hero-section .hero-title { font-size: 2.2rem; }
  .section-padding { padding: 50px 0; }
  .section-title { font-size: 1.5rem; }
  .section-subtitle { font-size: 1rem; }
  .stat-number { font-size: 2.5rem; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-6px); }
  .navbar-premium .navbar-collapse {
    background: rgba(15, 15, 26, 0.98);
    padding: 20px;
    border-radius: var(--radius-md);
    margin-top: 10px;
  }
  .hero-section{
      height:500px !important;
  }
}

@media (max-width: 575.98px) {
  .hero-section .hero-title { font-size: 1.8rem; }
  .hero-form-card { padding: 25px 20px; }
  .cta-banner { padding: 30px 20px; }
  .premium-card { padding: 30px 20px; }
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.gold-border-left {
  border-left: 3px solid var(--gold-primary);
  padding-left: 20px;
}

.gold-dot::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-primary);
  display: inline-block;
  margin-right: 10px;
}

.hover-gold:hover {
  color: var(--gold-primary) !important;
}

.img-gold-border {
  border: 3px solid var(--gold-primary);
  border-radius: var(--radius-lg);
}

.overflow-hidden {
  overflow: hidden;
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 30px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: var(--transition-smooth);
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
  color: #fff;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}















/*=============== CARD ===============*/
.cr-container {
  display: grid;
  place-items: center;
  margin-inline: 1.5rem;
  padding-bottom: 80px;
}

.cr-card__container {
  display: grid;
  row-gap: 3.5rem;
}

.cr-card__article {
  position: relative;
  overflow: hidden;
}

.cr-card__img {
  width: 328px;
  border-radius: 1.5rem;
  height: 400px;
  object-fit: cover;
}

.cr-card__data {
  width: 280px;
  background-color: var(--white);
  padding: 1.5rem 1rem;
  box-shadow: 0 8px 24px hsla(0, 0%, 0%, .15);
  border-radius: 1rem;
  position: absolute;
  bottom: -9rem;
  left: 0;
  right: 0;
  margin-inline: auto;
  opacity: 0;
  transition: opacity 1s 1s;
}

.cr-card__description {
  display: block;
  font-size: var(--small-font-size);
  margin-bottom: .25rem;
}

.cr-card__title {
  font-size: 20px;
  font-weight: 500;
  color: var(--title-color);
  margin-bottom: .75rem;
}

.cr-card__button {
  text-decoration: none;
  font-size: var(--small-font-size);
  font-weight: 500;
  color: var(--first-color);
}

.cr-card__button:hover {
  text-decoration: underline;
}

/* Naming animations in hover */
.cr-card__article:hover .cr-card__data {
  animation: show-data 1s forwards;
  opacity: 1;
  transition: opacity .3s;
}

.cr-card__article:hover {
  animation: remove-overflow 2s forwards;
}

.cr-card__article:not(:hover) {
  animation: show-overflow 2s forwards;
}

.cr-card__article:not(:hover) .cr-card__data {
  animation: remove-data 1s forwards;
}

/* Card animation */
@keyframes show-data {
  50% {
    transform: translateY(-10rem);
  }
  100% {
    transform: translateY(-7rem);
  }
}

@keyframes remove-overflow {
  to {
    overflow: initial;
  }
}

@keyframes remove-data {
  0% {
    transform: translateY(-7rem);
  }
  50% {
    transform: translateY(-10rem);
  }
  100% {
    transform: translateY(.5rem);
  }
}

@keyframes show-overflow {
  0% {
    overflow: initial;
    pointer-events: none;
  }
  50% {
    overflow: hidden;
  }
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 340px) {
  .cr-container {
    margin-inline: 1rem;
  }

  .cr-card__data {
    width: 250px;
    padding: 1rem;
  }
}

/* For medium devices */
@media screen and (min-width: 768px) {
  .cr-card__container {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1.5rem;
  }
}

/* For large devices */
@media screen and (min-width: 1120px) {
 

  .cr-card__container {
    grid-template-columns: repeat(4, 1fr);
  }
  .cr-card__img {
    width: 300px;
  }
  .cr-card__data {
      width: 280px;
      padding-inline: 1.5rem;
  }
}

.image-comparison {
  max-width: 90%;
  margin: 20px auto;
  border-radius: 20px;
  overflow: hidden;
}

.image-comparison img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
}

.image-comparison .images-container {
  position: relative;
  display: flex;
}

.image-comparison .images-container .before-image {
  position: absolute;
  top: 0;
  width: 50%;
}

.image-comparison .slider {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.image-comparison .slider-line {
  position: absolute;
  height: 100%;
  width: 4px;
  background: #fff;
  left: 50%;
  transform: translateX(-50%);
}

.image-comparison .slider-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 60px;
  height: 60px;
  color: #fff;
  transform: translate(-50%, -50%) rotateZ(90deg);
}
.before-icon-box {
  position: absolute;
  top:30%;
}
.before-icon {
  transform-style: preserve-3d;
  width: 85px;
  height: 85px;
  transform: rotateX(0) rotateY(180deg) rotate(10deg);
}
.icon-text {
  color: #000;
  font-size: 22px;
  font-weight: 600;
  line-height: 32px;
}
.after-icon-box {
  position: absolute;
  /* inset: auto 0% 0% auto; */
  bottom: 30%;
  right: 10%;
}
.after-icon {
  width: 85px;
  height: 85px;
  margin-bottom: 10px;
}
.swiper-container {
  width: 100%;
  height: 100%;
}
.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.swiper-slide img{
  height: 400px;
  width: 100%;
  object-fit: cover;
}
h5.home-service.card-title {
  font-size: 25px;
  padding-top: 20px;
}
.navbar-brand img{
  /*width: 30%;*/
  max-width: 280px;
}
a.navbar-brand {
  width: 22%;
}


@keyframes scroll {
	0% { transform: translateX(0); }
	100% { transform: translateX(calc(-250px * 7))}
}

.slider {
	/* height: 100px; */
	margin: auto;
	overflow:hidden;
	position: relative;
	width: auto;
	margin-top: 20px;
	.slide-track {
		animation: scroll 40s linear infinite;
		display: flex;
		width: calc(220px * 14);
    gap:20px

	}
	.slide {
		/* height: 100px; */
		width: 220px;
    /* border:1px solid #bebebe; */
	}
}
.slide img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 70%;
}
.sticky-form-container {
  position: sticky;
  top: 2rem;
}

.form-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFFFFF 100%);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.form-card:hover {
  box-shadow: 0 16px 40px rgba(15, 118, 110, 0.12);
  border-color: var(--secondary-color);
}

.form-card h2 {
 
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.form-card .form-subtitle {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
 
  font-weight: 400;
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  display: block;
}

.form-control,
.form-select {
  border: 2px solid var(--border-color);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
  outline: none;
}

.form-control::placeholder {
  color: var(--text-light);
  opacity: 0.7;
}

.btn-submit {
  width: 100%;
  padding: 0.95rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  background: var(--gold-primary);
  border: none;
  border-radius: 8px;
  color: rgb(0, 0, 0);
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 16px rgba(15, 118, 110, 0.3);
  margin-top: 1rem;
}
.form-control{
  background-color: #f5f5f5 !important;
}
select#experience {
  background-color: #f5f5f5;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15, 118, 110, 0.4);
  color: white;
  text-decoration: none;
}

.btn-submit:active {
  transform: translateY(0);
}

.form-footer {
  font-size: 0.85rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .main-container {
      flex-direction: column;
  }

  .left-section,
  .right-section {
      flex: 0 0 100%;
  }

  .sticky-form-container {
      position: static;
      margin-top: 2rem;
  }

  .header-section h1 {
      font-size: 2rem;
  }
}
@media (max-width: 768px) {
    .navbar-brand img {
        width: 100%;
    }
    a.navbar-brand {
        width: 50%;
    }
    .navbar-premium{
        margin: 0;
    }
    .navbar-premium .nav-link {
    color: #fff !important;

}
}