.elementor-kit-12{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-color-kadence1:#2B6CB0;--e-global-color-kadence2:#215387;--e-global-color-kadence3:#1A202C;--e-global-color-kadence4:#2D3748;--e-global-color-kadence5:#4A5568;--e-global-color-kadence6:#718096;--e-global-color-kadence7:#EDF2F7;--e-global-color-kadence8:#F7FAFC;--e-global-color-kadence9:#ffffff;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-12.el-is-editing{--global-palette1:#2B6CB0;--global-palette2:#215387;--global-palette3:#1A202C;--global-palette4:#2D3748;--global-palette5:#4A5568;--global-palette6:#718096;--global-palette7:#EDF2F7;--global-palette8:#F7FAFC;--global-palette9:#ffffff;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.elementor-widget:not(:last-child){margin-bottom:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1025px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:768px;}}/* Start custom CSS *//* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Teko:wght@600;700&display=swap');

/* ==========================================================================
   1. GLOBAL DESIGN SYSTEM VARIABLES
   ========================================================================== */
:root {
  /* Brand Colors */
  --clr-primary: #e50914;
  --clr-primary-hover: #ff1e27;
  --clr-bg-dark: #0b0c10;
  --clr-card-bg: #121316;
  --clr-border: rgba(255, 255, 255, 0.08);

  /* Text Colors */
  --clr-text-main: #ffffff;
  --clr-text-sub: #e5e7eb;
  --clr-text-muted: #9ca3af;

  /* Typography */
  --ff-heading: 'Teko', sans-serif;
  --ff-body: 'Inter', sans-serif;

  /* Layout & Utility Variables */
  --shadow-text: 0 4px 12px rgba(0, 0, 0, 0.9);
  --shadow-card: 0 20px 40px rgba(0, 0, 0, 0.6);
  --container-max-width: 1280px;
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --transition-fast: all 0.3s ease;
}

/* ==========================================================================
   2. BASE RESET & GLOBAL UTILITIES
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--ff-body);
  background-color: var(--clr-bg-dark);
  color: var(--clr-text-main);
  -webkit-font-smoothing: antialiased;
}

/* Helper Classes */
.text-red {
  color: var(--clr-primary);
}

.badge-subtitle {
  display: inline-block;
  color: var(--clr-primary);
  font-size: clamp(0.75rem, 2vw, 0.85rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--ff-body);
  font-size: clamp(0.8rem, 2.5vw, 0.88rem);
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  cursor: pointer;
  border: none;
  width: auto;
}

.btn-primary {
  background-color: var(--clr-primary);
  color: var(--clr-text-main);
  box-shadow: 0 6px 20px rgba(229, 9, 20, 0.4);
}

.btn-primary:hover {
  background-color: var(--clr-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(229, 9, 20, 0.6);
}

/* ==========================================================================
   3. HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 75vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-image: url('YOUR-IMAGE-PATH.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 30px 20px 15px;
}

.hero-content {
  width: 100%;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-title {
  font-family: var(--ff-heading);
  font-size: clamp(2.8rem, 10vw, 6.5rem);
  font-weight: 700;
  line-height: 0.9;
  color: var(--clr-text-main);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 16px;
  text-shadow: var(--shadow-text);
  word-break: break-word;
}

.hero-description {
  color: var(--clr-text-sub);
  font-size: clamp(0.88rem, 2.5vw, 1rem);
  line-height: 1.5;
  margin-bottom: 28px;
  max-width: 540px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}

/* Hero Bottom Info Strip */
.info-strip-container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 20px 24px;
}

.info-strip {
  display: flex;
  flex-wrap: wrap;
  background-color: var(--clr-card-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.info-card {
  flex: 1 1 250px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-right: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  text-align: left;
}

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-main);
  flex-shrink: 0;
}

.card-text {
  display: flex;
  flex-direction: column;
}

.card-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--clr-text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.card-value {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-text-main);
  white-space: nowrap;
}

/* ==========================================================================
   4. OUR SERVICES SECTION
   ========================================================================== */
.services-section {
  width: 100%;
  background-color: var(--clr-bg-dark);
  padding: 80px 20px;
  color: var(--clr-text-main);
}

.services-container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.services-header {
  margin-bottom: 48px;
}

.services-title {
  font-family: var(--ff-heading);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--clr-text-main);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-card {
  background-color: var(--clr-card-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition-fast);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--clr-primary);
  opacity: 0.4;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(229, 9, 20, 0.4);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.service-card:hover::before {
  opacity: 1;
}

.card-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.service-card:hover .card-image-wrap img {
  transform: scale(1.05);
}

.icon-badge {
  position: absolute;
  bottom: 12px;
  left: 16px;
  background-color: var(--clr-primary);
  color: var(--clr-text-main);
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.card-body {
  padding: 24px 20px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-family: var(--ff-heading);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--clr-text-main);
}

.card-description {
  color: var(--clr-text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.btn-service-link {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #E50914;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.btn-service-link:hover {
  background-color: #B20710;
  color: #FFFFFF;
}



/* ==========================================================================
   5. OUR PROCESS SECTION
   ========================================================================== */
.process-section {
  width: 100%;
  background-color: var(--clr-bg-dark);
  padding: 80px 20px;
  color: var(--clr-text-main);
}

.process-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.process-header {
  text-align: center;
  margin-bottom: 60px;
}

.process-title {
  font-family: var(--ff-heading);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--clr-text-main);
  margin-bottom: 12px;
}

.process-subtitle {
  color: var(--clr-text-muted);
  font-size: 0.95rem;
  max-width: 600px;
  margin: 0 auto;
}

.process-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
}

.process-track::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 10%;
  right: 10%;
  height: 1px;
  background-color: rgba(229, 9, 20, 0.4);
  z-index: 1;
}

.process-step {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.step-number {
  width: 48px;
  height: 48px;
  background-color: var(--clr-primary);
  color: var(--clr-text-main);
  font-family: var(--ff-heading);
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 0 0 6px var(--clr-bg-dark);
}

.step-title {
  font-family: var(--ff-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--clr-text-main);
  margin-bottom: 10px;
}

.step-description {
  color: var(--clr-text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* ==========================================================================
   6. ABOUT US SECTION
   ========================================================================== */
.about-section {
  width: 100%;
  background-color: var(--clr-bg-dark);
  padding: 80px 20px;
  color: var(--clr-text-main);
}

.about-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-title {
  font-family: var(--ff-heading);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--clr-text-main);
  margin-bottom: 20px;
}

.about-description {
  color: var(--clr-text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 28px;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--clr-text-main);
  font-size: 0.9rem;
  font-weight: 600;
}

.check-icon {
  width: 20px;
  height: 20px;
  background-color: var(--clr-primary);
  color: var(--clr-text-main);
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.about-btn {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid var(--clr-border);
  background-color: transparent;
  color: var(--clr-text-main);
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  transition: var(--transition-fast);
}

.about-btn:hover {
  background-color: var(--clr-primary);
  border-color: var(--clr-primary);
}

.about-image-wrap {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
}

.experience-badge {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--clr-primary);
  color: var(--clr-text-main);
  padding: 16px 20px;
  border-bottom-left-radius: var(--radius-lg);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.badge-number {
  font-family: var(--ff-heading);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}

.badge-text {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* ==========================================================================
   7. WHY CHOOSE US / GUARANTEES SECTION
   ========================================================================== */
.guarantees-section {
  width: 100%;
  background-color: var(--clr-bg-dark);
  padding: 80px 20px;
  color: var(--clr-text-main);
}

.guarantees-container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.guarantees-header {
  text-align: center;
  margin-bottom: 50px;
}

.guarantees-title {
  font-family: var(--ff-heading);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--clr-text-main);
}

.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.guarantee-card {
  background-color: var(--clr-card-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: var(--transition-fast);
}

.guarantee-card:hover {
  transform: translateY(-4px);
  border-color: rgba(229, 9, 20, 0.4);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(229, 9, 20, 0.3);
  background-color: rgba(229, 9, 20, 0.05);
  color: var(--clr-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

/* ==========================================================================
   8. TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
  width: 100%;
  background-color: var(--clr-bg-dark);
  padding: 80px 20px;
  color: var(--clr-text-main);
}

.testimonials-container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 50px;
}

.testimonials-title {
  font-family: var(--ff-heading);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--clr-text-main);
  margin-bottom: 12px;
}

.testimonials-subtitle {
  color: var(--clr-text-muted);
  font-size: 0.95rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.testimonial-card {
  background-color: var(--clr-card-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(229, 9, 20, 0.3);
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.star-rating {
  color: var(--clr-primary);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.quote-mark {
  color: rgba(229, 9, 20, 0.25);
  font-family: Georgia, serif;
  font-size: 2.8rem;
  line-height: 0.5;
  font-weight: 700;
}

.quote-text {
  color: #e2e8f0;
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 30px;
  flex-grow: 1;
}

.author-block {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.avatar {
  width: 36px;
  height: 36px;
  background-color: var(--clr-primary);
  color: var(--clr-text-main);
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-family: var(--ff-heading);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--clr-text-main);
  margin: 0 0 4px 0;
}

.vehicle-model {
  color: var(--clr-text-muted);
  font-size: 0.75rem;
}

/* ==========================================================================
   9. CALL TO ACTION / CONTACT SECTION
   ========================================================================== */
.cta-contact-section {
  position: relative;
  width: 100%;
  background-color: var(--clr-bg-dark);
  padding: 80px 20px 0 20px;
  color: var(--clr-text-main);
  overflow: hidden;
}

.cta-bg-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, rgba(229, 9, 20, 0.15) 0%, rgba(11, 12, 16, 0) 75%);
  pointer-events: none;
  z-index: 1;
}

.cta-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cta-content {
  max-width: 650px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-title {
  font-family: var(--ff-heading);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--clr-text-main);
  margin-bottom: 16px;
}

.cta-description {
  color: var(--clr-text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--clr-primary);
  color: var(--clr-text-main);
  font-family: var(--ff-heading);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.phone-btn:hover {
  background-color: #c70711;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(229, 9, 20, 0.4);
}

.cta-image-wrap {
  width: 100%;
  max-width: 480px;
  margin-top: 10px;
  display: flex;
  justify-content: center;
}

.cta-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* ==========================================================================
   10. SITE FOOTER
   ========================================================================== */
.site-footer {
  width: 100%;
  background-color: var(--clr-bg-dark);
  padding: 80px 20px 30px;
  color: var(--clr-text-main);
  border-top: 1px solid var(--clr-border);
}

.footer-container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 1.1fr 1.1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand-title {
  font-family: var(--ff-heading);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--clr-text-main);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.brand-description {
  color: var(--clr-text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 320px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background-color: var(--clr-card-bg);
  border: 1px solid var(--clr-border);
  color: var(--clr-text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.social-icon:hover {
  background-color: var(--clr-primary);
  border-color: var(--clr-primary);
  color: var(--clr-text-main);
  transform: translateY(-2px);
}

.col-heading {
  font-family: var(--ff-heading);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--clr-text-main);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--clr-text-muted);
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-links a:hover {
  color: var(--clr-primary);
  padding-left: 4px;
}

.contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--clr-text-muted);
  font-size: 0.88rem;
  line-height: 1.4;
}

.contact-info a {
  color: var(--clr-text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-info a:hover {
  color: var(--clr-primary);
}

.contact-icon {
  color: var(--clr-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--clr-border);
  text-align: center;
}

.footer-bottom p {
  color: var(--clr-text-muted);
  font-size: 0.82rem;
  margin: 0;
}

/* ==========================================================================
   11. MEDIA QUERIES (DESKTOP & TABLET ADJUSTMENTS)
   ========================================================================== */
@media (min-width: 1025px) {
  .info-card {
    border-bottom: none;
  }
  .info-card.border-none {
    border-right: none;
  }
}

@media (max-width: 1024px) {
  .info-card {
    flex: 1 1 50%;
  }

  .info-card:nth-child(2n) {
    border-right: none;
  }

  .guarantees-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .services-grid,
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image-wrap {
    max-height: 450px;
  }
}

/* ==========================================================================
   12. MOBILE OVERRIDES (640PX AND BELOW - CENTERED DESIGN)
   ========================================================================== */
@media (max-width: 640px) {
  /* Layout Padding Adjustments */
  .hero-container {
    padding: 40px 16px 20px;
  }

  .info-strip-container,
  .services-section,
  .about-section,
  .guarantees-section,
  .testimonials-section,
  .cta-contact-section {
    padding: 50px 16px;
  }

  .cta-contact-section {
    padding-bottom: 0;
  }

  .site-footer {
    padding: 50px 16px 24px;
  }

  .services-header,
  .process-header {
    margin-bottom: 32px;
  }

  /* Single Column Grids */
  .guarantees-grid,
  .testimonials-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-grid {
    gap: 36px;
    margin-bottom: 40px;
  }

  /* Full-Width Action Buttons */
  .btn,
  .phone-btn {
    width: 100%;
    justify-content: center;
  }

  .phone-btn {
    font-size: 1.25rem;
    padding: 12px 20px;
  }

  /* Mobile Info Strip Vertical Stack */
  .info-card {
    flex: 1 1 100%;
    border-right: none;
    padding: 14px 16px;
    justify-content: center;
    text-align: center;
  }

  .info-card:last-child {
    border-bottom: none;
  }

  .card-text {
    align-items: center;
  }

  /* Mobile Process Track Vertical Setup */
  .process-track {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .process-track::before {
    top: 24px;
    bottom: 24px;
    left: 50%;
    right: auto;
    width: 1px;
    height: auto;
    transform: translateX(-50%);
  }

  .process-step {
    padding-left: 0;
    align-items: center;
    text-align: center;
  }

  .step-number {
    position: static;
    margin-bottom: 16px;
  }

  /* Mobile Center Alignment - Services, About, Guarantees, Testimonials, CTA */
  .services-header,
  .about-container,
  .guarantee-card,
  .testimonial-card,
  .cta-content {
    text-align: center;
    align-items: center;
  }

  .about-list {
    align-items: center;
  }

  .about-list li {
    justify-content: center;
  }

  .guarantee-card {
    padding: 24px 20px;
  }

  .icon-box {
    margin-left: auto;
    margin-right: auto;
  }

  .card-top {
    justify-content: center;
    gap: 16px;
  }

  .author-block {
    justify-content: center;
  }

  .author-info {
    align-items: center;
    text-align: center;
  }

  .cta-bg-glow {
    width: 100%;
  }

  .cta-image-wrap {
    max-width: 320px;
  }

  .experience-badge {
    padding: 12px 16px;
  }

  .badge-number {
    font-size: 1.8rem;
  }

  /* Mobile Footer Center Alignment */
  .footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .brand-description {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .social-links {
    justify-content: center;
  }

  .contact-info li {
    justify-content: center;
    text-align: center;
  }

  .footer-links a:hover {
    padding-left: 0;
  }
}/* End custom CSS */