:root {
    /* Deep black emphasis design system */
    --background: hsl(0, 0%, 37%);
    --foreground: hsl(0, 0%, 98%);
    
    /* Luxury deep blacks */
    --deep-black: hsl(0, 0%, 23%);
    --premium-black: hsl(0, 0%, 8%);
    --charcoal-black: hsl(0, 0%, 37%);
    --dark-gray: hsl(0, 0%, 23%);
    
    /* Minimal whites */
    --pure-white: hsl(0, 0%, 98%);
    --off-white: hsl(0, 0%, 94%);
    --light-accent: hsl(0, 0%, 90%);
    
    /* Signature red - premium accent */
    --signature-red: hsl(0, 99%, 42%);
    --signature-red-dark: hsl(0, 90%, 32%);
    --signature-red-glow: hsl(0, 84%, 65%);
    
    /* Subtle details */
    --border-dark: hsl(0, 0%, 20%);
    --border-subtle: hsl(0, 0%, 16%);
    --glass-overlay: rgba(255, 255, 255, 0.05);
    --shadow-deep: rgba(0, 0, 0, 0.8);
    
    /* Premium shadows and effects */
    --shadow-luxury: 0 25px 50px rgba(0, 0, 0, 0.6);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-red-premium: 0 0 40px rgba(244, 63, 94, 0.4);
    --glow-subtle: 0 0 20px rgba(255, 255, 255, 0.1);
}

html {
  scroll-behavior: smooth;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    overflow-x: hidden;
}

.website-container {
    min-height: 100vh;
    background: var(--deep-black);
    color: var(--pure-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Premium glass effect cards */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Premium hover effects */
.premium-hover {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
}


/* Navigation */
.nav-bar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-subtle);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    gap: 10px;
  margin-left: 10px; /* 👈 Increase this for more space */
}

.logo-img {
    width: 50px;       /* Set width */
    height: 50px;      /* Set height to match width */
    border-radius: 50%; /* Make it a circle */
    object-fit: cover;  /* Crop and scale if image isn't square */
    margin-left: 20px; /* Add more as needed */
}

.brand-text {
    color: var(--pure-white);
    font-weight: bold;
    font-size: 18px;
    margin-left: 15px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    color: var(--pure-white);
    text-decoration: none;
    font-size: 14px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: var(--signature-red);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--signature-red);
}

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

.book-now-btn {
    background: var(--signature-red);
    color: var(--pure-white);
    border: none;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s duration;
}

.book-now-btn:hover {
    background: var(--signature-red-dark);
}

.mobile-menu-btn {
    display: none;
}

.mobile-toggle {
    background: none;
    border: none;
    color: var(--pure-white);
    font-size: 20px;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    border-top: 1px solid var(--border-subtle);
    padding: 16px 0;
}

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.mobile-nav-link {
    color: var(--pure-white);
    text-decoration: none;
    font-size: 14px;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--signature-red);
}

.mobile-book-btn {
  background-color: var(--signature-red) !important;
  color: var(--pure-white) !important;
  display: flex; /* this enables flexbox layout inside */
  justify-content: center; /* horizontal centering */
  align-items: center; /* vertical centering */
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 14px 0;
  margin: 0 auto;
  border: none;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(255, 0, 0, 0.2);
  transition: transform 0.2s ease;
  text-align: center; /* backup centering */
}

.mobile-book-btn:hover {
  transform: translateY(-2px); /* slight lift on hover */
}

.hero-section {
  position: relative;
  background-image: url('assets/Header.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 120px 20px;
  color: white;
  text-align: center;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(43, 42, 42, 0.013);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  width: 100%;
  padding: 0 5vw;
  text-align: center; /* Center all text */
  margin-top: -10px;
}

.hero-text {
  animation: fadeIn 0.3s ease-out;
}

.hero-title {
  font-size: clamp(26px, 5vw, 48px);
  font-weight: bold;
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.2;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.3);
}

.title-accent {
  color: var(--signature-red, #e63946);
}

.hero-subtitle {
  font-size: clamp(16px, 2.5vw, 20px);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  font-weight: 300;
}

.hero-description {
  max-width: 700px;
  margin: 0 auto 24px;
}

.hero-desc-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin-top: 0;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 100px 16px;
    min-height: 540px;
    text-align: center;
  }

  .hero-content {
    text-align: center;
    padding: 0;
  }

  .hero-title {
    font-size: clamp(22px, 6vw, 38px);
  }

  .hero-subtitle {
    margin-bottom: 24px;
  }

  .hero-description {
    margin-bottom: 20px;
  }
}

/* Stats Section */
.stats-container {
  display: flex;
  justify-content: center; /* ✅ centered */
  align-items: center;
  gap: 32px;
  margin-top: 32px;
  margin-bottom: 32px;
  animation: countUp 0.3s ease-out;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 20px;
  font-weight: bold;
  color: var(--signature-red);
}

.stat-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero CTA */
.hero-cta {
    margin-top: 48px;
}

.cta-button {
    background: var(--signature-red);
    color: var(--pure-white);
    border: none;
    font-size: 20px;
    padding: 16px 32px;
    border-radius: 9px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 40px rgba(244, 63, 94, 0.4);
    margin-top: -10px;
}

.cta-button:hover {
    background: var(--signature-red-dark);
    transform: translateY(-2px);
}

.cta-arrow {
    transition: transform 0.3s ease;
}

.cta-button:hover .cta-arrow {
    transform: translateX(4px);
}

/* About Section */
.about-section {
    padding: 128px 0;
    background: var(--premium-black);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: clamp(24px, 4vw, 40px);
    font-weight: bold;
    color: var(--pure-white);
    margin-bottom: 3px;
    text-align: center
}

.section-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.quality-tagline {
    color: rgb(255, 0, 0);
    font-weight: 300;
}

.transform-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    margin-bottom: 24px;
    text-align: center 
}

/* Features Grid Styling */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0 120px;
  margin: 32px auto 0;
  max-width: 1440px;
  overflow-x: hidden;
  box-sizing: border-box;
}

.feature-card {
  background-color: #2f2f2f;
  border: 1px solid #444;
  padding: 24px;
  border-radius: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  height: 100%; /* lock height to avoid shift */
  width: 100%;  /* prevent width overflow */
  box-sizing: border-box;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform, box-shadow;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}


.feature-card i,
.feature-card svg {
  display: inline-block;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  color: #ff0015;
  flex-shrink: 0;
  aspect-ratio: 1 / 1;
  line-height: 1;
  vertical-align: middle;
  transition: color 0.3s ease;
}

.feature-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.feature-description {
  font-size: 14px;
  color: #ccc;
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 48px;
    gap: 28px;
    max-width: 960px;
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    padding: 0 32px;
    gap: 24px;
    max-width: 600px;
  }

  .feature-card {
    padding: 24px;
    height: auto;
  }

  .feature-title {
    font-size: 17px;
  }

  .feature-description {
    font-size: 14px;
  }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* GALLERY */
.gallery-section {
  padding: 80px 20px;
  background: var(--premium-black);
}

.gallery-header {
  text-align: center;
  margin-bottom: 40px;
}

.gallery-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--pure-white);
  margin-bottom: 12px;
}

.gallery-tagline {
  font-size: 17px;
  color: #d4d4d4;
  max-width: 700px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* ensures stacking on small screens */
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  margin-bottom: 32px;
}

.gallery-card {
  border-radius: 16px;
  overflow: hidden;
  background: var(--pure-white);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 48px 8px; /* More top/bottom, less side */
  height: 635px;
  width: 370px;
  box-sizing: border-box;
}

/* Instagram Embed Tweaks */
.gallery-card blockquote.instagram-media {
  all: unset;
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  background: none !important;
}

/* Mobile Tweaks */
@media (max-width: 768px) {
  .gallery-grid {
    display: flex !important;         /* ✅ switch to flex for simpler centering */
    flex-direction: column;           /* stack cards vertically */
    align-items: center;              /* center cards horizontally */
    gap: 20px;
  }

  .gallery-card {
    padding: 16px 10px 9px;
    width: 340px;
    height: auto;
  }

  .gallery-card .instagram-media {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
  }
}

/* Services Section */
.services-section {
    padding: 96px 20px;
    background: var(--premium-black);
    position: relative;
}

/* Top background image for Services */
.services-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background-image: url('https://i.imgur.com/YOUR_IMAGE_ID.jpg'); /* Replace with your own image */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 0;
    opacity: 0.3;
}

.service-description::after {
    content: "";
    display: block;
    height: 1px;
    width: 100%;
    background: rgba(255, 255, 255, 0.1); /* or dark */
    margin: 12px 0;
}

.services-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 12px;
}

.service-card {
    border-radius: 12px;
    padding: 6px 12px; /* Reduced padding */
    display: flex;
    flex-direction: column;
    height: 660px; /* desktop */
    box-shadow: 0 2px 4px rgba(0,0,0,0.05); /* Softer shadow */
    overflow: hidden;
}

.service-card.white-bg {
    background: var(--pure-white);
}

.service-card.gray-bg {
    background: #575757;
}

/* Target the first 3 service cards and make all text gray */
.service-card:nth-of-type(-n+3) {
  color: #4a4a4a;
}

/* Override any nested .dark-text inside them */
.service-card:nth-of-type(-n+3) .dark-text {
  color: #4a4a4a !important;
}


/* Text styling */
.service-title {
    font-size: 18px;
    font-weight: 600;
      font-size: 16px;
  margin-bottom: 6px;
    padding-top: 4px;
    text-align: center;
}

.service-title.dark-text {
    color: var(--charcoal-black);
}

.service-title.light-text {
    color: var(--pure-white);
}

.service-description {
  font-size: 13.5px;
  margin-bottom: 8px;
  line-height: 1.4;
    text-align: center;
    color: rgba(255, 255, 255, 0.75);
}

/* Divider */
.service-divider {
    width: 100%;
    height: 1px;
    margin: 12px 0;
    background: rgb(220, 220, 220); /* Unified light style for all */
}

/* Pricing */
.service-price {
    font-weight: 700;
  font-size: 22px;
  margin-bottom: 6px;    
  text-align: center;
    color: var(--pure-white);
}

.service-pricing {
    margin-bottom: 12px;
}

.pricing-item {
    font-size: 13px;
    line-height: 1.4;
    text-align: center;
    color: var(--pure-white);
      font-size: 13px;

}

/* Features */
.service-features {
    margin-bottom: 12px;
    flex-grow: 1;
}

.service-features-list {
    padding: 0 10px;
    overflow: hidden;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: -5px;
}

.feature-check {
    display: inline-block;
    width: 32px; /* previously 19px */
    height: 32px; /* previously 19px */
    margin-right: 10px; /* give a bit more spacing */
    background-image: url('assets/check.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 4px
}

.feature-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--pure-white);
      font-size: 13px;

}

/* Buttons */
.service-book-btn {
    width: 100%;
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    background: var(--signature-red);
    color: var(--pure-white);
    transition: all 0.3s ease;
}

.service-book-btn.dark-btn {
    background: var(--charcoal-black);
    color: var(--pure-white);
}

.service-book-btn.light-btn {
    background: var(--pure-white);
    color: var(--charcoal-black);
}

.service-book-btn:hover {
    background: var(--signature-red-dark, #b30000);
    transform: translateY(-1px);
    opacity: 0.92;
}

/* Service Areas */
.service-areas-section {
    padding: 128px 0;
    background: var(--premium-black);
    text-align: center;
}

.service-area-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 32px;
    width: 300px;
    height: 300;
    margin: 0 auto;
    border-radius: 12px;
}

.area-icon {
    font-size: 64px;
    margin: 0 auto 16px;
    display: block;
}

.area-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 24px;
}

.map-container {
    width: 100%;
    height: 384px;
    border-radius: 8px;
    overflow: hidden;
}

/* Testimonials */
.testimonials-section {
    padding: 128px 0;
    background: var(--deep-black);
    overflow: hidden;
}

/* Title style */
.section-title {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4px;
}

/* Tagline style */
.section-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 24px;
}

.rating-display {
    font-size: 24px;
    margin-bottom: 24px;
}

.testimonials-container {
    position: relative;
}

.testimonials-scroll {
    display: flex;
    flex-wrap: nowrap; /* ensure cards stay in one row */
    animation: scroll 80s linear infinite;
    gap: 24px;
    width: max-content;
}

.testimonials-scroll:hover {
    animation-play-state: paused;
}

.testimonial-card {
    width: 320px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: 8px;
}

.testimonial-rating {
    margin-bottom: 16px;
    font-size: 18px;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
    font-style: italic;
    line-height: 1.5;
    font-size: 14px;
}

.testimonial-author {
    color: var(--signature-red);
    font-weight: 600;
}

.testimonials-cta {
  margin-top: 40px;   /* was 0px, increase to push button + tagline upward from testimonials */
  margin-bottom: 15px;
  text-align: center;
}

/* Optional: adjust this if needed */
.cta-button.small-cta {
  font-size: 18px;
  padding: 16px 32px;
  border-radius: 15px;
  margin-top: 8px;  /* slight space below tagline */
}

/* Tagline above the CTA button */
.cta-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
  text-align: center;
}

/* Areas We Serve Section - Slightly Smaller */
.areas-section {
  background-color: #000;
  padding: 64px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.areas-box {
  background-color: #2c2c2c;
  color: var(--foreground);
  padding: 33px 24px;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  max-width: 880px;
  width: 100%;
  text-align: center;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 14px;
}

.areas-icon {
  width: 42px;
  height: 42px;
  stroke: #ff0000;
  stroke-width: 2.4;
  margin-bottom: 14px;
}

.section-tagline {
  font-size: 18px;
  max-width: 640px;
  margin: 0 auto 28px;
  color: #f0f0f0;
}

.areas-map iframe {
  width: 100%;
  height: 340px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.28);
}


/* Contact Section */
.contact-section {
  padding: 128px 0;
  background: var(--premium-black);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
  align-items: start;
}

.contact-card,
.booking-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 12px;
  height: 600px;
  display: flex;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
}

.contact-title {
  font-size: 32px;
  font-weight: bold;
  color: var(--pure-white);
  margin-bottom: 32px;
}

.contact-info {
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}

.form-input,
.form-textarea {
  background: var(--charcoal-black);
  border: 1px solid var(--border-subtle);
  color: var(--pure-white);
  padding: 16px;
  border-radius: 8px;
  font-size: 16px;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-submit {
  background: red;
  color: var(--white);
  font-weight: 600;
  padding: 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: none;
}

.form-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.booking-iframe {
  flex: 1;
  border: none;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

/* Stack cards on mobile */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Footer */
.footer {
    background: var(--dark-gray);
    border-top: 1px solid var(--border-subtle);
    padding: 48px 0;
    width: 100%;
}

.footer-signature {
    text-align: center;
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;

}

.signature-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  max-width: 700px;
  margin-left: 30px;
  margin-right: 30px;
  margin-top: 0;
  margin-bottom: 48px;
}

.signature-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--signature-red);
    margin-bottom: 16px;
}

.signature-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px; /* Adjusted to ensure it's two lines */
    line-height: 1.5;
    margin-bottom: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.signature-tagline {
    color: var(--signature-red);
    font-weight: 600;
    font-size: 18px;
}

/* Footer CTA container */
.footer-cta {
  text-align: center;
  margin-top: 16px;
}

/* CTA Button styling */
.cta-button.small-cta {
  background-color: hsl(0, 98%, 40%);
  color: #fff;
  font-size: 12px;
  padding: 10px 24px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 14px rgba(255, 0, 0, 0.2);
}

/* On hover */
.cta-button.small-cta:hover {
  background-color: hsl(0, 98%, 40%);
  transform: translateY(-2px);
}

/* Arrow styling */
.cta-arrow {
  font-size: 14px;
  transition: transform 0.3s ease;
}

/* Animate arrow on hover */
.cta-button.small-cta:hover .cta-arrow {
  transform: translateX(3px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;    /* Equal width columns */
  max-width: 700px;                      /* Match .signature-card */
  padding: 0 0px;                       /* Same horizontal padding */
  margin: 0 auto 32px auto;
  box-sizing: border-box;
  gap: 0;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: center; /* Keeps text in center of each column */
  text-align: center;
}

.footer-column-title {
    color: var(--pure-white);
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: center; /* or 'flex-start' if you want left-aligned */
}

.footer-link {
  display: block; /* This ensures one link per line */
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 12px;
  transition: color 0.3s ease;
  margin-bottom: 6px; /* Optional: adds spacing between links */
}

.footer-link:hover {
    color: var(--signature-red);
}

.footer-book-btn {
    background: none;
    border: none;
    color: var(--signature-red);
    font-size: 12px;
    cursor: pointer;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0;
    text-align: center;
}

.footer-book-btn:hover {
    color: var(--signature-red-dark);
}

.footer-contact {
    margin-bottom: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
    justify-content: center;
}

.footer-contact-icon {
    font-size: 12px;
    color: var(--signature-red);
    margin-right: 8px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
}

.footer-service-note {
    font-size: 12px;
    margin-top: 4px;
}

.footer-credentials {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding-top: 24px;
    text-align: center;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  gap: 8px;
  justify-content: center;
}

.footer-contact-icon {
  width: 16px;
  height: 16px;
  color: var(--signature-red);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}

.modal-content {
    position: relative;
    margin: 5% auto;
    width: 90%;
    max-width: 800px;
    height: 80vh;
    background: var(--deep-black);
    border: 1px solid var(--border-dark);
    border-radius: 8px;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    color: var(--pure-white);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}

.modal-close:hover {
    color: var(--signature-red);
}

.modal-iframe {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-nav.show {
        display: block;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .stats-container {
        gap: 16px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-section {
        padding: 0 16px;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .car-image {
        max-width: 100%;
    }
    
    .contact-card,
    .booking-card {
        padding: 24px;
    }
}

@media (max-width: 600px) {
  .signature-card {
    padding: 32px 16px;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr; /* 1 column instead of 3 */
    gap: 32px;
  }
}

/* Mobile Navigation Slide Panel */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  background-color: #fff;
  width: 80%;
  height: 100%;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.4s ease;
}

/* Slide in from the right */
.mobile-nav.show {
  transform: translateX(0);
}

/* Mobile Nav Content */
.mobile-nav-content {
  display: flex;
  flex-direction: column;
  padding: 2rem;
}

/* Links + Button */
.mobile-nav-link,
.mobile-book-btn {
  padding: 1rem 0;
  font-size: 1.2rem;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  color: #333;
  background: none;
  text-align: left;
}

.mobile-book-btn {
  background-color: #000;
  color: #fff;
  margin-top: 1rem;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn {
  display: none; /* show only on mobile with media query */
  font-size: 1.5rem;
  background: transparent;
  border: none;
  padding: 6px 10px;
  color: red;
  cursor: pointer;
  box-shadow: 0 0 6px rgba(255, 0, 0, 0.5);
  border-radius: 8px;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
  margin-right: 10px; /* fixed this line */
}

.mobile-menu-btn:hover {
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
  transform: scale(1.05);
}

/* Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6); /* semi-transparent black */
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

/* Show overlay */
.mobile-nav-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* Responsive Visibility */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }
}

/* Close button */
.close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent; /* Remove solid red */
  color: red; /* Match the glow color */
  border: none;
  border-radius: 8px; /* Slightly smaller curve */
  font-size: 1.5rem; /* Consistent with hamburger */
  cursor: pointer;
  box-shadow: 0 0 6px rgba(255, 0, 0, 0.5); /* Soft red glow */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  z-index: 9999;
  padding: 6px 10px; /* Same compact size */
}

.close-btn:hover {
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.8); /* Stronger on hover */
  transform: scale(1.05);
}

/* Mobile Nav Container */
.mobile-nav {
  transform: translateX(100%);
  transition: transform 0.4s ease, opacity 0.3s ease;
  opacity: 0;
  position: fixed;
  top: 0;
  right: 0;
  width: 75%;
  max-width: 320px;
  height: 100vh;
  background: #111;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.3);
  padding: 3rem 1.5rem 2rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* When Open */
.mobile-nav.show {
  transform: translateX(0);
  opacity: 1;
}

/* Optional smoother link animation */
.mobile-nav a {
  color: white;
  text-decoration: none;
  font-size: 1.25rem;
  transition: color 0.2s ease;
}

.mobile-nav a:hover {
  color: #ff4d4d;
}

.car-shadow {
  position: absolute;
  bottom: -20px; /* flush with image bottom */
  width: 100%;
  height: 80px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.85) 0%, transparent 80%);
  filter: blur(6px);
  z-index: 0;
  opacity: 1;
}

@media (max-width: 768px) {
  .hero-section {
    padding-top: 10px; /* Almost flush to top */
  }

  .hero-content {
    margin-top: -60px; /* Lift text closer to car */
    padding: 0 16px;
    text-align: left;
  }

  .stats-container {
    margin-top: 10px;
    text-align: center;
  }

  .hero-cta {
    margin-top: 8px;
  }
}

@media (max-width: 768px) {
  .hero-content {
    margin-top: -60px; /* Pull entire block up */
  }

  .hero-desc-text {
    margin-top: -30px;  /* Raise just this */
  }
}

@media (max-width: 768px) {
  .stats-container {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 16px;
    text-align: center;
  }

  .stat-item {
    flex: 1 1 100px;
    min-width: 100px;
    text-align: center;
  }
}

.calendly-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.3s ease;
}

.calendly-modal.open {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.calendly-backdrop {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1;
}

.calendly-content {
  position: relative;
  z-index: 2;
  background: #fff;
  width: 95%;
  max-width: 800px;
  max-height: 90vh;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  animation: slideUp 0.3s ease;
}

.calendly-content iframe {
  width: 100%;
  height: 600px;
  border: none;
}

.calendly-close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 3;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@media (max-width: 768px) {
  .hero-section {
    padding-top: 200px; /* increase from 150px to push content down */
    padding-bottom: 100px; /* optional: increase bottom padding for breathing room */
    background-size: cover; /* better for small screens than 'contain' */
  }

  .hero-content {
    padding-top: 40px;
    margin-top: 0; /* remove negative margin if not necessary */
    padding-left: 16px;
    padding-right: 16px;
    text-align: center; /* optional: center-align text for small screens */
  }

  .hero-title {
    font-size: clamp(26px, 8vw, 36px); /* slightly smaller title on mobile */
  }

  .hero-subtitle {
    font-size: clamp(14px, 5vw, 18px); /* keep subtitle readable */
  }

  .hero-desc-text {
    margin-top: 0; /* eliminate any upward pull on mobile */
  }
}

.service-card.gray-bg {
    background: #575757;
    color: var(--pure-white);
}

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

.service-description.dark-text {
    color: var(--charcoal-black); /* For light cards */
}

.service-description.light-text {
    color: rgba(255, 255, 255, 0.75); /* For dark cards */
}

.service-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  border-radius: 12px;       /* Curved corners all around */
  margin-bottom: 14px;       /* Adds spacing from the text below */
}

/* Divider after description in cards 1–3 */
.service-card:nth-of-type(-n+3) .service-description::after {
  content: "";
  display: block;
  margin: 16px 0;
  height: 1px;
  background-color: #ccc; /* light gray divider */
  width: 100%;
}

/* Make feature-check white for cards 4 to 6 */
.service-card:nth-of-type(n+4):nth-of-type(-n+6) .feature-check {
  filter: brightness(0) invert(1); /* turns image white */
}

/* Modal base styles */
.calendly-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  justify-content: center;
  align-items: center;
}

/* Modal inner box */
.calendly-content {
  position: relative;
  width: 90%;
  max-width: 800px;
  height: 80vh;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
  animation: fadeIn 0.3s ease-in-out;
}

/* Calendly iframe */
.calendly-content iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Close button */
.close-modal {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 28px;
  background: transparent;
  color: #333;
  border: none;
  cursor: pointer;
  z-index: 10;
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.service-title {
  margin-bottom: 10px; /* slightly tighter */
}

.service-description {
  margin-bottom: 12px; /* cleaner spacing */
}

.service-price {
  margin-top: 0px;
  margin-bottom: 10px;
}

.service-pricing {
  margin-bottom: 12px;
}

.service-features {
  margin-bottom: 0;   /* tight against the button */
  margin-top: 8px;    /* still spaced from pricing */
}

.service-book-btn {
  margin-top: -6px;   /* adds the final breathing room */
}

.service-features {
  margin-bottom: 0;
  padding-bottom: 0; /* remove any extra internal space */
}

.service-features-list {
  margin-bottom: 0;
  padding-bottom: 0;
}

.feature-item:last-child {
  margin-bottom: 0; /* no gap after the last checkmark */
}

.service-book-btn {
  margin-top: 0px; /* bring it super close */
}

.service-divider {
  margin-bottom: 0px;
}

.service-price {
  margin-top: -10px;  /* bring it closer to the divider */
}

@media (max-width: 768px) {
  .services-grid,
  .gallery-grid {
    padding: 0 44px; /* even more on mobile if you like */
  }
}

@media (max-width: 768px) {
  .services-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0;                /* prevent inner push */
    margin: 0 auto;            /* center the container */
    width: 100%;               /* full width of screen */
    box-sizing: border-box;    /* padding doesn't overflow */
  }

  .service-card {
    box-sizing: border-box;    /* make padding part of width */
    width: 340px;
    padding: 20px;
    margin: 0 auto;
    height: auto;
  }

  .service-title {
    font-size: 18px;
  }

  .feature-text,
  .service-description,
  .pricing-item {
    font-size: 14px;
  }

    .service-book-btn {
    margin-top: 20px; /* Add extra spacing above the button */
  }

  .feature-check {
    width: 28px;
    height: 28px;
    margin-right: 10px;
  }
}

@media (max-width: 768px) {
  .gallery-card {
    margin-bottom: 24px; /* ⬅️ add space after each card */
  }
}

.services-section {
  padding: 96px 20px 96px 20px; /* was: 96px 20px */
  margin-top: 32px; /* ⬅️ extra space on top */
}

@keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.hero-title,
.hero-subtitle,
.stat-number,
.stat-label {
    text-shadow:
        0 2px 6px rgba(0, 0, 0, 0.9),       /* main shadow */
        0 0 8px rgba(0, 0, 0, 0.6),         /* soft spread */
        0 0 12px rgba(255, 0, 0, 0.3);      /* subtle red glow */
}
