
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background: #ffffff;
            color: #222;
        }

        /* ================= HEADER ================= */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 5%;
            background: #fff;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .logo img {
            height: 60px;
            transition: transform 0.3s ease;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.1;
        }

        .brand-name {
            font-size: 28px;
            font-weight: 700;
            color: #333;
            letter-spacing: -0.5px;
        }

        .brand-tagline {
            font-size: 10px;
            font-weight: 700;
            color: #7a1f14;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 25px;
        }

        nav ul li a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        nav ul li a:hover {
            color: #7a1f14;
        }

        .btn-primary {
            background: #7a1f14;
            color: #fff;
            padding: 12px 22px;
            border-radius: 8px;
            text-decoration: none;
            border: none;
            cursor: pointer;
            font-size: 16px;
            font-weight: 500;
            transition: background 0.3s ease;
        }

        .btn-primary:hover {
            background: #5a150d;
        }

        .mobile-menu-toggle,
        .mobile-menu-overlay {
            display: none;
        }

        /* ================= HERO ================= */
        .hero {
            display: flex;
            align-items: center;
            padding: 70px 5%;
            gap: 50px;
        }

        .hero-left {
            width: 50%;
        }

        .badge {
            background: #7a1f14;
            color: #fff;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 14px;
            margin-bottom: 20px;
            display: inline-block;
            font-weight: 500;
        }

        .hero-left h1 {
            font-size: 54px;
            margin-bottom: 20px;
            line-height: 1.1;
        }

        .hero-left h1 span {
            color: #7a1f14;
        }

        .hero-left p {
            color: #666;
            margin-bottom: 30px;
            font-size: 17px;
        }

        .hero-buttons {
            display: flex;
            gap: 15px;
            margin-bottom: 25px;
        }

        .btn-outline {
            border: 2px solid #ccc;
            padding: 12px 22px;
            border-radius: 8px;
            text-decoration: none;
            color: #333;
            background: white;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .btn-outline:hover {
            border-color: #7a1f14;
            color: #7a1f14;
        }

        .hero-rating {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .rating-avatars {
            display: flex;
            align-items: center;
        }

        .rating-avatars img {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            border: 2px solid #fff;
            margin-left: -12px;
        }

        .rating-avatars img:first-child {
            margin-left: 0;
        }

        .rating-content {
            display: flex;
            flex-direction: column;
        }

        .stars {
            color: #ffb400;
            font-size: 14px;
            margin-bottom: 2px;
        }

        .rating-text {
            font-size: 13px;
            color: #666;
            font-weight: 500;
        }

        /* ================= SLIDER ================= */
        .hero-right {
            width: 50%;
            position: relative;
        }

        .hero-right::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: #fdf2f2;
            border-radius: 24px;
            top: 20px;
            right: -20px;
            z-index: -1;
        }

        .slider {
            position: relative;
            width: 100%;
            height: 480px;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .slide {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
        }

        .slide.active {
            opacity: 1;
        }

        .floating-box {
            position: absolute;
            background: #fff;
            padding: 12px 18px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            gap: 12px;
            z-index: 5;
        }

        .floating-box.top {
            top: 30px;
            right: -30px;
        }

        .floating-box.bottom {
            bottom: 40px;
            left: -40px;
        }

        .f-icon-box {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .f-icon-box.red { background: #fff1f0; border: 1px solid #ffccc7; }
        .f-icon-box.green { background: #f6ffed; border: 1px solid #b7eb8f; }

        .f-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }

        .f-text .title {
            font-weight: 700;
            font-size: 16px;
            color: #333;
        }

        .f-text .sub {
            font-size: 12px;
            color: #888;
        }

        /* ================= POWERFUL TOOLS SECTION (UPDATED) ================= */
        .tools-section {
            padding: 100px 5%;
            background: #ffffff;
            text-align: center;
        }

        .tools-section .section-title h5 {
            color: #7a1f14;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .tools-section .section-title h2 {
            font-size: 48px;
            color: #333;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .tools-section .section-title h2 span {
            color: #7a1f14;
        }

        .tools-section .section-title p {
            font-size: 15px;
            color: #777;
            max-width: 800px;
            margin: 0 auto 60px;
            line-height: 1.6;
        }

        .tools-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            max-width: 1100px;
            margin: 0 auto 80px;
        }

        .tool-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
            text-align: left;
            transition: all 0.3s ease;
            border: 1px solid #f0f0f0;
            display: flex;
            flex-direction: column;
        }

        .tool-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
        }

        .tool-icon-header {
            width: 50px;
            height: 50px;
            background: #fdf2f2;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
        }

        .tool-icon-header i {
            font-size: 22px;
            color: #7a1f14;
        }

        .tool-card h3 {
            font-size: 24px;
            color: #222;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .tool-card > p {
            color: #666;
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 25px;
            flex-grow: 1;
        }

        .tool-card ul {
            list-style: none;
            margin-bottom: 35px;
        }

        .tool-card ul li {
            padding: 8px 0;
            color: #555;
            font-size: 14px;
            display: flex;
            align-items: center;
        }

        .tool-card ul li i {
            color: #7a1f14;
            margin-right: 15px;
            font-size: 16px;
            width: 20px;
            text-align: center;
        }

        /* Solid Button */
        .tool-cta-solid {
            display: inline-block;
            background: #7a1f14;
            color: white;
            padding: 14px 25px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.3s ease;
            text-align: center;
        }

        .tool-cta-solid:hover {
            background: #5a150d;
            color: white;
        }

        /* Outline Button */
        .tool-cta-outline {
            display: inline-block;
            background: transparent;
            color: #7a1f14;
            border: 1px solid #7a1f14;
            padding: 14px 25px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.3s ease;
            text-align: center;
        }

        .tool-cta-outline:hover {
            background: #7a1f14;
            color: white;
        }

       .stats-section {
    padding: 80px 20px;
    background: #ffffff;
}

.stats-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 30px;
    background: #f5f6f8;
    border-radius: 12px;
    transition: 0.3s;
}

.stat-item:hover {
    transform: translateY(-6px);
}

.stat-icon {
    font-size: 28px;
    color: #d62828;
    margin-bottom: 10px;
}

.stat-number {
    font-size: 28px;
    font-weight: bold;
}

.stat-label {
    color: #666;
    font-size: 20px;
}


       /* ===== Services Section ===== */

.services-section {
    background: #f5f6f8;
    padding: 100px 20px;
}

.services-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.section-title h5 {
    color: #a61d1d;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 40px;
    margin-bottom: 15px;
}

.section-title h2 span {
    color: #a61d1d;
}

.section-title p {
    color: #666;
    max-width: 700px;
    margin: auto;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.service-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    color: #a61d1d;
    margin-bottom: 15px;
}

.service-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

      .process-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: #ffffff;
}

.process-section .overline {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2563eb;
  margin: 0 0 0.5rem 0;
  padding: 0;
}

.process-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0a1929;
  margin: 0 0 1rem 0;
  padding: 0;
  line-height: 1.2;
}

.process-section .subhead {
  font-size: 1.125rem;
  color: #4a5568;
  margin: 0 0 3rem 0;
  padding: 0;
  max-width: 650px;
  line-height: 1.5;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.step {
  display: flex;
  flex-direction: column;
}

.step-number {
  font-size: 4rem;
  font-weight: 700;
  color: #2563eb;
  margin: 0 0 0.5rem 0;
  padding: 0;
  line-height: 1;
}

.step-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0a1929;
  margin: 0 0 1rem 0;
  padding: 0;
  line-height: 1.3;
}

.step-desc {
  font-size: 1rem;
  color: #4a5568;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
  
  .process-section {
    padding: 3rem 1.5rem;
  }
  
  .process-section h2 {
    font-size: 2rem;
  }
}
/* ===== PROCESS SECTION ===== */
.process-section {
  background: #f6f6f6;
  padding: 90px 0;
  text-align: center;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* Header */
.section-header {
  margin-bottom: 60px;
}

.overline {
  color: #7a1d12;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 15px;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #111;
}

.section-header h2 span {
  color: #7a1d12;
}

.subhead {
  max-width: 650px;
  margin: 0 auto;
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}

/* Grid */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Card */
.step-item {
  background: #ffffff;
  padding: 50px 30px 40px;
  border-radius: 16px;
  position: relative;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: 0.3s ease;
}

.step-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(122, 29, 18, 0.15);
}

/* Step Number */
.step-number {
  position: absolute;
  top: -18px;
  left: 25px;
  background: #7a1d12;
  color: white;
  padding: 6px 16px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
}

/* Title */
.step-title {
  font-size: 22px;
  margin-bottom: 15px;
  color: #111;
}

/* Description */
.step-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 992px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .process-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 32px;
  }
}

       /* ===== PORTFOLIO SECTION ===== */
.portfolio-section {
  background: #f6f6f6;
  padding: 100px 0;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* ===== HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-tag {
  display: inline-block;
  color: #7a1d12;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #111;
}

.section-header h2 span {
  color: #7a1d12;
}

.section-description {
  max-width: 650px;
  margin: 0 auto;
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}

/* ===== PORTFOLIO SECTION ===== */
.portfolio-section {
  padding: 100px 0;
  background: #f6f6f6;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* ===== HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  color: #7a1d12;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 15px;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #111;
  margin-bottom: 15px;
}

.section-header h2 span {
  color: #7a1d12;
}

.section-description {
  max-width: 650px;
  margin: 0 auto;
  color: #666;
  font-size: 16px;
}

/* ===== GRID ===== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* ===== CARD ===== */
.portfolio-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: 0.4s ease;
  cursor: pointer;
}

.portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* ===== IMAGE ===== */
.portfolio-image {
  overflow: hidden;
}

.portfolio-image img {
  width: 100%;
  display: block;
  transition: 0.5s ease;
}

.portfolio-card:hover img {
  transform: scale(1.08);
}

/* ===== CONTENT ===== */
.portfolio-content {
  padding: 25px;
}

.portfolio-category {
  font-size: 13px;
  color: #7a1d12;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.portfolio-content h3 {
  font-size: 22px;
  margin-top: 10px;
  color: #111;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 32px;
  }
}

/* ===== TESTIMONIAL SECTION ===== */
.testimonial-section {
  margin-top: 100px;
  text-align: center;
}

.testimonial-tag {
  color: #7a1d12;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
}

.testimonial-title {
  font-size: 38px;
  margin-top: 15px;
  color: #111;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .portfolio-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .section-header h2 {
    font-size: 32px;
  }

  .portfolio-title {
    font-size: 20px;
  }
}


/* Testimonial Section */
.testimonial-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e5e7eb;
}

.testimonial-tag {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #2563eb;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.testimonial-title {
    font-size: 32px;
    font-weight: 700;
    color: #0a1929;
    margin-bottom: 40px;
}

.footer-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #e5e7eb;
    font-size: 14px;
    color: #6b7280;
}

.weather, .date {
    font-weight: 500;
}

@media (max-width: 768px) {
    .portfolio-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .portfolio-category {
        min-width: auto;
    }
    
    .portfolio-line {
        width: 100%;
        margin-top: 10px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .testimonial-title {
        font-size: 24px;
    }
}


        /* ================= GOOGLE REVIEWS ================= */
        #google-reviews-section {
            padding: 80px 5%;
            background: #f9f9f9;
            text-align: center;
        }

        #google-reviews-section h2 {
            font-size: 36px;
            margin-bottom: 40px;
            color: #333;
        }

        #google-reviews {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }

        .review {
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: left;
        }

        .review-header {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .review-header img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
        }

        .review-name {
            font-weight: 600;
            color: #333;
        }

        .review-stars {
            color: #FFD700;
            margin-bottom: 10px;
        }

        .review-text {
            color: #666;
            line-height: 1.6;
        }
        
        /* CTA Section Styles */
.cta-section {
    position: relative;
    padding: 100px 5%;
    color: white;
    text-align: center;
    background-image: url('/img/home_5.jpeg'); /* Make sure folder name is correct */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Keeps your parallax */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Subtitle */
.cta-subtitle {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    opacity: 0.9;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Title */
.cta-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3); /* helps visibility */
}

/* Description */
.cta-description {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
/* ===============================
   CTA CONTACT - UPDATED STYLES
================================= */
.cta-contact {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 30px 0 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    border-bottom: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    background: rgba(0,0,0,0.45); /* subtle dark overlay */
    padding: 12px 25px;
    border-radius: 50px; /* pill shape */
    box-shadow: 0 4px 15px rgba(0,0,0,0.2); /* subtle shadow */
    transition: all 0.3s ease;
}

.contact-item i {
    font-size: 20px;
    color: #ffd966; /* accent icon color */
    min-width: 20px;
    text-align: center;
}

.contact-item span {
    color: white;
    font-weight: 500;
}

/* Hover effect */
.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .cta-contact {
        flex-direction: column;
        gap: 15px;
        padding: 20px 0;
    }

    .contact-item {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .contact-item {
        font-size: 16px;
        padding: 10px 18px;
    }
}


        /* ================= FOOTER ================= */
        .footer {
            background: #111;
            color: #fff;
            padding: 80px 5% 30px;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-brand {
            grid-column: span 1;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
        }

        .footer-logo img {
            height: 40px;
        }

        .footer-logo-text {
            font-size: 24px;
            font-weight: 700;
            color: #fff;
        }

        .footer-brand p {
            color: #aaa;
            line-height: 1.6;
            margin-bottom: 25px;
            font-size: 15px;
        }

        .footer-social {
            display: flex;
            gap: 15px;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            background: #222;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            background: #7a1f14;
            transform: translateY(-3px);
        }

        .footer-heading {
            font-size: 18px;
            color: #fff;
            margin-bottom: 25px;
            font-weight: 600;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 15px;
        }

        .footer-links a:hover {
            color: #7a1f14;
        }

        .footer-search {
            grid-column: span 4;
            margin-top: 30px;
        }

        .search-box {
            position: relative;
            max-width: 400px;
        }

        .search-box input {
            width: 100%;
            padding: 15px 20px;
            padding-right: 60px;
            background: #222;
            border: 1px solid #333;
            border-radius: 8px;
            color: #fff;
            font-size: 16px;
        }

        .search-box input::placeholder {
            color: #666;
        }

        .search-box input:focus {
            outline: none;
            border-color: #7a1f14;
        }

        .search-button {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            background: #7a1f14;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .search-button:hover {
            background: #5a150d;
        }

        .footer-bottom {
            border-top: 1px solid #222;
            padding-top: 30px;
            text-align: center;
            color: #666;
            font-size: 14px;
            grid-column: span 4;
        }

        .footer-bottom p {
            margin-bottom: 10px;
        }

        /* ================= MODAL ================= */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }

        .modal-overlay.active {
            display: flex;
        }

        .booking-modal {
            background: white;
            border-radius: 16px;
            width: 90%;
            max-width: 800px;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
            animation: modalFade 0.3s ease;
        }

        @keyframes modalFade {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 24px 32px;
            border-bottom: 1px solid #eee;
        }

        .modal-header h2 {
            color: #7a1f14;
            font-size: 28px;
        }

        .close-modal {
            background: none;
            border: none;
            font-size: 28px;
            cursor: pointer;
            color: #666;
            transition: color 0.3s ease;
        }

        .close-modal:hover {
            color: #7a1f14;
        }

        .modal-content {
            padding: 32px;
            display: flex;
            gap: 40px;
        }

        .calendar-section {
            flex: 1;
        }

        .booking-form {
            flex: 1;
            border-left: 1px solid #eee;
            padding-left: 40px;
        }

        .calendar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .calendar-header h3 {
            color: #333;
            font-size: 20px;
        }

        .calendar-nav {
            display: flex;
            gap: 10px;
        }

        .calendar-nav button {
            background: #f5f5f5;
            border: none;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s ease;
        }

        .calendar-nav button:hover {
            background: #e0e0e0;
        }

        .calendar-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 8px;
            margin-bottom: 20px;
        }

        .calendar-day-header {
            text-align: center;
            font-weight: 600;
            color: #666;
            padding: 10px 0;
            font-size: 14px;
        }

        .calendar-day {
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s ease;
            font-weight: 500;
            background: #f9f9f9;
            color: #333;
        }

        .calendar-day:hover {
            background: #7a1f14;
            color: white;
            transform: scale(1.05);
        }

        .calendar-day.selected {
            background: #7a1f14;
            color: white;
            box-shadow: 0 4px 12px rgba(122, 31, 20, 0.3);
        }

        .calendar-day.unavailable {
            display: none !important;
        }

        .available-dates {
            background: #f9f9f9;
            padding: 16px;
            border-radius: 12px;
            margin-top: 20px;
        }

        .available-dates h4 {
            margin-bottom: 10px;
            color: #333;
        }

        .date-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .date-tag {
            background: #7a1f14;
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .date-tag:hover {
            background: #5a150d;
            transform: translateY(-2px);
        }

        .date-tag.selected {
            background: #5a150d;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .form-group {
            margin-bottom: 24px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #333;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 14px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 16px;
            transition: border 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #7a1f14;
        }

        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }

        .consultation-types {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            margin-top: 8px;
        }

        .consultation-type {
            padding: 12px;
            border: 2px solid #eee;
            border-radius: 8px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .consultation-type:hover {
            border-color: #7a1f14;
        }

        .consultation-type.selected {
            border-color: #7a1f14;
            background: #f3e9e7;
        }

        .form-submit {
            width: 100%;
            padding: 16px;
            background: #7a1f14;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease;
            margin-top: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .form-submit:hover {
            background: #5a150d;
        }

        .form-submit.loading {
            opacity: 0.8;
            cursor: not-allowed;
        }

        .time-slots {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-top: 8px;
        }

        .time-slot {
            padding: 10px;
            border: 2px solid #eee;
            border-radius: 8px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 14px;
        }

        .time-slot:hover {
            border-color: #7a1f14;
        }

        .time-slot.selected {
            border-color: #7a1f14;
            background: #f3e9e7;
        }

        /* No Available Dates Message */
        .no-dates-message {
            text-align: center;
            padding: 30px;
            background: #f9f9f9;
            border-radius: 12px;
            margin-top: 20px;
        }

        .no-dates-message i {
            font-size: 48px;
            color: #ccc;
            margin-bottom: 15px;
        }

        .no-dates-message h4 {
            color: #666;
            margin-bottom: 10px;
        }

        .no-dates-message p {
            color: #888;
            font-size: 14px;
        }

        /* Success Message */
        .success-message {
            display: none;
            text-align: center;
            padding: 40px;
        }

        .success-icon {
            font-size: 64px;
            color: #4CAF50;
            margin-bottom: 20px;
        }

        .success-message h3 {
            color: #7a1f14;
            margin-bottom: 10px;
        }

        .success-message p {
            color: #666;
            margin-bottom: 20px;
        }

        /* Loading Spinner */
        .spinner {
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top-color: white;
            animation: spin 1s ease-in-out infinite;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        /* Calendar Days Headers */
        .calendar-days-header {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 8px;
            margin-bottom: 10px;
        }

        .day-header {
            text-align: center;
            font-weight: 600;
            color: #666;
            padding: 10px 0;
            font-size: 14px;
        }

        /* ================= RESPONSIVE ================= */
        @media (max-width: 900px) {
            .hero {
                flex-direction: column;
            }

            .hero-left,
            .hero-right {
                width: 100%;
            }

            .hero-left h1 {
                font-size: 36px;
            }

            .tools-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .hub-container {
                flex-direction: column;
            }

            .footer-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px 20px;
            }

            .footer-search {
                grid-column: span 2;
            }

            .footer-bottom {
                grid-column: span 2;
            }

            .modal-content {
                flex-direction: column;
                padding: 20px;
            }

            .booking-form {
                border-left: none;
                border-top: 1px solid #eee;
                padding-left: 0;
                padding-top: 30px;
            }

            .calendar-grid {
                grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
            }

            .calendar-day {
                height: 50px;
                font-size: 16px;
            }

            /* --- Updated Header for Mobile --- */
            header {
                flex-direction: row !important; /* Force side-by-side */
                justify-content: space-between !important;
                align-items: center !important;
                flex-wrap: nowrap !important;
                padding: 12px 5% !important;
            }

            .logo {
                max-width: 80% !important;
                justify-content: flex-start !important; /* Force left alignment */
                align-items: center !important;
                gap: 8px !important;
                height: auto !important;
            }

            .logo img {
                height: 45px !important; /* Slightly smaller for mobile */
            }

            .brand-name {
                font-size: 22px !important;
            }

            .brand-tagline {
                font-size: 8px !important;
            }

            .desktop-nav, 
            .desktop-only {
                display: none !important;
            }

            .mobile-menu-toggle {
                display: flex;
                flex-direction: column;
                gap: 6px;
                background: none;
                border: none;
                cursor: pointer;
                padding: 10px;
                z-index: 1001;
            }

            .mobile-menu-toggle span {
                display: block;
                width: 28px;
                height: 3px;
                background: #333;
                border-radius: 2px;
                transition: all 0.3s ease;
            }

            /* Mobile Menu Overlay */
            .mobile-menu-overlay {
                display: block; /* Overwrite the display:none from desktop */
                position: fixed;
                inset: 0;
                background: rgba(0, 0, 0, 0.5);
                backdrop-filter: blur(8px);
                z-index: 2000;
                opacity: 0;
                visibility: hidden;
                transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            }

            .mobile-menu-overlay.active {
                opacity: 1;
                visibility: visible;
            }

            .mobile-menu-content {
                position: absolute;
                right: -100%;
                top: 0;
                width: 85%;
                max-width: 350px;
                height: 100%;
                background: #fff;
                padding: 30px;
                display: flex;
                flex-direction: column;
                transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                box-shadow: -10px 0 30px rgba(0,0,0,0.1);
            }

            .mobile-menu-overlay.active .mobile-menu-content {
                right: 0;
            }

            .mobile-menu-header {
                display: flex;
                justify-content: space-between;
                align-items: center;
                margin-bottom: 40px;
            }

            .mobile-menu-close {
                background: #f5f5f5;
                border: none;
                width: 40px;
                height: 40px;
                border-radius: 50%;
                font-size: 24px;
                cursor: pointer;
                display: flex;
                align-items: center;
                justify-content: center;
                color: #333;
                transition: background 0.3s ease;
            }

            .mobile-menu-close:hover {
                background: #eee;
                color: #7a1f14;
            }

            .mobile-nav ul {
                display: flex;
                flex-direction: column;
                gap: 0;
                list-style: none;
            }

            .mobile-nav ul li {
                border-bottom: 1px solid #f0f0f0;
            }

            .mobile-nav ul li a {
                display: block;
                padding: 18px 0;
                font-size: 18px;
                font-weight: 600;
                color: #333;
                text-decoration: none;
                transition: color 0.3s ease;
            }

            .mobile-nav ul li a:hover {
                color: #7a1f14;
            }

            .mobile-menu-footer {
                margin-top: auto;
                padding-top: 30px;
            }

            .w-100 {
                width: 100%;
            }
        }


        @media (max-width: 600px) {

            .consultation-types,
            .time-slots {
                grid-template-columns: 1fr;
            }

            .modal-header h2 {
                font-size: 22px;
            }

            .calendar-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .ignition-features {
                grid-template-columns: 1fr;
            }

            .process-steps {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .stat-number {
                font-size: 36px;
            }

            .tool-card {
                padding: 30px 20px;
            }

            .footer-container {
                grid-template-columns: 1fr;
            }

            .footer-search,
            .footer-bottom {
                grid-column: span 1;
            }
        }
    