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

:root {
    --navy-blue: #1a237e;
    --navy-dark: #0d1440;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray-medium: #e0e0e0;
    --gray-dark: #757575;
    --accent: #3f51b5;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Hero Section - Big Focus on Logo */
.hero {
    min-height: 100vh;
    min-height: -webkit-fill-available; /* iOS Safari fix */
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-blue) 50%, var(--accent) 100%);
    position: relative;
    overflow: hidden;
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
}

.hero-content {
    text-align: center;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
    width: 100%;
    padding: 1.5rem;
    background: transparent;
}

.hero-logo {
    max-width: 500px;
    width: 100%;
    height: auto;
    margin: 0 auto 1.5rem auto;
    display: block;
    background: transparent;
}

.hero-tagline {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: clamp(1.1rem, 4vw, 1.75rem);
    font-weight: 400;
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
    font-style: italic;
    margin-bottom: 0.75rem;
    white-space: nowrap;
}

.hero-address {
    display: inline-block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    margin-top: 0.5rem;
    margin-bottom: 0;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.2);
}

.hero-address:hover,
.hero-address:active {
    color: var(--white);
    text-decoration: underline;
    transform: translateY(-1px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    color: var(--white);
    opacity: 0.8;
    z-index: 10;
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.scroll-indicator.hidden {
    opacity: 0;
    pointer-events: none;
}

.scroll-indicator svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Wash Types Section */
.wash-types {
    padding: 3rem 0;
    background: linear-gradient(to bottom, var(--white) 0%, var(--gray-light) 100%);
    text-align: center;
}

.wash-types-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.wash-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.wash-types-text {
    font-size: 1.15rem;
    color: var(--navy-blue);
    line-height: 1.8;
    font-weight: 400;
    margin: 0;
}

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

/* Services Section - Callouts */
.services {
    padding: 2.5rem 0;
    background: var(--navy-dark);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem 1.25rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.service-icon {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.service-icon svg {
    width: 2.5rem;
    height: 2.5rem;
    stroke: currentColor;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon svg {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.service-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.service-list {
    list-style: none;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
    display: inline-block;
    font-size: 0.75rem;
    line-height: 1.4;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.service-list li {
    margin-bottom: 0.3rem;
}

/* Wash Services Pricing Section */
.wash-services {
    padding: 3rem 0;
    background: var(--white);
}

.wash-services-title {
    font-size: 2rem;
    color: var(--navy-blue);
    text-align: center;
    margin-bottom: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.wash-services-subtitle {
    text-align: center;
    color: var(--gray-dark);
    font-size: 1rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    display: block;
    width: 100%;
    box-sizing: border-box;
}

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

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

.pricing-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid var(--gray-medium);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border-color: var(--navy-blue);
    border-width: 3px;
}

.best-value-ribbon {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #ffc107;
    color: var(--navy-dark);
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.pricing-title {
    font-size: 1.5rem;
    color: var(--navy-blue);
    margin-bottom: 1rem;
    font-weight: 700;
    text-align: center;
}

.pricing-price {
    font-size: 3rem;
    color: var(--navy-blue);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    min-height: 400px;
}

.soft-touch-section .pricing-features,
.touchless-section .pricing-features {
    margin-bottom: 1rem;
    min-height: auto;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.feature-included {
    color: var(--navy-blue);
}

.feature-included svg {
    color: var(--navy-blue);
    flex-shrink: 0;
}

.feature-excluded {
    color: var(--gray-dark);
}

.feature-excluded svg {
    color: var(--gray-dark);
    flex-shrink: 0;
}

.membership-button {
    width: 100%;
    padding: 1rem;
    background: var(--navy-blue);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
    white-space: nowrap;
}

.membership-button:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(63, 81, 181, 0.3);
}

.membership-button:active {
    transform: translateY(0);
}


/* FAQ Section */
.faq {
    padding: 2.5rem 0;
    background: var(--white);
}

.faq-title {
    font-size: 1.75rem;
    color: var(--navy-blue);
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--gray-medium);
    margin-bottom: 0.5rem;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--navy-blue);
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--gray-light);
    color: var(--accent);
}

.faq-question.active {
    color: var(--accent);
}

.faq-question span {
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--navy-blue);
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
    color: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1rem;
}

.faq-answer.active {
    max-height: 500px;
    padding: 0 1rem 1.25rem 1rem;
}

.faq-answer p {
    color: var(--gray-dark);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

/* Contact Section */
.contact {
    padding: 2.5rem 0;
    background: var(--gray-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info h2 {
    color: var(--navy-blue);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-details {
    margin-bottom: 1.5rem;
}

.contact-details:last-child {
    margin-bottom: 0;
}

.contact-details h3 {
    color: var(--navy-blue);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.contact-details p {
    color: var(--gray-dark);
    margin-bottom: 0.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.contact-details a {
    color: var(--navy-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--accent);
    text-decoration: underline;
}

.contact-social {
    margin-top: 1rem;
}

.contact-facebook {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--navy-blue);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(26, 35, 126, 0.05);
    border: 1px solid rgba(26, 35, 126, 0.15);
    transition: all 0.3s ease;
    font-weight: 500;
}

.contact-facebook svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.contact-facebook:hover {
    color: var(--white);
    background: var(--navy-blue);
    border-color: var(--navy-blue);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 35, 126, 0.25);
}

.contact-facebook:hover svg {
    transform: scale(1.05);
}

.hours-24 {
    color: var(--navy-blue);
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 0.25rem;
}

.contact-map {
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
}

/* Footer */
.footer {
    background: var(--navy-dark);
    color: var(--white);
    padding: 1.5rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-logo {
    height: 50px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

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

.footer p {
    margin: 0;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-logo {
        max-width: 400px;
    }

    .hero-tagline {
        font-size: clamp(1.1rem, 5vw, 2rem);
    }

    .hero-address {
        font-size: 0.85rem;
    }

    .wash-types {
        padding: 2rem 0;
    }

    .wash-types-content {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }

    .wash-icon {
        font-size: 2rem;
    }

    .wash-types-text {
        font-size: 1rem;
    }

    .services {
        padding: 3rem 0;
    }

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

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

    .service-icon svg {
        width: 2rem;
        height: 2rem;
    }

    .service-card h3 {
        font-size: 0.9rem;
    }

    .service-card p,
    .service-list {
        font-size: 0.7rem;
    }

    .service-list {
        text-align: center;
    }

    .wash-services {
        padding: 2rem 0;
    }

    .wash-services-title {
        font-size: 1.5rem;
    }

    .wash-services-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

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

    .pricing-grid-4 {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .pricing-title {
        font-size: 1.25rem;
    }

    .pricing-price {
        font-size: 2.5rem;
    }

    .pricing-features {
        min-height: auto;
    }

    .pricing-features li {
        font-size: 0.85rem;
    }

    .membership-button {
        font-size: 0.85rem;
        padding: 0.9rem;
    }

    .faq {
        padding: 2rem 0;
    }

    .faq-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .faq-question {
        font-size: 0.95rem;
        padding: 1rem 0.75rem;
    }

    .faq-answer {
        padding: 0 0.75rem;
    }

    .faq-answer.active {
        padding: 0 0.75rem 1rem 0.75rem;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }

    .contact {
        padding: 3rem 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info h2 {
        font-size: 2rem;
    }

    .contact-map {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        max-width: 320px;
    }

    .hero-tagline {
        font-size: clamp(1rem, 4.5vw, 1.75rem);
    }

    .wash-types {
        padding: 1.5rem 0;
    }

    .wash-types-content {
        padding: 1.25rem;
    }

    .wash-icon {
        font-size: 1.75rem;
    }

    .wash-types-text {
        font-size: 0.95rem;
    }

    .service-icon svg {
        width: 1.75rem;
        height: 1.75rem;
    }

    .service-card h3 {
        font-size: 0.85rem;
    }

    .service-card p,
    .service-list {
        font-size: 0.65rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .wash-services {
        padding: 1.5rem 0;
    }

    .wash-services-title {
        font-size: 1.25rem;
    }

    .wash-services-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
        white-space: normal;
    }

    .pricing-card {
        padding: 1.25rem;
    }

    .pricing-title {
        font-size: 1.1rem;
    }

    .pricing-price {
        font-size: 2rem;
    }

    .pricing-features li {
        font-size: 0.8rem;
    }

    .membership-button {
        font-size: 0.8rem;
        padding: 0.8rem;
    }

    .faq {
        padding: 1.5rem 0;
    }

    .faq-title {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .faq-question {
        font-size: 0.9rem;
        padding: 0.9rem 0.5rem;
    }

    .faq-answer {
        padding: 0 0.5rem;
    }

    .faq-answer.active {
        padding: 0 0.5rem 0.9rem 0.5rem;
    }

    .faq-answer p {
        font-size: 0.85rem;
    }

    .contact-info h2 {
        font-size: 1.75rem;
    }
}

/* Membership Modal */
.membership-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.membership-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.membership-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.membership-modal-content {
    position: relative;
    background: var(--white);
    border-radius: 15px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    animation: slideUp 0.3s ease;
}

.membership-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--gray-dark);
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.membership-modal-close:hover {
    background: var(--gray-light);
    color: var(--navy-blue);
    transform: rotate(90deg);
}

.membership-modal-title {
    font-size: 1.75rem;
    color: var(--navy-blue);
    margin: 2rem 2rem 1rem 2rem;
    font-weight: 700;
    text-align: center;
}

.membership-modal-body {
    padding: 0 2rem 1.5rem 2rem;
}

.membership-modal-body > p {
    color: var(--gray-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.membership-signup-options {
    display: grid;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.signup-option {
    background: var(--gray-light);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--navy-blue);
}

.signup-option h3 {
    color: var(--navy-blue);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.signup-option p {
    color: var(--gray-dark);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

.membership-modal-footer {
    padding: 1.5rem 2rem 2rem 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.membership-contact-button {
    padding: 0.9rem 2rem;
    background: var(--navy-blue);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.membership-contact-button:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(63, 81, 181, 0.3);
}

.membership-modal-close-button {
    padding: 0.9rem 2rem;
    background: var(--gray-medium);
    color: var(--navy-blue);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.membership-modal-close-button:hover {
    background: var(--gray-dark);
    color: var(--white);
}

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

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

@media (max-width: 768px) {
    .membership-modal-content {
        width: 95%;
        max-height: 85vh;
    }

    .membership-modal-title {
        font-size: 1.5rem;
        margin: 1.5rem 1.5rem 1rem 1.5rem;
    }

    .membership-modal-body {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }

    .membership-modal-footer {
        padding: 1.5rem 1.5rem 1.5rem 1.5rem;
        flex-direction: column;
    }

    .membership-contact-button,
    .membership-modal-close-button {
        width: 100%;
    }

    .signup-option {
        padding: 1.25rem;
    }
}
