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

:root {
    --white: #FFFFFF;
    --yellow: #F6C43D;
    --orange: #FF6B35;
    --red: #DC2626;
    --grey: #F6F6F6;
    --black: #222222;
    --blue: #1088E4;
    --dark-grey: #6c757d;
    --text-gradient: linear-gradient(135deg,var(--grey) 20%, var(--grey) 60%,  var(--dark-grey) 80%);
    --orange-gradient: linear-gradient(135deg, var(--yellow) 20%, var(--orange) 90%);
    --dark-contact-gradient: linear-gradient(135deg,var(--black) 20%, var(--yellow) 40%,  var(--yellow) 60%,var(--black) 80%);
    --feature-background: linear-gradient(135deg,var(--yellow) 20%, var(--grey) 60%,  var(--dark-grey) 80%);
    --nav-background: linear-gradient(135deg, var(--white) 20%, var(--dark-grey) 90%);
    --blue-gradient: linear-gradient(135deg, var(--black) 0%, var(--blue) 100%);
}
html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--white);
    color: #fff;
}

section {
    scroll-margin-top: 7.7rem;
}

i {
    color: var(--dark-grey);
    font-size: 1.2rem;
}

i.social {
    color: var(--yellow);
}

img.logo-img {
    max-width: 12rem;
    margin-top: 0.8rem;
}

.nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: transparent;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
    opacity: 0.99;
}

.nav.scrolled {
    background: var(--nav-background);
    opacity: 1;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #222222;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo svg {
    width: 90px;
    height: 90px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    font-size: 1.2rem;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--yellow);
}

.nav.scrolled a {
    color: var(--white);
}

.nav.scrolled a:hover  {
    color: var(--yellow);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--orange-gradient);
    transition: all 0.3s;
    border-radius: 3px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem 5%;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("assets/car.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    line-height: 1.1;
    background: var(--text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out;
    padding-top: 2rem;     
}

.hero p {
    font-size: 1.25rem;
    background: var(--white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2.5rem;
    padding-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

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

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    border: 1px solid var(--black);
    cursor: pointer;
}

.btn-primary {
    background: var(--yellow);
    color: var(--black);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    color: var(--grey);
    background: transparent;
    border: 1px solid var(--yellow);
}

.btn-secondary {
    color: var(--grey);
    border: 1px solid var(--yellow);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: var(--grey);
    color: var(--yellow);
}

.features {
    padding: 6rem 5%;
    background: var(--grey);
}

.about {
    padding-top: 3rem 5%;
    padding-bottom: 6rem 5%;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    background: var(--blue-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-bottom: 2rem;
}

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

.feature-card {
    background: var(--blue-gradient);
    border: 1px solid var(--dark-grey);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: var(--grey);
    border-color: var(--black);
    box-shadow: 0 20px 60px var(--dark-grey);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--yellow);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.feature-img {
    max-width: 100%;
    margin-bottom: 1rem;
    border-radius: 15px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--grey);
}
.feature-card:hover h3 {
    background: var(--blue-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card p {
    color: var(--grey);
    line-height: 1.6;
}

.feature-card:hover p {
    color: var(--dark-grey);
}

.stats {
    padding: 6rem 5%;
    background: var(--nav-background);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.stat-item h2 {
    font-size: 3rem;
    font-weight: 800;
    background: var(--blue-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--black);
    font-size: 1.1rem;
}

.footer {
    padding: 3rem 5%;
    text-align: center;
    border-top: 1px solid rgba(99, 102, 241, 0.1);
    background: var(--nav-background);
}

.footer p {
    color: var(--black);
}

.pricing {
    padding: 6rem 5%;
    background: var(--grey);
}

.pricing-section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    background: var(--blue-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-bottom: 2rem;
}

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

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s;
    backdrop-filter: blur(10px);
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-10px);
    background: rgba(99, 102, 241, 0.05);
    border-color: #222222;
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.2);
}

.pricing-card.featured {
    border: 2px solid #222222;
    background: rgba(99, 102, 241, 0.08);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: var(--blue-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    background: var(--blue-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.price-period {
    color: var(--dark-grey);
    margin-bottom: 2rem;
}

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

.pricing-features li {
    color: var(--black);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li:before {
    content: "✓ ";
    color: #222222;
    font-weight: bold;
    margin-right: 0.5rem;
}

.address {
    padding: 6rem 5%;
    background: var(--grey);
}

.address p {
    text-align: center;
    color: var(--black);
}

p.important {
    font-size: 1.1rem; 
    font-weight: 600;
    color: var(--black);
}

p.smaller {
    font-size: 0.8rem;
}

.address-card {
    background: var(--nav-background);
    border: 1px solid var(--black);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s;
    backdrop-filter: blur(10px);
    text-align: center;
}


.address.featured {
    border: 2px solid #222222;
    background: var(--blue);
}

.contact {
    padding: 6rem 5%;
    background: var(--nav-background);
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    color: #222222;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--grey);
    border: 1px solid var(--dark-grey);
    border-radius: 12px;
    color: var(--black);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--black);
    background: rgba(246, 196, 61, 0.95) /* --yellow in rgb*/
}

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

.success-message {
    display: none;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.success-message.show {
    display: block;
}

.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-error {
    display: none;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.form-error.show {
    display: block;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
        padding-top: 6rem; 
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 70%;
        max-width: 300px;
        background: rgba(10, 14, 39, 0.98);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(99, 102, 241, 0.2);
        border-radius: 20px 0 0 20px;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transition: right 0.3s ease;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        right: 0;
        top: 9rem;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(99, 102, 241, 0.1);
    }

    .nav-links li:last-child a {
        border-bottom: none;
    }

    .features-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
}