@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@300;400;500;600;700&display=swap');

:root {
    --bg: #0a0d14;
    --bg-soft: #111827;
    --panel: #121b2b;
    --panel-alt: #0e1624;
    --text: #edf2f7;
    --muted: #b7c0cf;
    --white: #ffffff;
    --dark: #111111;
    --orange: #FF6600;
    --orange-soft: #ff8a3d;
    --blue: #00BFFF;
    --blue-soft: #46d7ff;
    --red: #E3000B;
    --gold: #FFD166;
    --line: rgba(255, 255, 255, 0.12);
    --shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rajdhani', Arial, sans-serif;
    background: var(--white);
    color: #1a1d24;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 80px;
    background: rgba(9, 14, 20, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: flex;
    gap: 8px;
}

.logo-text .ts {
    color: #FF6600;
    text-shadow: 0 0 15px rgba(255, 102, 0, 0.9), 0 0 30px rgba(255, 102, 0, 0.5);
}

.logo-text .pneus {
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8), 2px 2px 4px rgba(0, 0, 0, 0.9);
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 8px;
    padding: 8px 10px;
    background: rgba(15, 20, 28, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.nav-menu li a {
    display: block;
    padding: 10px 16px;
    border-radius: 999px;
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: 0.25s ease;
    position: relative;
}

.nav-menu li a::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--orange), var(--red));
    opacity: 0;
    transition: opacity 0.25s ease;
    z-index: -1;
}

.nav-menu li a:hover,
.nav-menu li.active a {
    color: var(--white);
    box-shadow: 0 8px 22px rgba(255, 102, 0, 0.3);
}

.nav-menu li a:hover::before,
.nav-menu li.active a::before {
    opacity: 1;
}

.video-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
}

.video-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) contrast(1.08);
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 13, 20, 0.35), rgba(8, 13, 20, 0.72));
}

.video-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 1rem;
}

.video-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2.2rem, 5vw, 5rem);
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-shadow: 0 0 24px rgba(255, 102, 0, 0.85), 0 0 50px rgba(255, 102, 0, 0.5);
}

.video-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.7rem);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 2rem;
}

.discover-button {
    display: inline-block;
    padding: 1rem 2.2rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--orange), #dc3d00);
    color: var(--white);
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow: 0 18px 35px rgba(255, 102, 0, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.discover-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 25px 50px rgba(255, 102, 0, 0.45);
}

.section-white,
.section-black,
.gallery,
.testimonials,
.partners,
.contact,
.footer {
    width: 100%;
}

.section-white {
    background: #ffffff;
    color: #1b1d23;
    padding: 110px 0;
}

.section-black {
    background: #0a0d14;
    color: var(--white);
    padding: 110px 0;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.section-white .section-title {
    color: #1e2431;
}

.section-black .section-title {
    color: var(--white);
    text-shadow: 0 0 18px rgba(255, 102, 0, 0.55);
}

.section-subtitle {
    text-align: center;
    font-size: 1.18rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 3rem;
}

.section-white .section-subtitle {
    color: #4d5869;
}

.section-black .section-subtitle {
    color: #d5dcea;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.service-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 2.2rem;
    text-align: center;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}

.section-white .service-card {
    background: #f8fafc;
    border-color: rgba(17, 24, 39, 0.08);
    box-shadow: 0 15px 35px rgba(17, 24, 39, 0.06);
}

.section-white .service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 102, 0, 0.5);
    box-shadow: 0 18px 35px rgba(255, 102, 0, 0.12);
}

.section-black .service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 102, 0, 0.6);
    box-shadow: 0 18px 35px rgba(255, 102, 0, 0.18);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 102, 0, 0.1);
    border: 2px solid #FF6600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.service-icon svg {
    display: block;
    transition: transform 0.3s ease;
}

.section-white .service-icon {
    background: rgba(17, 24, 39, 0.04);
    border-color: rgba(17, 24, 39, 0.08);
}

.service-card:hover .service-icon {
    border-color: #FF6600;
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.4);
}

.service-card:hover .service-icon svg {
    transform: scale(1.15);
}

.service-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.section-white .service-title {
    color: #161d2d;
}

.section-black .service-title {
    color: var(--white);
}

.service-description {
    font-size: 1.08rem;
    color: inherit;
    opacity: 0.88;
}

.section-white .service-description {
    color: #333333;
}

.section-black .service-description {
    color: var(--muted);
}

.gallery {
    background: linear-gradient(180deg, #0d1118, #111827 25%, #111827 100%);
    padding: 110px 0;
    color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
}

.gallery-item {
    position: relative;
    height: 260px;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
    background: #0f172a;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px 16px;
    background: linear-gradient(180deg, transparent 10%, rgba(7, 11, 18, 0.9) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    margin-bottom: 0.2rem;
    text-transform: uppercase;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.95rem;
}

.gallery-cta {
    margin-top: 2.5rem;
    text-align: center;
}

.gallery-cta p {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: var(--muted);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.2rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--orange), #dc3d00);
    color: var(--white);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 18px 38px rgba(255, 102, 0, 0.32);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 50px rgba(255, 102, 0, 0.4);
}

.testimonials {
    background: #f4f7fb;
    padding: 110px 0;
    color: #111827;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 22px;
    padding: 28px 24px;
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.06);
}

.testimonial-content p {
    color: #233145;
    font-size: 1.18rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    border-top: 1px solid rgba(17, 24, 39, 0.08);
    padding-top: 1rem;
}

.testimonial-author strong {
    font-family: 'Orbitron', monospace;
    font-size: 0.82rem;
    text-transform: uppercase;
}

.testimonial-author span {
    color: var(--gold);
    font-size: 1.05rem;
    letter-spacing: 0.15em;
}

.testimonials-cta {
    margin-top: 2.5rem;
    text-align: center;
}

.testimonials-cta p {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: #334155;
}

.social-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.5rem;
    border-radius: 999px;
    background: #1877f2;
    color: var(--white);
    font-weight: 700;
}

.partners {
    background: linear-gradient(180deg, #19120e, #0b1118 100%);
    padding: 110px 0;
    color: var(--white);
}

.partners-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.partner-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.16);
}

.partner-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 102, 0, 0.55);
    box-shadow: 0 18px 35px rgba(255, 102, 0, 0.14);
}

.partner-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.partner-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.partner-card p {
    color: rgba(255, 255, 255, 0.76);
    margin-bottom: 1rem;
}

.partner-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.2rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 102, 0, 0.45);
    color: var(--white);
    font-weight: 700;
    transition: background 0.25s ease, transform 0.25s ease;
}

.partner-link:hover {
    background: rgba(255, 102, 0, 0.12);
    transform: translateX(2px);
}

.contact {
    background: linear-gradient(180deg, #0d1118, #0c1420 100%);
    padding: 110px 0;
    color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 0.95fr 1.2fr;
    gap: 28px;
    align-items: stretch;
}

.contact-info-section,
.contact-form {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--shadow);
}

.contact-info-section h3,
.contact-form h3 {
    font-family: 'Orbitron', monospace;
    margin-bottom: 1.4rem;
    text-transform: uppercase;
}

.contact-item {
    margin-bottom: 1.2rem;
}

.contact-item strong {
    display: inline-block;
    margin-bottom: 0.4rem;
    color: var(--orange-soft);
}

.contact-item p,
.contact-item em {
    color: rgba(255, 255, 255, 0.78);
}

.contact-form .form-group {
    margin-bottom: 1.1rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.45rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: rgba(10, 15, 24, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--white);
    padding: 0.9rem 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form textarea {
    min-height: 130px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(255, 102, 0, 0.8);
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.15);
}

.form-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 1.2rem;
}

.submit-btn,
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    cursor: pointer;
    border: none;
    flex: 1 1 220px;
    padding: 0.9rem 1.2rem;
}

.submit-btn {
    appearance: none;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--orange), #d64200);
    color: var(--white);
    letter-spacing: 0.08em;
    box-shadow: 0 18px 35px rgba(255, 102, 0, 0.35);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 40px rgba(255, 102, 0, 0.42);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #1ebc5b);
    color: #fff;
    box-shadow: 0 18px 35px rgba(37, 211, 102, 0.25);
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.04);
    box-shadow: 0 22px 38px rgba(37, 211, 102, 0.35);
}

@media (max-width: 540px) {
    .form-actions {
        flex-direction: column;
    }

    .submit-btn,
    .whatsapp-btn {
        width: 100%;
        flex: 1 1 auto;
    }
}

.footer {
    background: #050d16;
    color: var(--white);
    padding: 72px 0 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    margin-bottom: 26px;
}

.footer-section h3,
.footer-section h4 {
    font-family: 'Orbitron', monospace;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.footer-section p,
.footer-section li,
.footer-section a {
    color: rgba(255, 255, 255, 0.74);
}

.footer-section ul {
    list-style: none;
    display: grid;
    gap: 0.5rem;
}

.footer-section a:hover {
    color: var(--orange-soft);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.clean-wash-brand {
    color: var(--blue);
    font-size: clamp(2.1rem, 4vw, 3.8rem);
    font-family: 'Orbitron', monospace;
    text-shadow: 0 0 18px rgba(0, 191, 255, 0.7), 0 0 38px rgba(0, 191, 255, 0.35);
}

.clean-wash-by {
    color: var(--white);
    font-size: clamp(1.2rem, 2vw, 2rem);
    font-style: italic;
    margin: 0 1rem;
}

.clean-wash-ts {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    padding: 0.6rem 1rem;
    border-radius: 10px;
    font-family: 'Orbitron', monospace;
    font-size: clamp(2rem, 4vw, 3.2rem);
    box-shadow: 0 14px 26px rgba(227, 0, 11, 0.28);
}

.clean-wash-content {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 42px;
    margin-top: 2.5rem;
    align-items: start;
}

.clean-wash-image {
    position: sticky;
    top: 100px;
}

.flyer-image {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    border-radius: 18px;
    border: 1px solid rgba(0, 191, 255, 0.35);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.clean-wash-services {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.clean-service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 191, 255, 0.22);
    border-left: 4px solid var(--blue);
    border-radius: 18px;
    padding: 1.5rem 1.4rem;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.clean-service-card:hover {
    transform: translateX(6px);
    border-color: rgba(0, 191, 255, 0.7);
}

.clean-service-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    color: var(--white);
}

.clean-service-list {
    list-style: none;
    display: grid;
    gap: 0.35rem;
}

.clean-service-list li {
    position: relative;
    padding-left: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.clean-service-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--blue);
}

.clean-service-note {
    background: rgba(0, 191, 255, 0.07);
    border: 1px solid rgba(0, 191, 255, 0.4);
    border-radius: 18px;
    padding: 1.2rem 1rem;
    color: var(--white);
}

.clean-service-note p {
    margin-bottom: 0.3rem;
}

@media (max-width: 1024px) {
    .nav-container {
        padding: 0 16px;
    }

    .clean-wash-content {
        grid-template-columns: 1fr;
    }

    .clean-wash-image {
        position: static;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header {
        height: 80px;
    }

    .nav-container {
        padding: 0 12px;
        gap: 10px;
    }

    .logo-text {
        letter-spacing: 0.08em;
    }

    .nav-menu {
        gap: 4px;
        padding: 6px 8px;
        overflow-x: auto;
        white-space: nowrap;
    }

    .nav-menu li a {
        padding: 8px 10px;
        font-size: 0.7rem;
        letter-spacing: 0.06em;
    }

    .services-grid,
    .gallery-grid,
    .testimonials-grid,
    .partners-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 18px;
    }
}

@media (max-width: 480px) {
    .header {
        height: 80px;
    }

    .nav-container {
        padding: 0 10px;
    }

    .logo-text {
        font-size: 1.05rem;
    }

    .nav-menu {
        gap: 2px;
        padding: 5px 6px;
    }

    .nav-menu li a {
        padding: 7px 8px;
        font-size: 0.65rem;
    }

    .video-content {
        padding: 0 1rem;
    }

    .video-subtitle {
        letter-spacing: 0.1em;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .service-card,
    .contact-info-section,
    .contact-form {
        padding: 1.25rem;
    }
}
