:root {
    --bg-color: #0d0f14;
    --card-bg: rgba(22, 24, 29, 0.7);
    --text-color: #f4f4f5;
    --text-muted: #a1a1aa;
    --primary-color: #ff2a2a;
    --primary-hover: #ff4d4d;
    --accent-color: #ffffff;
    --border-color: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(255, 42, 42, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(42, 131, 255, 0.02) 0%, transparent 50%);
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    line-height: 1.2;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a.text-link {
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 600;
}

a:hover {
    color: var(--primary-hover);
}

.text-primary {
    color: var(--primary-color);
}

/* Header & Navigation */
header {
    background-color: rgba(13, 15, 20, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1;
}

.logo-top {
    color: var(--primary-color);
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.logo-main {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    font-style: italic;
    margin: 2px 0;
}

.logo-bottom {
    color: var(--primary-color);
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: right;
}

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

nav a {
    color: var(--text-color);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.mobile-menu-btn {
    display: none;
    font-size: 1.8rem;
    color: var(--text-color);
    background: none;
    border: none;
    cursor: pointer;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #cc0000);
    color: white !important;
    box-shadow: 0 4px 15px rgba(255, 42, 42, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 42, 42, 0.4);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--glass-border);
    color: var(--text-color) !important;
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

section {
    padding: 6rem 0;
}

.glass-panel {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
}

/* Hero Section */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 6rem 5%;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('assets/images/hero_van.png') center/cover;
    opacity: 0.15;
    z-index: -1;
    filter: blur(4px);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 50%;
    background: linear-gradient(to top, var(--bg-color), transparent);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.3rem;
    color: #d1d1d6;
    margin-bottom: 3rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Content Blocks (Text + Image) */
.content-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.content-block:last-child {
    margin-bottom: 0;
}

.content-block.reverse {
    direction: rtl;
}

.content-block.reverse > * {
    direction: ltr;
}

.content-text h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.content-text p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), transparent);
    border: 1px solid var(--border-color);
}

.content-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    display: block;
    transition: transform 0.5s ease;
}

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

/* Services Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.service-card {
    background: linear-gradient(180deg, rgba(22, 24, 29, 0.8), rgba(15, 17, 21, 0.9));
    padding: 3rem 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 42, 42, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(255, 42, 42, 0.4));
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--card-bg), rgba(255, 42, 42, 0.05));
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 5rem 3rem;
    text-align: center;
    margin: 4rem 0;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.cta-banner h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-banner p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info {
    padding-right: 2rem;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.contact-info ul {
    list-style: none;
    margin-top: 2rem;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    padding: 1rem;
    background: rgba(255,255,255,0.02);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.contact-info i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

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

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

.form-group input, .form-group textarea {
    width: 100%;
    padding: 1.2rem;
    background-color: rgba(0,0,0,0.2);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-color);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: rgba(0,0,0,0.4);
    box-shadow: 0 0 0 3px rgba(255, 42, 42, 0.1);
}

.hidden {
    display: none !important;
}

/* FAQ */
.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.2rem;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    padding: 0 2rem 1.5rem;
    max-height: 500px;
}

/* Footer */
footer {
    background-color: #08090b;
    padding: 4rem 5%;
    text-align: center;
    border-top: 1px solid var(--border-color);
    margin-top: 4rem;
}

.footer-links {
    margin-bottom: 2rem;
}

.footer-links a {
    margin: 0 1.5rem;
    color: var(--text-muted);
    font-weight: 600;
}

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

/* Responsive Design */
@media (max-width: 968px) {
    .content-block {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .content-block.reverse {
        direction: ltr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero {
        padding: 4rem 5%;
        min-height: 70vh;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 73px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 73px);
        background-color: rgba(13, 15, 20, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        transition: left 0.3s ease;
    }
    
    nav.active {
        left: 0;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .content-text h2 {
        font-size: 2.2rem;
    }
    
    .cta-banner h2 {
        font-size: 2.2rem;
    }
    
    .cta-banner {
        padding: 3rem 1.5rem;
    }
    
    section {
        padding: 4rem 0;
    }
}

/* Testimonials */
.testimonials {
    padding: 6rem 0;
}

.testimonial-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    margin-top: 3rem;
    padding-bottom: 2rem;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) rgba(255, 255, 255, 0.05);
}

.testimonial-grid::-webkit-scrollbar {
    height: 8px;
}
.testimonial-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}
.testimonial-grid::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.testimonial-card {
    width: 350px; max-width: 85vw;
    flex: 0 0 auto;
    scroll-snap-align: start;
    background: linear-gradient(180deg, rgba(22, 24, 29, 0.6), rgba(15, 17, 21, 0.8));
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    position: relative;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 42, 42, 0.2);
}

.testimonial-card i.fa-quote-right {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    color: rgba(255, 42, 42, 0.1);
}

.stars {
    color: #ffc107;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 700;
    color: var(--accent-color);
    font-size: 1.1rem;
}
.testimonial-role {
    font-size: 0.9rem;
    color: var(--primary-color);
}

/* Action Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.btn-call {
    background: linear-gradient(135deg, #2c313c, #1f232b);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white !important;
}

.btn-call:hover {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white !important;
}

.btn-whatsapp:hover {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transform: translateY(-3px);
}
/* Cookie Banner */
.user-consent-modal {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 17, 21, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    flex-wrap: wrap;
    gap: 1rem;
}

.user-consent-modal.show {
    transform: translateY(0);
}

.consent-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.consent-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    max-width: 800px;
}

.consent-content a {
    color: var(--primary-color);
}

.consent-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .user-consent-modal {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
    }
    .consent-buttons {
        width: 100%;
        flex-direction: column;
    }
    .consent-buttons .btn {
        width: 100%;
        text-align: center;
        padding: 0.8rem;
    }
}




