/* ========================================
   RESET & BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

@media (min-width: 768px) {
    .header-content {
        height: 5rem;
    }
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    height: 75px; 
    width: auto;
    display: block;
}   

.logo-text h1 {
    font-size: 1.125rem;
    font-weight: bold;
    color: #111827;
}

@media (min-width: 768px) {
    .logo-text h1 {
        font-size: 1.25rem;
    }
}

.logo-text p {
    font-size: 0.75rem;
    color: #6b7280;
}

.logo-text {
    display: none;
}

@media (min-width: 640px) {
    .logo-text {
        display: block;
    }
}

/* Desktop Navigation */
.desktop-nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .desktop-nav {
        display: flex;
    }
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: #2563eb;
}

/* Header Buttons */
.header-buttons {
    display: none;
    align-items: center;
    gap: 0.75rem;
}

@media (min-width: 1024px) {
    .header-buttons {
        display: flex;
    }
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border: none;
    background: none;
    color: #374151;
    cursor: pointer;
    border-radius: 0.375rem;
    transition: background-color 0.2s;
}

.mobile-menu-btn:hover {
    background-color: #f3f4f6;
}

.mobile-menu-btn i {
    font-size: 1.5rem;
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    background-color: #ffffff;
    border-top: 1px solid #e5e7eb;
    padding: 1rem;
}

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

@media (min-width: 1024px) {
    .mobile-menu {
        display: none !important;
    }
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.mobile-nav-link {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    transition: all 0.2s;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background-color: #eff6ff;
    color: #2563eb;
}

.mobile-menu-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 500;
    font-size: 0.875rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.btn i {
    font-size: 1rem;
}

.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

.btn-primary {
    background-color: #2563eb;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #1d4ed8;
}

.btn-success {
    background-color: #16a34a;
    color: #ffffff;
}

.btn-success:hover {
    background-color: #15803d;
    transform: scale(1.02);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #d1d5db;
    color: #374151;
}

.btn-outline:hover {
    background-color: #f3f4f6;
}

.btn-white {
    background-color: #ffffff;
    color: #16a34a;
}

.btn-white:hover {
    background-color: #f3f4f6;
    transform: scale(1.05);
}

.btn-outline-white {
    background-color: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
}

.btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 50%, #eff6ff 100%);
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .hero {
        padding: 6rem 0;
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-title {
    font-size: 2.25rem;
    font-weight: bold;
    color: #111827;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-description {
    font-size: 1.125rem;
    color: #6b7280;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.25rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.hero-email {
    padding-top: 0.5rem;
}

.email-link, .email-link-white {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
    cursor: pointer;
    transition: color 0.2s;
}

.email-link:hover {
    color: #2563eb;
}

.email-link-white {
    color: #ffffff;
}

.email-link-white:hover {
    color: #d1fae5;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    padding-top: 1rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stat-avatars {
    display: flex;
    margin-left: -0.5rem;
}

.avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: #d1d5db;
    border: 2px solid #ffffff;
}

.star-icon {
    color: #fbbf24;
    font-size: 1.25rem;
}

.rating {
    font-weight: 600;
    color: #111827;
}

.rating-count {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Hero Image */
.hero-image {
    width: 100%;
    max-width: 500px;
    position: relative;
}


.hero-image img {
    width: 100%;
    height: 450px;   /* Increase this value */
    object-fit: cover;  /* Keeps image looking good */
    border-radius: 12px; /* Optional */
}

.image-placeholder {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-radius: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.icon-circle {
    width: 8rem;
    height: 8rem;
    background-color: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.icon-circle i {
    font-size: 4rem;
    color: #ffffff;
}

.image-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
}

.image-subtext {
    color: #6b7280;
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .section {
        padding: 5rem 0;
    }
}

.bg-white {
    background-color: #ffffff;
}

.bg-gray {
    background-color: #f9fafb;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
}

.section-description {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 42rem;
    margin: 0 auto;
}

.section-footer {
    text-align: center;
    margin-top: 2.5rem;
}

/* ========================================
   SERVICES
   ======================================== */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background-color: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    transition: all 0.3s;
}

.service-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: #bfdbfe;
}

.service-card-content {
    padding: 1.5rem;
}

.service-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 0.5rem;
}

.service-description {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.75rem;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.price {
    font-size: 1.875rem;
    font-weight: bold;
    color: #2563eb;
}

.duration {
    font-size: 0.875rem;
    color: #9ca3af;
}

.service-features {
    list-style: none;
    margin-bottom: 1rem;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #374151;
    margin-bottom: 0.5rem;
}

.service-features i {
    color: #16a34a;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

/* Service Detail Cards */
.services-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .services-detail-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-detail-card {
    background-color: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1.5rem;
    position: relative;
    transition: all 0.3s;
}

.service-detail-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-color: #bfdbfe;
}

.service-detail-card.featured-service {
    border: 4px solid #2563eb;
}

.service-detail-card.best-value {
    border-color: #16a34a;
}

.featured-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #2563eb;
    color: #ffffff;
    padding: 0.25rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.best-value-badge {
    background-color: #16a34a;
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.service-price-header {
    text-align: right;
}

.old-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #b91d1d;                 /* Strong red */
    position: relative;
    display: inline-block;
    margin-bottom: 5px;
}

/* Custom thicker strike line */
.old-price::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;                 /* Thickness */
    background-color: #000000;   /* Strike color */
    transform: translateY(-50%); /* Perfect center */
}

.price-large {
    font-size: 2.5rem;
    font-weight: 800;
    color: #16a34a;                  /* Green current price */
}

.duration-text {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.25rem;
    font-size: 0.875rem;
    color: #9ca3af;
    margin-top: 0.25rem;
}

.service-detail-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 0.5rem;
}

.service-detail-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.service-features-section {
    margin-bottom: 1.5rem;
}

.features-heading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.75rem;
}

.features-heading i {
    color: #2563eb;
}

.service-features-list {
    list-style: none;
}

.service-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.service-features-list i {
    color: #16a34a;
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.service-features-list span {
    color: #374151;
}

/* ========================================
   FEATURES / WHY CHOOSE US
   ======================================== */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

.feature-icon {
    width: 4rem;
    height: 4rem;
    background-color: #dbeafe;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-icon i {
    font-size: 2rem;
    color: #2563eb;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 0.5rem;
}

.feature-description {
    color: #6b7280;
}

/* Simple Features */
.features-grid-simple {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .features-grid-simple {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-item-simple {
    padding: 1rem;
}

.feature-icon-simple {
    width: 4rem;
    height: 4rem;
    background-color: #dbeafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-icon-simple i {
    font-size: 2rem;
    color: #2563eb;
}

.feature-title-simple {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.feature-description-simple {
    color: #6b7280;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background-color: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1.5rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.stars i {
    color: #fbbf24;
}

.testimonial-text {
    color: #374151;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.author-name {
    font-weight: 600;
    color: #111827;
}

.author-location {
    font-size: 0.875rem;
    color: #9ca3af;
}

.review-photo {
    margin: 1rem 0;
}

.review-car-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 14px;
}


/* ========================================
   BADGES
   ======================================== */
.badge {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.375rem;
}

.badge-primary {
    background-color: #dbeafe;
    color: #1e40af;
    width: fit-content;
}

.badge-secondary {
    background-color: #f3f4f6;
    color: #374151;
}

.badge-success {
    background-color: #d1fae5;
    color: #065f46;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .cta-section {
        padding: 5rem 0;
    }
}

.cta-content {
    text-align: center;
}

.cta-title {
    font-size: 1.875rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 2.25rem;
    }
}

.cta-description {
    font-size: 1.25rem;
    color: #d1fae5;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

.cta-email {
    margin-top: 1.5rem;
}

/* Simple CTA */
.cta-content-simple {
    text-align: center;
    max-width: 56rem;
    margin: 0 auto;
}

.cta-title-simple {
    font-size: 1.875rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .cta-title-simple {
        font-size: 2.25rem;
    }
}

.cta-description-simple {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.cta-buttons-simple {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .cta-buttons-simple {
        flex-direction: row;
    }
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background-color: #111827;
    color: #d1d5db;
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo h3 {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: bold;
}

.footer-description {
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 2rem;
    height: 2rem;
    background-color: #1f2937;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d1d5db;
    transition: all 0.2s;
}

.social-link:hover {
    background-color: #2563eb;
    color: #ffffff;
}

.footer-title {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #d1d5db;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #93c5fd;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.footer-contact i {
    color: #93c5fd;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.footer-contact a,
.footer-contact button {
    color: #d1d5db;
    text-decoration: none;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-align: left;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-contact a:hover,
.footer-contact button:hover {
    color: #93c5fd;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: #d1d5db;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: #93c5fd;
}

/* ========================================
   PAGE HERO (for inner pages)
   ======================================== */
.page-hero {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    padding: 4rem 0;
    text-align: center;
    color: #ffffff;
}

@media (min-width: 768px) {
    .page-hero {
        padding: 5rem 0;
    }
}

.page-hero.hero-green {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
}

.page-title {
    font-size: 2.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .page-title {
        font-size: 3rem;
    }
}

.page-description {
    font-size: 1.25rem;
    color: #bfdbfe;
    max-width: 42rem;
    margin: 0 auto;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-primary {
    color: #2563eb;
}

.link-text {
    color: #2563eb;
    text-decoration: none;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.link-text:hover {
    text-decoration: underline;
}

/* Pricing specific */
.pricing-intro {
    text-align: center;
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.pricing-cards-wrapper {
    text-align: center;
}

/* Benefits Grid */
.benefits-title {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    color: #111827;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .benefits-title {
        font-size: 1.875rem;
    }
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.benefit-item {
    padding: 1rem;
}

.benefit-icon {
    width: 3rem;
    height: 3rem;
    background-color: #dbeafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: #2563eb;
}

.benefit-title {
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
}

.benefit-description {
    font-size: 0.875rem;
    color: #6b7280;
}

/* About page specific */
.story-container {
    max-width: 56rem;
    margin: 0 auto;
}

.story-header {
    text-align: center;
    margin-bottom: 2rem;
}

.story-header h2 {
    font-size: 1.875rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .story-header h2 {
        font-size: 2.25rem;
    }
}

.divider {
    width: 5rem;
    height: 0.25rem;
    background-color: #2563eb;
    margin: 0 auto;
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.story-content p {
    font-size: 1.125rem;
    line-height: 1.75;
    color: #374151;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .mission-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mission-card {
    background-color: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.mission-card:hover {
    border-color: #bfdbfe;
}

.mission-icon {
    width: 4rem;
    height: 4rem;
    background-color: #dbeafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.mission-icon i {
    font-size: 2rem;
    color: #2563eb;
}

.mission-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 0.75rem;
}

.mission-card p {
    color: #6b7280;
}

.stats-section {
    background-color: #2563eb;
    padding: 4rem 0;
    color: #ffffff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-number {
    font-size: 2.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 3rem;
    }
}

.stat-label {
    color: #bfdbfe;
}

/* Contact page specific */
.booking-header {
    text-align: center;
    margin-bottom: 2rem;
}

.booking-header h2 {
    font-size: 1.875rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 0.5rem;
}

.booking-header p {
    font-size: 1.125rem;
    color: #6b7280;
}

.booking-methods {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 48rem;
    margin: 0 auto 3rem;
}

@media (min-width: 768px) {
    .booking-methods {
        grid-template-columns: repeat(2, 1fr);
    }
}

.booking-card {
    background-color: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.booking-card:hover {
    transform: scale(1.05);
}

.booking-card.recommended {
    border: 4px solid #16a34a;
}

.recommended-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #16a34a;
    color: #ffffff;
    padding: 0.25rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.booking-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.booking-icon.green {
    background-color: #d1fae5;
}

.booking-icon.blue {
    background-color: #dbeafe;
}

.booking-icon i {
    font-size: 2.5rem;
}

.booking-icon.green i {
    color: #16a34a;
}

.booking-icon.blue i {
    color: #2563eb;
}

.booking-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 0.75rem;
}

.booking-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.booking-note {
    font-size: 0.875rem;
    color: #9ca3af;
    margin-top: 1rem;
}

.other-contacts {
    margin-top: 4rem;
}

.other-contacts h3 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 2rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .contact-methods {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .contact-methods {
        grid-template-columns: repeat(4, 1fr);
    }
}

.contact-method {
    background-color: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
}

.contact-method:hover {
    border-color: #d1fae5;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    background-color: #d1fae5;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.contact-icon i {
    font-size: 1.5rem;
    color: #16a34a;
}

.contact-method h4 {
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.contact-method a,
.contact-method button {
    color: #16a34a;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: text-decoration 0.2s;
}

.contact-method a:hover,
.contact-method button:hover {
    text-decoration: underline;
}

.contact-method p {
    color: #6b7280;
    font-size: 0.875rem;
}

.service-area {
    background: linear-gradient(135deg, #d1fae5 0%, #dbeafe 100%);
    border: 2px solid #10b981;
    border-radius: 0.5rem;
    padding: 2rem;
    margin-top: 3rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.service-area-icon {
    width: 3rem;
    height: 3rem;
    background-color: #16a34a;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-area-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.service-area-content h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 0.5rem;
}

.coverage-text {
    font-size: 1.125rem;
    color: #374151;
    margin-bottom: 0.5rem;
}

.service-area-content p {
    color: #6b7280;
}

.why-book-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 2rem;
}

.why-book-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .why-book-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.why-book-item {
    padding: 1rem;
}

.why-book-number {
    font-size: 2.25rem;
    font-weight: bold;
    color: #16a34a;
    margin-bottom: 0.5rem;
}

.why-book-item p {
    color: #6b7280;
}

/* ========================================
   RESPONSIVE UTILITIES
   ======================================== */
@media (max-width: 640px) {
    .btn-lg {
        padding: 0.625rem 1.5rem;
        font-size: 1rem;
    }
}
