/* Copyright by Slava */
:root {
    --primary: #007FC9;
    --primary-hover: #005A92;
    --secondary: #FFD500;
    --secondary-hover: #E6C000;
    --dark: #ffffff;
    --darker: #f8f9fa;
    --light: #222222;
    --gray: #575760;
    --glass: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(0, 0, 0, 0.08);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

html { scroll-behavior: smooth; }
a { text-decoration: none; color: inherit; }


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: var(--glass);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.4s ease;
}

.logo { display: flex; align-items: center; text-decoration: none; }
.logo-img {
    height: 85px;
    width: auto;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 4px 6px rgba(0, 127, 201, 0.3));
    transform-origin: left center;
}
.logo-img:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 8px 15px rgba(0, 127, 201, 0.5));
}

.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a { font-weight: 500; transition: color 0.3s; color: var(--light); }
.nav-links a:hover { color: var(--primary); }

.btn-outline {
    border: 2px solid var(--secondary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    color: #222222 !important;
    font-weight: 600;
    background: var(--secondary);
}
.btn-outline:hover { background: var(--secondary-hover); color: #222222 !important; }

.hamburger { display: none; font-size: 1.5rem; cursor: pointer; color: var(--light); }


.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    position: relative;
    background-color: #00426b;
    background: url('green_gtr_hero.png') center/cover no-repeat;
    overflow: hidden;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-overlay {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 40, 70, 0.7) 0%, rgba(0, 127, 201, 0.1) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: fadeInUp 1s ease;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-buttons { display: flex; gap: 1rem; position: relative; z-index: 20; }

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary { background: var(--secondary); color: #222222; border: 2px solid var(--secondary); }
.btn-primary:hover {
    background: var(--secondary-hover);
    border-color: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 213, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}
.btn-secondary:hover {
    background: #fff;
    color: var(--primary);
    transform: translateY(-2px);
}


section { padding: 6rem 5%; }
h2 { font-size: 2.5rem; margin-bottom: 3rem; text-align: center; color: var(--primary); }


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

.swiper-pagination-bullet-active { background: var(--secondary) !important; }


.card-swiper { width: 100%; height: 220px; border-bottom: 1px solid var(--glass-border); }
.card-swiper .swiper-button-next, .card-swiper .swiper-button-prev { color: white; transform: scale(0.6); opacity: 0; transition: opacity 0.3s; text-shadow: 0 0 5px rgba(0,0,0,0.8); }
.card:hover .card-swiper .swiper-button-next, .card:hover .card-swiper .swiper-button-prev { opacity: 1; }

.card {
    background: var(--dark);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    text-align: left;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-top: 5px solid var(--secondary);
}

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

.card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 1px solid var(--glass-border);
    transition: transform 0.5s ease;
}
.card:hover .card-img { transform: scale(1.05); }

.card-content { padding: 1.5rem; flex-grow: 1; background: var(--dark); position: relative; z-index: 2; }
.card-content h3 { font-size: 1.5rem; margin-bottom: 0.5rem; color: var(--light); }
.card-content p { color: var(--gray); }


.services-section { 
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%); 
    border-top: 1px solid var(--glass-border); 
    border-bottom: 1px solid var(--glass-border); 
}
.services-content { max-width: 800px; margin: 0 auto; }
.services-list { list-style: none; display: flex; flex-direction: column; gap: 1.5rem; }

.services-list li {
    background: var(--dark);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-size: 1.1rem;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}
.services-list li:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0, 127, 201, 0.1); border-color: rgba(0, 127, 201, 0.3); }
.services-list i { color: var(--primary); font-size: 1.8rem; }


.about-section { background: var(--dark); padding: 6rem 5%; }
.about-container { display: flex; gap: 4rem; max-width: 1200px; margin: 0 auto; align-items: center; }
.about-text { flex: 1; }
.about-text h2 { text-align: left; }
.highlight-quote { font-size: 1.5rem; color: var(--primary); font-weight: 700; font-style: italic; margin: 1.5rem 0; border-left: 4px solid var(--primary); padding-left: 1rem; }
.features-wrapper { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.feature-item { display: flex; align-items: center; gap: 1rem; font-size: 1.1rem; font-weight: 500; }
.feature-item i { color: var(--primary); font-size: 1.4rem; width: 30px; text-align: center; }
.about-image { flex: 1; }
.about-image img { width: 100%; border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }


.contact-section { background: var(--darker); padding: 6rem 5%; border-top: 1px solid var(--glass-border); }
.contact-container { display: grid; grid-template-columns: 3fr 2fr; gap: 3rem; max-width: 1200px; margin: 0 auto; align-items: start; }

.contact-form-wrapper { background: var(--dark); padding: 3rem; border-radius: 20px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); border-top: 5px solid var(--secondary); }
.contact-form-wrapper h3 { color: var(--primary); font-size: 1.8rem; display: flex; align-items: center; gap: 0.8rem; margin-bottom: 0.5rem; }
.form-row { display: flex; gap: 1.5rem; }
.form-row .form-group { flex: 1; }
.rental-form .form-group { margin-bottom: 1.2rem; }
.rental-form label { display: block; margin-bottom: 0.5rem; font-weight: 600; color: var(--gray); font-size: 0.95rem; }
.rental-form .form-control { width: 100%; padding: 0.8rem 1rem; border: 2px solid var(--glass-border); border-radius: 8px; font-family: 'Outfit', sans-serif; font-size: 1rem; transition: border-color 0.3s; background: var(--darker); box-sizing: border-box; }
.rental-form .form-control:focus { outline: none; border-color: var(--secondary); background: var(--dark); }

.contact-details-col { display: flex; flex-direction: column; height: 100%; }
.contact-grid-small { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-card { background: var(--dark); padding: 1.2rem; border-radius: 12px; margin-bottom: 0; display: flex; flex-direction: column; gap: 0.5rem; align-items: center; text-align: center; box-shadow: 0 4px 15px rgba(0,0,0,0.03); transition: transform 0.3s; }
.contact-card:hover { transform: translateY(-5px); border-bottom: 4px solid var(--secondary); box-shadow: 0 10px 20px rgba(255, 213, 0, 0.15); }
.contact-card i { color: var(--primary); font-size: 2rem; width: 35px; text-align: center; }
.contact-card h3 { margin-bottom: 0.3rem; font-size: 1.1rem; color: var(--primary); }
.map-box { background: linear-gradient(135deg, var(--secondary) 0%, #E6C000 100%); color: var(--light); padding: 4rem 3rem; border-radius: 20px; text-align: center; box-shadow: 0 20px 40px rgba(255,213,0,0.3); width: 100%; border: 4px solid var(--dark); box-sizing: border-box; }
.map-box i { font-size: 4rem; margin-bottom: 1.5rem; color: var(--primary); }
.map-box h3 { color: var(--light); font-size: 1.8rem; margin-bottom: 1rem; }
.map-box p { color: rgba(34, 34, 34, 0.9); margin-bottom: 0; }
.map-box .btn-primary { background: var(--primary); color: #ffffff; font-weight: bold; border: none; cursor: pointer; display: inline-block; margin-top: 20px; }
.map-box .btn-primary:hover { transform: scale(1.05); box-shadow: 0 10px 20px rgba(0,0,0,0.2); background: var(--primary-hover); }


.footer { padding: 4rem 5% 2rem; background: var(--darker); border-top: 1px solid var(--glass-border); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 3rem; margin-bottom: 3rem; }
.footer-col h3 { font-size: 1.2rem; margin-bottom: 1.5rem; color: var(--primary); }
.footer-col p { color: var(--gray); margin-bottom: 0.8rem; display: flex; align-items: center; gap: 0.5rem; }
.footer-col a:hover { color: var(--primary); }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid var(--glass-border); color: var(--gray); font-size: 0.9rem; }



[data-theme="dark"] {
    --dark: #121212;
    --darker: #1e1e1e;
    --light: #f5f5f5;
    --gray: #a0a0a0;
    --glass: rgba(18, 18, 18, 0.95);
    --glass-border: rgba(255, 255, 255, 0.08);
}
.theme-toggle {
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--light);
    transition: color 0.3s, transform 0.3s;
}
.theme-toggle:hover { color: var(--primary); transform: rotate(15deg); }


.filter-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}
.filter-btn {
    padding: 0.6rem 1.5rem;
    border: 2px solid var(--glass-border);
    background: var(--dark);
    color: var(--light);
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    font-size: 1rem;
}
.filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.filter-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(0, 127, 201, 0.3);
}


.reviews-section { background: var(--darker); padding: 6rem 5%; border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); }
.reviews-container { max-width: 1000px; margin: 0 auto; text-align: center; }
.review-card {
    background: var(--dark);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid var(--glass-border);
    margin: 1rem;
    text-align: center;
    transition: transform 0.3s;
}
[data-theme="dark"] .review-card { box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.review-card:hover { transform: translateY(-5px); }
.stars { color: var(--secondary); font-size: 1.2rem; margin-bottom: 1.5rem; display: flex; justify-content: center; gap: 0.3rem; }
.review-card p { font-size: 1.1rem; font-style: italic; color: var(--gray); margin-bottom: 1.5rem; line-height: 1.8; }
.review-card h4 { color: var(--primary); font-weight: 600; }
.reviews-swiper .swiper-pagination { position: relative; margin-top: 2rem; }


.google-review-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    text-align: left;
    border: 1px solid #e0e0e0;
    margin: 10px;
    transition: transform 0.3s;
}
.google-review-card:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
[data-theme="dark"] .google-review-card {
    background: #1e1e1e;
    border-color: #333;
    color: #f5f5f5;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.gr-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; position: relative; }
.gr-avatar { width: 45px; height: 45px; border-radius: 50%; background: #4285F4; color: #fff; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 1.2rem; }
.gr-avatar.m { background: #34A853; }
.gr-avatar.j { background: #EA4335; }
.gr-user-info h4 { margin: 0; color: #333; font-size: 1rem; }
[data-theme="dark"] .gr-user-info h4 { color: #fff; }
.gr-user-info span { font-size: 0.8rem; color: #777; }
.gr-g-logo { position: absolute; right: 0; top: 0; width: 22px; height: 22px; }
.gr-stars { color: #FBBC05; font-size: 1.1rem; margin-bottom: 0.8rem; display: flex; align-items: center; gap: 2px; }
.gr-time { color: #777; font-size: 0.85rem; margin-left: 10px; }
.google-review-card p { font-size: 0.95rem; color: #555; line-height: 1.6; margin: 0; font-family: 'Roboto', 'Outfit', sans-serif; }
[data-theme="dark"] .google-review-card p { color: #ccc; }


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

@media (max-width: 900px) {
    .about-container, .contact-container { grid-template-columns: 1fr; display: flex; flex-direction: column; }
    .form-row { flex-direction: column; gap: 0; }
}

@media (max-width: 768px) {
    .nav-links { 
        display: none; 
        flex-direction: column; 
        position: absolute; 
        top: 100%; 
        left: 0; 
        width: 100%; 
        background: var(--glass); 
        backdrop-filter: blur(15px);
        padding: 1.5rem 0; 
        text-align: center;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        gap: 1.5rem;
    }
    .nav-links.active { display: flex; }
    .hamburger { display: block; }
    .hero h1 { font-size: 2.2rem; }
    .hero p { font-size: 1rem; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .hero-buttons a { width: 100%; text-align: center; justify-content: center; }
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    background: var(--dark);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    z-index: 9999;
    border: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 4px solid var(--primary);
}
.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 1.5rem;
}
.cookie-content p {
    margin: 0;
    color: var(--light);
    font-size: 0.95rem;
    line-height: 1.4;
}
.cookie-content a {
    color: var(--primary);
    text-decoration: underline;
}
@media (max-width: 768px) {
    .cookie-content { flex-direction: column; text-align: center; }
}
