:root {
    --primary: #1b5e20;
    --primary-dark: #0d3d11;
    --primary-light: #2e7d32;
    --secondary: #e65100;
    --accent: #ff6d00;
    --accent-light: #ff9100;
    --dark: #1a1a1a;
    --gray-900: #1e293b;
    --gray-800: #334155;
    --gray-700: #475569;
    --gray-600: #64748b;
    --gray-500: #94a3b8;
    --gray-400: #cbd5e1;
    --gray-300: #e2e8f0;
    --gray-200: #f1f5f9;
    --gray-100: #f8fafc;
    --white: #ffffff;
    --success: #22c55e;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 2px 4px 0 rgb(0 0 0 / 0.08);
    --shadow-md: 0 4px 12px -2px rgb(0 0 0 / 0.12);
    --shadow-lg: 0 12px 24px -4px rgb(0 0 0 / 0.15);
    --shadow-xl: 0 20px 40px -8px rgb(0 0 0 / 0.2);
    --shadow-glow: 0 0 30px rgba(230, 81, 0, 0.15);
    --radius: 0.75rem;
    --radius-md: 0.5rem;
    --radius-lg: 1.25rem;
    --radius-xl: 2rem;
    --radius-pill: 50px;
    --transition: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--gray-700);
    background-color: var(--white);
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
    color: var(--dark);
}

h1 {
    font-weight: 800;
}

h2 {
    font-weight: 700;
}

h3, h4 {
    font-weight: 600;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.section {
    padding: 7rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-tag {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--white);
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 12px rgba(230, 81, 0, 0.25);
}

.section-header h2 {
    font-size: 2.75rem;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, var(--dark) 0%, var(--gray-800) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.bg-light {
    background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%);
}

.bg-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo img {
    height: 90px;
    width: auto;
}

.nav-bottom {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    font-weight: 500;
    color: var(--gray-700);
    transition: color var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
}

/* Dropdown menu styles */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.dropdown-toggle::after {
    content: '';
    border: solid currentColor;
    border-width: 0 2px 2px 0;
    padding: 3px;
    transform: rotate(45deg);
    margin-top: -3px;
    transition: transform 0.2s ease;
}

.nav-dropdown:hover .dropdown-toggle::after {
    transform: rotate(-135deg);
    margin-top: 3px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    transform: translateY(10px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    min-width: 240px;
    white-space: nowrap;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    display: block;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    color: var(--gray-700);
    border-radius: 10px;
    transition: all 0.2s ease;
    font-weight: 500;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
    background: linear-gradient(135deg, var(--primary) 0%, #2e7d32 100%);
    color: white;
    padding-left: 1.25rem;
}

.dropdown-menu a::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.dropdown-menu a:hover::before {
    opacity: 1;
}

.dropdown-menu a::after {
    display: none;
}

/* Button Dropdown Styles */
.btn-dropdown {
    position: relative;
    display: inline-block;
}

.btn-dropdown .dropdown-btn {
    cursor: pointer;
}

.btn-dropdown-menu {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: var(--white);
    min-width: 200px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    padding: 0.5rem 0;
    list-style: none;
    margin-bottom: 0.5rem;
}

.btn-dropdown:hover .btn-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

.btn-dropdown-menu li {
    display: block;
}

.btn-dropdown-menu a {
    display: block;
    padding: 0.75rem 1.25rem;
    margin: 0.25rem 0.5rem;
    color: var(--gray-700);
    font-weight: 500;
    transition: all 0.2s ease;
    text-align: left;
    border-radius: var(--radius-lg);
}

.btn-dropdown-menu a:hover {
    background: var(--gray-100);
    color: var(--primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-cta {
    margin-left: 1rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--dark);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.25rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(230, 81, 0, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff8c00 0%, var(--accent) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 81, 0, 0.5);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(230, 81, 0, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(27, 94, 32, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #2e7d32 0%, var(--primary) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(27, 94, 32, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 700;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(27, 94, 32, 0.3);
}

.btn-lg {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(230, 81, 0, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(255, 109, 0, 0.6);
    }
}

.btn-free-wash {
    background: linear-gradient(135deg, #ff8c00 0%, var(--secondary) 100%);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(230, 81, 0, 0.5);
    animation: pulse-glow 2s ease-in-out infinite;
    font-size: 1.1rem;
    padding: 1.1rem 2.5rem;
}

.btn-free-wash:hover {
    background: linear-gradient(135deg, #ffa000 0%, #ff8c00 100%);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 109, 0, 0.6);
    animation: none;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(27, 94, 32, 0.65) 0%, rgba(13, 61, 17, 0.55) 100%);
}

.hero-content {
    max-width: 700px;
    color: var(--white);
    padding: 6rem 0 4rem;
}

.hero-content.hero-centered {
    text-align: center;
    margin: 0 auto;
}

.hero-content.hero-centered .hero-cta {
    justify-content: center;
}

.hero-content.hero-centered .hero-trust {
    justify-content: center;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

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

.trust-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
}

.trust-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: visible;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 10;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-16px);
    box-shadow: 0 30px 60px rgba(27, 94, 32, 0.2), 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card-image {
    height: 240px;
    overflow: hidden;
    position: relative;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.service-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(transparent, rgba(0,0,0,0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-card-image::after {
    opacity: 1;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-card-image img {
    transform: scale(1.12);
}

.service-content {
    padding: 2rem;
    position: relative;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-100) 100%);
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.service-content h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.service-content p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.service-price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: var(--secondary);
    font-size: 1.4rem;
    display: inline-block;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, rgba(230, 81, 0, 0.1), rgba(255, 109, 0, 0.1));
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 2px solid rgba(230, 81, 0, 0.2);
}

.cta-section {
    background: linear-gradient(135deg, #e8e8e8 0%, #b8b8b8 100%);
    text-align: center;
    color: var(--text-dark);
}

.cta-section h2 {
    color: var(--text-dark);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.125rem;
    opacity: 0.9;
    color: #444;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.split-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.split-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.split-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.split-content p {
    color: var(--gray-600);
    margin-bottom: 2rem;
    font-size: 1.0625rem;
}

.check-list {
    margin-bottom: 2rem;
}

.check-list li {
    padding: 0.5rem 0 0.5rem 2rem;
    position: relative;
    color: var(--gray-700);
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 700;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pricing-grid.four-col {
    grid-template-columns: repeat(4, 1fr);
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-4px);
}

.pricing-card.featured {
    border-color: var(--secondary);
    background: linear-gradient(180deg, #fff8f3 0%, var(--white) 100%);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    text-transform: uppercase;
}

.pricing-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.price {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.price-period {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

.features-list {
    text-align: left;
    margin-bottom: 2rem;
}

.features-list li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: var(--gray-600);
    font-size: 0.9375rem;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

.testimonial-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-100) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    text-align: left;
    position: relative;
    border: 1px solid var(--gray-200);
    transition: all 0.4s ease;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: var(--gray-200);
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary);
}

.testimonial-stars {
    color: var(--accent);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: 700;
    color: var(--dark);
    font-size: 0.95rem;
}

.location-section {
    background: var(--gray-100);
}

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

.location-info {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.location-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.location-detail {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.location-detail strong {
    min-width: 100px;
    color: var(--dark);
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.location-map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 400px;
}

.location-map iframe {
    width: 100%;
    height: 100%;
}

.footer {
    background: var(--dark);
    color: var(--gray-400);
    padding: 4rem 0 2rem;
}

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

.footer-logo {
    display: inline-block;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 0.85;
}

.footer-logo img {
    height: 80px;
    width: auto;
    margin-bottom: 1.25rem;
}

.footer-about p {
    font-size: 0.9375rem;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--gray-800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}

.footer-social a:hover {
    background: var(--secondary);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: var(--white);
}

.footer-links h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

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

.footer-links a {
    font-size: 0.9375rem;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--secondary);
}

.footer-contact h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.footer-contact p {
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: var(--white);
    transition: color var(--transition);
}

.footer-contact a:hover {
    color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
}

.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 10rem 0 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--white) 0%, transparent 100%);
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 1.25rem;
    line-height: 1.1;
}

.page-hero p {
    color: rgba(255,255,255,0.95);
    font-size: 1.35rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.page-hero .hero-cta {
    justify-content: center;
    margin-bottom: 2.5rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero-stat {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.25rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    min-width: 140px;
}

.hero-stat-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.hero-stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Enhanced Page Hero with Background Image */
.page-hero-carwash {
    background: transparent;
    position: relative;
    padding: 12rem 0 6rem;
    min-height: 600px;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(27, 94, 32, 0.92) 0%, rgba(13, 61, 17, 0.88) 100%);
}

.page-hero-carwash::after {
    background: linear-gradient(to top, var(--white) 0%, transparent 50%);
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-pill);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    animation: bounceIn 0.6s ease forwards;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(-20px);
    }
    60% {
        transform: scale(1.1) translateY(0);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Text Gradient */
.text-gradient {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Outline Light Button */
.btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
}

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

/* Hero Stat Icon */
.hero-stat-icon {
    font-size: 1.75rem;
    display: block;
    margin-bottom: 0.5rem;
}

/* Animate Stats */
.animate-stat {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.animate-stat:nth-child(1) { animation-delay: 0.3s; }
.animate-stat:nth-child(2) { animation-delay: 0.45s; }
.animate-stat:nth-child(3) { animation-delay: 0.6s; }

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

/* Animate Pop */
.animate-pop {
    animation: popIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Hero CTA with multiple buttons */
.page-hero .hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.steps-section {
    padding: 5rem 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.step-card {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(27, 94, 32, 0.3);
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.step-card p {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.6;
}

.comparison-section {
    background: var(--gray-100);
    padding: 5rem 0;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.comparison-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: all 0.3s ease;
}

.comparison-card.featured {
    border: 3px solid var(--primary);
    transform: scale(1.05);
}

.comparison-card.featured::before {
    content: 'BEST VALUE';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    letter-spacing: 0.05em;
}

.comparison-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.comparison-card .price {
    font-size: 2.5rem;
}

.comparison-card p {
    color: var(--gray-600);
    margin-top: 0.5rem;
}

.feature-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.feature-badge {
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--white) 100%);
    border: 2px solid var(--gray-200);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-pill);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-badge svg {
    width: 20px;
    height: 20px;
    fill: var(--primary);
}

.feature-badge.highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-color: var(--primary);
}

.feature-badge.highlight svg {
    fill: var(--white);
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.benefit-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--white) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    border: 2px solid var(--gray-200);
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--primary);
}

.benefit-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.benefit-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.menu-table {
    width: 100%;
    border-collapse: collapse;
}

.menu-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.menu-table .price-cell {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--secondary);
    text-align: right;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-feature {
    text-align: center;
    padding: 2rem;
}

.service-feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-feature-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
}

.service-feature h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.service-feature p {
    color: var(--gray-600);
    font-size: 0.9375rem;
}

.promo-banner {
    background: var(--secondary);
    padding: 3rem 2rem;
    text-align: center;
    color: var(--white);
}

.promo-banner h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.promo-banner p {
    opacity: 0.95;
    margin-bottom: 1.5rem;
}

.final-cta {
    text-align: center;
    background: var(--gray-100);
}

.final-cta h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.final-cta p {
    color: var(--gray-600);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

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

.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.contact-form h2 {
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

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

.btn-block {
    width: 100%;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: var(--gray-100);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
}

.contact-card h3 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.fundraiser-section {
    background: var(--gray-100);
    padding: 3rem;
    border-radius: var(--radius-xl);
    margin-top: 3rem;
}

.fundraiser-section h2 {
    margin-bottom: 1rem;
}

.fundraiser-section p {
    margin-bottom: 2rem;
    color: var(--gray-600);
}

@media (max-width: 1024px) {
    .services-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid.four-col {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .split-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero, 
    .page-hero {
        min-height: 75vh !important;
    }

    .hero-bg img,
    .page-hero-bg img,
    .split-image img {
        height: 100% !important;
        object-fit: cover !important;
        object-position: center 15% !important;
    }
    
    .hero-trust {
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .services-grid,
    .pricing-grid,
    .pricing-grid.four-col {
        grid-template-columns: 1fr;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
    
    .page-hero {
        padding: 8rem 0 4rem;
    }
    
    .page-hero h1 {
        font-size: 2.25rem;
    }
    
    .page-hero p {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .hero-stat {
        padding: 1rem 1.25rem;
        min-width: 120px;
    }
    
    .hero-stat-value {
        font-size: 1.5rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-card.featured {
        transform: none;
    }
    
    .benefit-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .feature-badges {
        gap: 0.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-section {
        grid-template-columns: 1fr;
    }
    
    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .page-hero {
        padding: 8rem 0 3rem;
    }
    
    .page-hero h1 {
        font-size: 50px !important;
        line-height: 1.1 !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero h1,
    .page-hero h1,
    .location-hero h1,
    .contact-hero h1,
    .about-hero h1,
    .fundraising-hero h1,
    .wash-club-hero h1,
    .club-hero h1 {
        font-size: 50px !important;
        line-height: 1.1 !important;
        margin-bottom: 1.5rem !important;
    }
    
    .btn-lg {
        padding: 0.875rem 1.5rem;
    }
    
    .price {
        font-size: 2rem;
    }
}
/* Interactive Animations */
body {
    opacity: 0;
    transition: opacity 0.3s ease;
}

body.loaded {
    opacity: 1;
}

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

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Card Animations */
.service-card:nth-child(1) { transition-delay: 0s; }
.service-card:nth-child(2) { transition-delay: 0.15s; }
.service-card:nth-child(3) { transition-delay: 0.3s; }

/* Fade In Variants */
.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.animate-in,
.fade-in-right.animate-in,
.fade-in-up.animate-in,
.fade-in-scale.animate-in {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
}

/* Hero Animations */
.hero h1 {
    animation: slideInUp 0.8s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.hero p {
    animation: slideInUp 0.8s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.hero-cta {
    animation: slideInUp 0.8s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

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

/* Floating Animation for Cards on Hover */
.service-card {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}

/* Subtle Hover Float for Trust Items */
.trust-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Pulsing CTA Button */
.hero-cta .btn-primary {
    animation: subtlePulse 2s ease-in-out infinite;
}

@keyframes subtlePulse {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(230, 81, 0, 0.35);
    }
    50% {
        box-shadow: 0 8px 40px rgba(230, 81, 0, 0.55);
    }
}

/* Section Header Animation */
.section-header {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-header.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Counter Number Pop */
.trust-number {
    transition: transform 0.3s ease;
}

.trust-item:hover .trust-number {
    transform: scale(1.1);
}

/* Smooth Image Reveal */
.service-card-image {
    overflow: hidden;
}

.service-card-image img {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Floating Animation for Feature Icons */
.benefit-icon,
.step-number {
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Shine Effect on Buttons */
.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::after {
    left: 100%;
}

/* Wiggle Animation for Mobile Menu Icon */
@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-3deg); }
    75% { transform: rotate(3deg); }
}

.nav-toggle:hover {
    animation: wiggle 0.3s ease;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--secondary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(230, 81, 0, 0.4);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--accent);
    transform: translateY(-4px);
}

/* Ripple Effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Button Hover Effects */
.btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.btn:active {
    transform: translateY(-1px);
}

/* Shake Animation */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-5px); }
    40%, 80% { transform: translateX(5px); }
}

.shake {
    animation: shake 0.5s ease;
}

/* Loading Button */
.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid white;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 3rem 2rem;
    animation: pop-in 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    font-size: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: bounce-in 0.6s ease;
}

@keyframes pop-in {
    0% { opacity: 0; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes bounce-in {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.success-message h3 {
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.success-message p {
    color: var(--gray-600);
}

/* Confetti */
.confetti {
    position: fixed;
    width: 10px;
    height: 10px;
    pointer-events: none;
    z-index: 9999;
}

/* Form Error State */
input.error,
select.error,
textarea.error {
    border-color: #ef4444 !important;
    animation: shake 0.3s ease;
}

/* Pricing Card Hover */
.pricing-card {
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Service Card Image */
.service-card-image img {
    transition: transform 0.5s ease;
}

/* Hero Parallax */
.hero-bg {
    overflow: hidden;
}

.hero-bg img {
    transition: transform 0.1s linear;
}

/* Fun hover on nav links */
.nav-menu a {
    position: relative;
}


/* Trust numbers pulse */
.trust-number {
    display: inline-block;
}

.trust-number.counted {
    animation: pulse-once 0.5s ease;
}

@keyframes pulse-once {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Split section image hover */
.split-image {
    transition: transform 0.5s ease;
}

.split-image:hover {
    transform: scale(1.02);
}

/* Phone link highlight */
a[href^="tel:"] {
    transition: all 0.3s ease;
}

a[href^="tel:"]:hover {
    color: var(--secondary) !important;
}

/* Contact card hover */
.contact-card {
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

/* Service feature icon bounce */
.service-feature:hover .service-feature-icon {
    animation: bounce 0.5s ease;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Testimonial card subtle float */
.testimonial-card {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* CTA section pulse */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shine 8s linear infinite;
}

@keyframes shine {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Mobile touch feedback */
@media (max-width: 768px) {
    .btn:active {
        transform: scale(0.97);
    }
    
    .pricing-card:active {
        transform: scale(0.98);
    }
}

/* Hero Badges */
.hero-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    flex-wrap: wrap;
}

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

.hero-stat-number {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
}

.hero-stat-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.9;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* 3 Easy Steps Section - Bold Horizontal Layout */
.steps-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.steps-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.steps-header {
    text-align: center;
    margin-bottom: 4rem;
}

.steps-header h2 {
    color: var(--white);
    font-size: 2.75rem;
    margin-top: 1rem;
}

.section-tag-light {
    background: rgba(255, 255, 255, 0.15) !important;
    color: var(--white) !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.steps-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 1100px;
    margin: 0 auto;
}

.step-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    flex: 1;
    max-width: 280px;
    position: relative;
    transition: all 0.4s ease;
}

.step-box:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.step-box-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    box-shadow: 0 6px 20px rgba(230, 81, 0, 0.5);
}

.step-box-icon {
    width: 70px;
    height: 70px;
    margin: 1rem auto 1.5rem;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(230, 81, 0, 0.4);
}

.step-box-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--white);
}

.step-box h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.step-box p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.step-arrow {
    color: var(--accent);
    opacity: 0.7;
}

.step-arrow svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.steps-section .section-cta {
    margin-top: 3.5rem;
    text-align: center;
}

/* Step Box Animations */
.animate-step {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-step[data-step="1"] { transition-delay: 0s; }
.animate-step[data-step="2"] { transition-delay: 0.2s; }
.animate-step[data-step="3"] { transition-delay: 0.4s; }

.animate-step.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.animate-step-arrow {
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.animate-step-arrow[data-step="1"] { transition-delay: 0.15s; }
.animate-step-arrow[data-step="2"] { transition-delay: 0.35s; }

.animate-step-arrow.animate-in {
    opacity: 0.7;
    transform: translateX(0);
}

.animate-step-arrow.animate-in svg {
    animation: stepArrowPulse 1.5s ease-in-out infinite;
    animation-delay: 0.6s;
}

@keyframes stepArrowPulse {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(8px);
    }
}

/* Icon bounce when step appears */
.animate-step.animate-in .step-box-icon {
    animation: iconPop 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
    animation-delay: 0.3s;
}

@keyframes iconPop {
    0% {
        transform: scale(0.8);
    }
    50% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
    }
}

/* Number badge pulse */
.animate-step.animate-in .step-box-number {
    animation: numberPop 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

@keyframes numberPop {
    0% {
        transform: scale(0) translateX(-50%);
    }
    100% {
        transform: scale(1) translateX(-50%);
    }
}

@media (max-width: 900px) {
    .steps-row {
        flex-direction: column;
        gap: 3rem;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .animate-step-arrow.animate-in svg {
        animation: stepArrowPulseMobile 1.5s ease-in-out infinite;
        animation-delay: 0.6s;
    }

    @keyframes stepArrowPulseMobile {
        0%, 100% {
            transform: translateY(0) rotate(90deg);
        }
        50% {
            transform: translateY(8px) rotate(90deg);
        }
    }
    
    .step-box {
        max-width: 320px;
        width: 100%;
    }
    
    .steps-header h2 {
        font-size: 2rem;
    }
}

/* Service Card Enhancements */
.service-card {
    position: relative;
}

.service-card.featured {
    border: 2px solid var(--secondary);
    border-radius: var(--radius-xl);
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary);
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 10;
}

.service-content .btn {
    margin-top: 1rem;
}

/* Value Section */
.value-section {
    background: var(--gray-100);
}

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

.value-content h2 {
    margin-bottom: 1rem;
}

.value-content > p {
    margin-bottom: 2rem;
    color: var(--gray-600);
    font-size: 1.1rem;
}

.value-comparison {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.value-item {
    padding: 1.25rem 1.5rem;
    background: white;
    border-radius: var(--radius);
    border: 2px solid var(--gray-300);
    position: relative;
}

.value-item.best {
    border-color: var(--secondary);
    background: linear-gradient(135deg, rgba(230, 81, 0, 0.05), rgba(255, 109, 0, 0.05));
}

.value-badge {
    position: absolute;
    top: -0.75rem;
    left: 1rem;
    background: var(--secondary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.value-label {
    display: block;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.value-desc {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.value-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.value-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Features Section */
.features-section {
    background: var(--primary);
    color: white;
}

.features-section .section-header h2,
.features-section .section-tag {
    color: white;
}

.features-section .section-tag {
    opacity: 0.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.feature-card h3 {
    color: white;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* CTA Enhancements */
.cta-content {
    text-align: center;
    position: relative;
}

.cta-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    animation: none;
}

.testimonial-stars {
    color: var(--accent);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: pulse-bg 4s ease-in-out infinite;
}

@keyframes pulse-bg {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.final-cta h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2.75rem;
    position: relative;
    z-index: 1;
}

.final-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    font-size: 1.25rem;
    position: relative;
    z-index: 1;
}

.final-cta .hero-cta {
    position: relative;
    z-index: 1;
}

.final-cta .btn-outline {
    border-color: white;
    border-width: 2px;
    color: white;
    background: transparent;
}

.final-cta .btn-outline:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
}

/* Location Card */
.location-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.location-card h3 {
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.location-hours {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.location-hours h4 {
    margin-bottom: 1rem;
    color: var(--dark);
}

.location-card .btn {
    margin-top: 1.5rem;
}

/* Responsive - Steps & Features */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .value-grid {
        grid-template-columns: 1fr;
    }
    
    .value-image {
        order: -1;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .hero-stat-number {
        font-size: 2rem;
    }
}

/* Reviews Page Styles */
.reviews-header {
    margin-bottom: 3rem;
}

.rating-display {
    display: inline-block;
    padding: 2rem 3rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.rating-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
}

.stars {
    font-size: 2rem;
    color: #f59e0b;
    margin: 0.5rem 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.review-stars {
    color: #f59e0b;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.review-text {
    font-style: italic;
    color: var(--gray-700);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.review-author {
    font-weight: 600;
    color: var(--primary);
}

/* About Page Styles */
.about-content {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.about-content .lead {
    font-size: 1.25rem;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

/* VIP Club Styles */
.vip-badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    padding: 2rem 3rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.discount-amount {
    font-size: 3rem;
    font-weight: 800;
    display: block;
}

.discount-text {
    font-size: 1.25rem;
}

.vip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.vip-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.vip-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.vip-card h3 {
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.vip-discount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step-card {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

/* Free Wash Page */
.free-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 3rem 4rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-xl);
}

.free-text {
    font-size: 4rem;
    font-weight: 800;
    display: block;
}

.wash-text {
    font-size: 1.5rem;
}

.offer-details {
    margin-top: 3rem;
    padding: 3rem;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 1.5rem;
}

.benefit-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.benefit-item h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.phone-link {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
}

/* Warning signs for A/C page */
.warning-signs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.warning-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.warning-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

/* Check list for service pages */
.check-list {
    text-align: left;
    list-style: none;
    padding: 0;
}

.check-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

/* VIP Deals Section on Homepage */
.vip-deals-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0 2rem;
}

.vip-deal-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--secondary);
}

.vip-deal-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vip-deal-icon::before {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
}

.icon-military {
    background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%);
}

.icon-military::before {
    content: "★";
}

.icon-ladies {
    background: linear-gradient(135deg, #c2185b 0%, #e91e63 100%);
}

.icon-ladies::before {
    content: "♀";
}

.icon-seniors {
    background: linear-gradient(135deg, #1565c0 0%, #1976d2 100%);
}

.icon-seniors::before {
    content: "65+";
    font-size: 0.75rem;
}

.vip-deal-text {
    display: flex;
    flex-direction: column;
}

.vip-deal-text strong {
    font-size: 1.1rem;
    color: var(--dark);
}

.vip-deal-text span {
    color: var(--secondary);
    font-weight: 600;
}

/* StoryBrand Problem Section */
/* Combined Problem/Solution Section */
.problem-solution-section {
    background: var(--gray-100);
    padding: 4rem 0;
}

.problem-solution-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.problem-side, .solution-side {
    padding: 2rem;
    border-radius: var(--radius-lg);
}

.problem-side {
    background: white;
    border: 2px solid var(--gray-300);
}

.solution-side {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
}

.side-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-weight: 700;
}

.problem-side .side-label {
    color: var(--gray-500);
}

.solution-side .side-label {
    color: rgba(255, 255, 255, 0.8);
}

.problem-list, .solution-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.problem-list li, .solution-list li {
    padding: 0.75rem 0;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.problem-list li:not(:last-child), .solution-list li:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.solution-list li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.problem-list li::before {
    content: "✗";
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.1rem;
}

.solution-list li::before {
    content: "✓";
    color: #4ade80;
    font-weight: 700;
    font-size: 1.1rem;
}

.solution-arrow {
    font-size: 3rem;
    color: var(--primary);
    font-weight: 300;
}

/* Problem/Solution Animations */
.animate-slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-slide-left.animate-in,
.animate-slide-right.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.animate-arrow {
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.5s ease 0.3s, transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.3s;
}

.animate-arrow.animate-in {
    opacity: 1;
    transform: scale(1);
}

.animate-arrow.animate-in span {
    display: inline-block;
    animation: arrowBounce 1.5s ease-in-out infinite;
    animation-delay: 0.8s;
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(10px);
    }
}

.animate-list-item {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.animate-slide-left.animate-in .animate-list-item,
.animate-slide-right.animate-in .animate-list-item {
    opacity: 1;
    transform: translateY(0);
}

.problem-list .animate-list-item:nth-child(1),
.solution-list .animate-list-item:nth-child(1) {
    transition-delay: 0.2s;
}

.problem-list .animate-list-item:nth-child(2),
.solution-list .animate-list-item:nth-child(2) {
    transition-delay: 0.35s;
}

.problem-list .animate-list-item:nth-child(3),
.solution-list .animate-list-item:nth-child(3) {
    transition-delay: 0.5s;
}

@media (max-width: 768px) {
    .problem-solution-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .solution-arrow {
        transform: rotate(90deg);
        text-align: center;
        display: flex;
        justify-content: center;
        width: 100%;
        margin: 2rem 0;
    }

    .solution-arrow span {
        display: block;
        animation: arrowBounceMobile 1.5s ease-in-out infinite;
    }

    @keyframes arrowBounceMobile {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(10px);
        }
    }
}

.problem-section {
    background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.problem-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 2px solid var(--gray-200);
    transition: all 0.4s ease;
    box-shadow: var(--shadow-md);
}

.problem-card:hover {
    border-color: var(--secondary);
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
}

.problem-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(230, 81, 0, 0.3);
}

.problem-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.problem-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: var(--dark);
}

.problem-card p {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* StoryBrand Guide Section */
.guide-section {
    background: var(--gray-100);
}

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

.guide-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    position: relative;
    min-height: 500px;
    border: 4px solid var(--secondary);
}

.guide-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(230, 81, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.guide-image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
}

.guide-content h2 {
    margin-bottom: 1.5rem;
}

.guide-content p {
    font-size: 1.1rem;
    color: var(--gray-700);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.guide-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.guide-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    padding: 0.6rem 1rem;
    border-radius: 50px;
    border: 1px solid var(--gray-200);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark);
    transition: all 0.3s ease;
}

.amenity-item:hover {
    border-color: var(--secondary);
    background: rgba(230, 81, 0, 0.05);
}

.amenity-item svg {
    width: 18px;
    height: 18px;
    fill: var(--secondary);
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Montserrat', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 500;
}

/* StoryBrand Success Section */
.success-section {
    background: var(--primary);
    color: white;
}

.success-section .section-header.light h2,
.success-section .section-header.light .section-tag {
    color: white;
}

.success-section .section-header.light .section-tag {
    opacity: 0.8;
}

.success-section .section-header.light p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.success-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.success-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.success-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.success-item h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.success-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Value Benefits List */
.value-benefits {
    list-style: none;
    margin: 1.5rem 0 2rem;
}

.value-benefits li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--gray-700);
}

.value-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

/* Section CTA */
.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Responsive for new sections */
@media (max-width: 992px) {
    .problem-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .guide-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .guide-image {
        order: -1;
        max-height: 400px;
    }
    
    .guide-stats {
        justify-content: center;
    }
    
    .success-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .guide-stats {
        flex-direction: row;
        justify-content: space-between;
        gap: 1rem;
        text-align: center;
    }
    
    .guide-stat {
        flex: 1;
    }

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

    .amenity-item {
        justify-content: center;
        width: 100%;
        margin: 0 !important;
    }

    .guide-content .btn {
        display: block;
        width: fit-content !important;
        margin: 2rem auto 0 !important;
    }
    
    .success-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* ========================================
   UNLIMITED WASH CLUB SECTION
   ======================================== */

.unlimited-club-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #0d3d11 0%, #1b5e20 50%, #2e7d32 100%);
    overflow: hidden;
}

.unlimited-club-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 109, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 145, 0, 0.1) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.unlimited-club-section .container {
    position: relative;
    z-index: 1;
}

.unlimited-club-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.unlimited-club-content {
    color: white;
}

.section-tag.tag-gold {
    background: linear-gradient(135deg, #ff6d00, #ff9100);
    color: white;
    font-weight: 700;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 109, 0, 0.4);
}

.unlimited-club-content h2 {
    font-size: 3rem;
    line-height: 1.1;
    margin: 1.5rem 0 1rem;
    color: white;
}

.text-gradient {
    background: linear-gradient(135deg, #ff9100, #ffab40);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.unlimited-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

/* Savings Calculator */
.savings-calculator {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.calculator-header {
    text-align: center;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.calc-title {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    color: #ffab40;
    margin-bottom: 0.25rem;
}

.calc-note {
    font-size: 0.85rem;
    opacity: 0.8;
}

.tax-note {
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 1rem;
    font-style: italic;
}

.savings-math {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

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

.savings-label {
    display: block;
    font-size: 0.75rem;
    opacity: 0.8;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.savings-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.savings-value.strikethrough {
    text-decoration: line-through;
    opacity: 0.7;
    color: #ff8a80;
}

.savings-symbol {
    font-size: 1.5rem;
    font-weight: 700;
    opacity: 0.6;
}

.savings-result {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.you-pay {
    display: flex;
    flex-direction: column;
}

.you-pay span:first-child {
    font-size: 0.85rem;
    opacity: 0.8;
}

.member-price {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    color: #4ade80;
}

.price-period {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.8;
}

.save-badge {
    background: linear-gradient(135deg, #ff6d00, #e65100);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 4px 20px rgba(255, 109, 0, 0.5);
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Perks */
.unlimited-perks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.perk-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    transition: var(--transition);
}

.perk-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.perk-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

/* Gold Button */
.btn-gold {
    background: linear-gradient(135deg, #ff9100, #ff6d00);
    color: white;
    font-weight: 700;
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(255, 109, 0, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 109, 0, 0.5);
    background: linear-gradient(135deg, #ffab40, #ff9100);
}

.guarantee-text {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Right Side Visual */
.unlimited-club-visual {
    position: relative;
}

.membership-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transform: rotate(-2deg);
    transition: var(--transition);
}

.membership-card:hover {
    transform: rotate(0deg) scale(1.02);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gray-200);
}

.card-logo {
    height: 50px;
    width: auto;
}

.card-type {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.card-body {
    margin-bottom: 1.5rem;
}

.card-benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    color: var(--gray-700);
    font-weight: 500;
}

.card-benefit:not(:last-child) {
    border-bottom: 1px solid var(--gray-200);
}

.benefit-icon {
    font-size: 1.5rem;
}

.card-footer {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    margin: -2rem;
    margin-top: 0;
    padding: 1.5rem 2rem;
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    text-align: center;
    color: white;
}

.card-price {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
}

.card-tagline {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Floating Testimonial */
.floating-testimonial {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background: white;
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    max-width: 280px;
    transform: rotate(3deg);
    animation: float-gentle 4s ease-in-out infinite;
}

@keyframes float-gentle {
    0%, 100% { transform: rotate(3deg) translateY(0); }
    50% { transform: rotate(3deg) translateY(-10px); }
}

/* Simplified Final Unlimited Club Section */
.unlimited-club-final {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #ff6d00 0%, #e65100 50%, #ff9100 100%);
    overflow: hidden;
    text-align: center;
}

.club-final-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.unlimited-club-final .container {
    position: relative;
    z-index: 1;
}

.unlimited-final-content {
    max-width: 600px;
    margin: 0 auto;
    color: white;
}

.club-badge-wrapper {
    margin-bottom: 1.5rem;
}

.club-badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    font-size: 2.5rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
    animation: pulse-icon 3s ease-in-out infinite;
}

@keyframes pulse-icon {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 30px 10px rgba(255, 255, 255, 0.2); }
}

.unlimited-final-content h2 {
    font-size: 2.75rem;
    margin: 0 0 1rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.unlimited-final-content .unlimited-subtitle {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}

.unlimited-club-final .btn-gold {
    background: white;
    color: var(--secondary);
    font-weight: 700;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.unlimited-club-final .btn-gold:hover {
    background: var(--gray-100);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
    .unlimited-final-content h2 {
        font-size: 2rem;
    }
    
    .club-badge-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
}

/* Visit Us Section - Premium Design */
.visit-section {
    background: linear-gradient(180deg, white 0%, var(--gray-100) 100%);
    padding: 4rem 0;
    position: relative;
}

.visit-card {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #2e7d32 100%);
    border-radius: var(--radius-xl);
    padding: 0;
    display: flex;
    align-items: stretch;
    box-shadow: 0 20px 60px rgba(27, 94, 32, 0.25), 0 8px 24px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    overflow: hidden;
    position: relative;
}

.visit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.visit-left {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 2rem 2.5rem;
    position: relative;
    z-index: 1;
}

.visit-icon-wrap {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: pulse-soft 3s ease-in-out infinite;
}

@keyframes pulse-soft {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.visit-icon-wrap svg {
    width: 26px;
    height: 26px;
    color: white;
}

.visit-info h3 {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.35rem;
    font-weight: 600;
}

.visit-address {
    font-size: 1.15rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.visit-divider {
    width: 1px;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.3) 20%, rgba(255, 255, 255, 0.3) 80%, transparent 100%);
    flex-shrink: 0;
    align-self: stretch;
}

.visit-center {
    flex-shrink: 0;
    padding: 2rem 2.5rem;
    position: relative;
    z-index: 1;
}

.visit-hours-grid {
    display: flex;
    gap: 2.5rem;
}

.visit-hours-item {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.visit-day {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.35rem;
}

.visit-time {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
}

.visit-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
    padding: 2rem 2.5rem;
    background: rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.visit-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.1);
}

.visit-phone:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.visit-phone svg {
    width: 20px;
    height: 20px;
}

.visit-right .btn {
    background: white;
    color: var(--primary);
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.visit-right .btn:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

@media (max-width: 1024px) {
    .visit-section {
        padding: 3rem 0;
    }
    
    .visit-card {
        flex-direction: column;
        border-radius: var(--radius-lg);
    }
    
    .visit-left, .visit-center, .visit-right {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    
    .visit-left {
        flex-direction: column;
        padding: 1.75rem 1.5rem 1.25rem;
    }
    
    .visit-icon-wrap {
        width: 48px;
        height: 48px;
    }
    
    .visit-icon-wrap svg {
        width: 22px;
        height: 22px;
    }
    
    .visit-address {
        font-size: 1.05rem;
    }
    
    .visit-divider {
        width: 80%;
        height: 1px;
        background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 20%, rgba(255, 255, 255, 0.3) 80%, transparent 100%);
        margin: 0 auto;
    }
    
    .visit-center {
        padding: 1.25rem 1.5rem;
    }
    
    .visit-hours-grid {
        justify-content: center;
        gap: 2rem;
    }
    
    .visit-right {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1.25rem 1.5rem 1.75rem;
    }
    
    .visit-phone {
        font-size: 1rem;
        padding: 0.6rem 1.25rem;
    }
}

@media (max-width: 480px) {
    .visit-section {
        padding: 2rem 0;
    }
    
    .visit-card {
        margin-bottom: 2rem;
    }
    
    .visit-left {
        padding: 1.5rem 1rem 1rem;
    }
    
    .visit-info h3 {
        font-size: 0.65rem;
    }
    
    .visit-address {
        font-size: 0.95rem;
    }
    
    .visit-center {
        padding: 1rem;
    }
    
    .visit-hours-grid {
        gap: 1.5rem;
    }
    
    .visit-day {
        font-size: 0.65rem;
    }
    
    .visit-time {
        font-size: 0.95rem;
    }
    
    .visit-right {
        padding: 1rem 1rem 1.5rem;
    }
    
    .visit-phone {
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }
    
    .visit-right .btn {
        width: 100%;
    }
}

/* FAQ Section - Compact 2-Column */
.faq-section {
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
}

.faq-title {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--gray-600);
    font-weight: 500;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.faq-item {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-light);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(27, 94, 32, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.875rem 1rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark);
    text-align: left;
    transition: all 0.3s ease;
    gap: 0.5rem;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1rem 1rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .faq-section {
        margin-top: 0;
    }
    
    .faq-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .faq-item {
        border-radius: var(--radius-md);
    }
    
    .faq-question {
        font-size: 0.85rem;
        padding: 0.875rem 1rem;
    }
    
    .faq-answer p {
        font-size: 0.8rem;
        padding: 0 1rem 0.875rem;
        line-height: 1.5;
    }
    
    .faq-item.active .faq-answer {
        max-height: 250px;
    }
}

@media (max-width: 480px) {
    .faq-question {
        font-size: 0.8rem;
        padding: 0.75rem 0.875rem;
    }
    
    .faq-icon {
        font-size: 1.1rem;
    }
    
    .faq-answer p {
        font-size: 0.75rem;
        padding: 0 0.875rem 0.75rem;
    }
}

.mini-stars {
    color: #fbbf24;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.floating-testimonial p {
    font-size: 0.9rem;
    color: var(--gray-700);
    font-style: italic;
    margin-bottom: 0.5rem;
}

.floating-testimonial span {
    font-size: 0.8rem;
    color: var(--gray-500);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 992px) {
    .unlimited-club-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .unlimited-club-content h2 {
        font-size: 2.5rem;
    }
    
    .savings-math {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .floating-testimonial {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 2rem;
        transform: none;
    }
}

@media (max-width: 576px) {
    .unlimited-club-content h2 {
        font-size: 2rem;
    }
    
    .unlimited-perks {
        grid-template-columns: 1fr;
    }
    
    .savings-result {
        flex-direction: column;
        text-align: center;
    }
    
    .member-price {
        font-size: 2rem;
    }
}

/* ===========================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   =========================================== */

/* Mobile Navigation - Complete Overhaul */
@media (max-width: 768px) {
    /* Header adjustments */
    .header {
        position: fixed;
        width: 100%;
    }
    
    .nav {
        height: 70px;
        padding: 0 1rem;
        position: relative;
    }
    
    .logo img {
        height: 55px;
    }
    
    .nav-bottom {
        position: static;
        gap: 1rem;
    }
    
    /* Hamburger menu styling */
    .nav-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
        order: 3;
    }
    
    .nav-toggle span {
        display: block;
        width: 24px;
        height: 3px;
        background: var(--primary);
        border-radius: 2px;
        transition: all 0.3s ease;
        margin: 3px 0;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    /* Mobile menu */
    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1.5rem;
        gap: 0;
        overflow-y: auto;
        z-index: 999;
        box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu > li {
        border-bottom: 1px solid var(--gray-200);
    }
    
    .nav-menu > li:last-child {
        border-bottom: none;
    }
    
    .nav-menu > li > a {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--dark);
    }
    
    /* Mobile dropdowns */
    .nav-dropdown {
        position: relative;
    }
    
    .nav-dropdown .dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 1rem 0;
    }
    
    .nav-dropdown .dropdown-toggle::after {
        transition: transform 0.3s ease;
    }
    
    .nav-dropdown.open .dropdown-toggle::after {
        transform: rotate(-135deg);
        margin-top: 3px;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background: var(--gray-50);
        box-shadow: none;
        border-radius: 12px;
        padding: 0.5rem;
        margin: 0.5rem 0 1rem;
        min-width: 100%;
    }
    
    .nav-dropdown.open .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu a {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }
    
    /* Hide desktop CTA button on mobile */
    .nav-cta {
        display: none;
    }
    
    /* Mobile CTA item styling */
    .mobile-cta-item {
        display: block !important;
        padding: 1rem 0;
        margin-top: 0.5rem;
        border-bottom: none !important;
    }
    
    .mobile-nav-cta {
        display: block;
        width: 100%;
        text-align: center;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

/* Hide mobile CTA on desktop */
@media (min-width: 769px) {
    .mobile-cta-item {
        display: none !important;
    }
}

/* Mobile Hero Sections */
@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
        padding-top: 70px;
    }
    
    .hero-content {
        padding: 2rem 0;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .hero-subtitle br {
        display: none;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-cta .btn {
        width: 100%;
        text-align: center;
    }
    
    .page-hero {
        padding: 6rem 0 2rem;
        min-height: auto;
    }
    
    .page-hero h1 {
        font-size: 1.75rem;
    }
    
    .page-hero p {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
    }
    
    .hero-stat {
        padding: 0.75rem 1rem;
        min-width: 100px;
        flex: 1 1 45%;
    }
    
    .hero-stat-value {
        font-size: 1.25rem;
    }
    
    .hero-stat-label {
        font-size: 0.75rem;
    }
}

/* Mobile Sections and Typography */
@media (max-width: 768px) {
    .section {
        padding: 3rem 0;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .section-tag {
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    h4 {
        font-size: 1.1rem;
    }
}

/* Mobile Grids and Cards */
@media (max-width: 768px) {
    .services-grid,
    .pricing-grid,
    .pricing-grid.four-col,
    .features-grid,
    .benefits-grid,
    .wins-grid,
    .stats-grid,
    .detailing-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-card,
    .pricing-card,
    .win-card,
    .feature-card {
        padding: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .pricing-card .price,
    .price {
        font-size: 2rem;
    }
    
    .pricing-card .price-period {
        font-size: 0.9rem;
    }
    
    /* Wins section */
    .wins-grid {
        gap: 1.5rem;
    }
    
    .win-card {
        padding: 1.5rem;
    }
    
    .win-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .win-card h3 {
        font-size: 1.1rem;
    }
    
    /* Steps grid */
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step-card {
        padding: 1.5rem;
    }
    
    /* Comparison cards */
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .comparison-card {
        padding: 1.5rem;
    }
    
    .comparison-card.featured {
        transform: none;
        order: -1;
    }
}

/* Mobile Buttons */
@media (max-width: 768px) {
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .btn-lg {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .final-cta-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .final-cta-buttons .btn {
        width: 100%;
    }
    
    .cta-section .container {
        padding: 2rem 1rem;
    }
    
    .cta-section h2 {
        font-size: 1.5rem;
    }
}

/* Mobile Footer */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-col h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-col ul {
        gap: 0.5rem;
    }
    
    .footer-logo {
        margin: 0 auto 1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding-top: 1.5rem;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Mobile Forms */
@media (max-width: 768px) {
    .contact-section,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.875rem 1rem;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .contact-card {
        padding: 1.5rem;
    }
}

/* Mobile Split Sections */
@media (max-width: 768px) {
    .split-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .split-section.reverse {
        direction: ltr;
    }
    
    .split-image {
        height: 250px;
        order: -1;
    }
    
    .split-content {
        padding: 0;
    }
}

/* Mobile Tables */
@media (max-width: 768px) {
    .pricing-table {
        font-size: 0.9rem;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 0.75rem 0.5rem;
    }
    
    /* Make tables horizontally scrollable */
    .table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* Mobile Toggle Switches */
@media (max-width: 768px) {
    .toggle-container {
        flex-direction: row;
        gap: 0.5rem;
    }
    
    .toggle-btn {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
}

/* Mobile Auto Care Page */
@media (max-width: 768px) {
    .sticky-nav {
        position: relative;
        top: 0;
        padding: 0.5rem;
    }
    
    .sticky-nav-inner {
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
    }
    
    .sticky-nav a {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
        flex: 0 0 auto;
    }
    
    .service-section {
        padding: 3rem 0;
    }
}

/* Mobile Reviews Page */
@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .review-card {
        padding: 1.5rem;
    }
    
    .rating-summary {
        flex-direction: column;
        text-align: center;
    }
}

/* Mobile Location Page */
@media (max-width: 768px) {
    .location-grid {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        height: 300px;
    }
    
    .info-card {
        padding: 1.5rem;
    }
}

/* Mobile VIP/Deals Section */
@media (max-width: 768px) {
    .deals-grid,
    .vip-grid {
        grid-template-columns: 1fr;
    }
    
    .deal-card,
    .vip-card {
        padding: 1.5rem;
    }
}

/* Small Mobile Adjustments */
@media (max-width: 480px) {
    .nav {
        height: 60px;
        padding: 0 0.75rem;
    }
    
    .logo img {
        height: 45px;
    }
    
    .nav-menu {
        top: 60px;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .page-hero h1 {
        font-size: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .pricing-card .price,
    .price {
        font-size: 1.75rem;
    }
    
    .hero-stat {
        flex: 1 1 100%;
    }
    
    .win-card,
    .service-card,
    .pricing-card {
        padding: 1.25rem;
    }
}

/* Prevent horizontal scroll on mobile only */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
    }
}

/* Better touch targets */
@media (max-width: 768px) {
    a, button {
        min-height: 44px;
        min-width: 44px;
    }
    
    .dropdown-menu a {
        min-height: 48px;
        display: flex;
        align-items: center;
    }
}

/* Accessibility Widget Overrides - Force bottom-left position */
.uwy,
#userwayAccessibilityIcon,
[class*="userway"] {
    left: 20px !important;
    right: auto !important;
    bottom: 20px !important;
    top: auto !important;
}
