         /*LICENCE: digiluft.com */
         
       /* Global Stiller */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        :root {
            --gold: #D4AF37;
            --gold-light: #F5D76E;
            --black: #000000;
            --dark-gray: #222222;
            --white: #FFFFFF;
        }

        body {
            background-color: var(--black);
            color: var(--white);
            line-height: 1.6;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Header Stili */
        header {
            background-color: var(--black);
            padding: 15px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

.logo {
    display: flex;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    margin-left: 10px;
}

.logo-icon {
    color: var(--gold);
    font-size: 2rem;
    margin-right: 10px;
}

.sb-text {
    color: var(--gold);
}

.group-text {
    color: white;
}


        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 25px;
        }

        nav ul li a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            font-size: 1.1rem;
        }

        nav ul li a:hover,
        nav ul li a.active {
            color: var(--gold);
        }

        .mobile-toggle {
            display: none;
            color: var(--gold);
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?ixlib=rb-1.2.1&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 0 20px;
            margin-top: 70px;
        }

        .hero-content {
            max-width: 800px;
        }

        .hero h2 {
            font-size: 3rem;
            color: var(--gold);
            margin-bottom: 20px;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: var(--white);
        }

        .btn {
            display: inline-block;
            background-color: var(--gold);
            color: var(--black);
            padding: 12px 30px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: all 0.3s;
            border: 2px solid var(--gold);
        }

        .btn:hover {
            background-color: transparent;
            color: var(--gold);
        }

        .btn-whatsapp {
            background-color: #25D366;
            border-color: #25D366;
            margin-left: 15px;
        }

        .btn-whatsapp:hover {
            background-color: transparent;
            color: #25D366;
        }

        .btn-group {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        /* Features Section */
        .features {
            padding: 80px 0;
            background-color: var(--dark-gray);
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 50px;
            color: var(--gold);
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            margin-bottom: 40px;
            color: var(--gold-light);
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .feature-cards {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }

        .feature-card {
            background-color: var(--black);
            border: 1px solid var(--gold);
            border-radius: 8px;
            padding: 30px;
            width: calc(33.333% - 20px);
            min-width: 250px;
            text-align: center;
            transition: transform 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-10px);
        }

        .feature-card i {
            color: var(--gold);
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--gold);
        }

        /* Car Showcase */
        .car-showcase {
            padding: 80px 0;
            background-color: var(--black);
        }

        .cars {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }

        .car-card {
            background-color: var(--dark-gray);
            border-radius: 8px;
            overflow: hidden;
            width: calc(33.333% - 20px);
            min-width: 280px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s;
        }

        .car-card:hover {
            transform: translateY(-10px);
        }

        .car-image {
            height: 200px;
            background-color: var(--dark-gray);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .car-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .car-details {
            padding: 20px;
        }

        .car-details h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: var(--gold);
        }

        .car-price {
            font-size: 1.2rem;
            font-weight: bold;
            color: var(--gold);
            margin: 10px 0;
        }

        .car-category {
            display: inline-block;
            background-color: var(--gold);
            color: var(--black);
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 0.8rem;
            margin-bottom: 10px;
        }

        /* Services Section */
        .services {
            padding: 80px 0;
            background-color: var(--dark-gray);
        }

        .service-cards {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }

        .service-card {
            background-color: var(--black);
            border-radius: 8px;
            padding: 30px;
            width: calc(25% - 30px);
            min-width: 220px;
            text-align: center;
            border: 1px solid var(--gold);
            transition: transform 0.3s;
        }

        .service-card:hover {
            transform: translateY(-10px);
        }

        .service-card i {
            color: var(--gold);
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .service-card h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--gold);
        }

        /* About Page */
        .about {
            padding: 150px 0 80px;
            background-color: var(--black);
        }

        .about-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 50px;
        }

        .about-image {
            flex: 1;
            min-width: 300px;
            background-color: var(--dark-gray);
            height: 400px;
            border-radius: 8px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .about-text {
            flex: 1;
            min-width: 300px;
        }

        .about-text h2 {
            color: var(--gold);
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .divider {
            height: 4px;
            width: 60px;
            background-color: var(--gold);
            margin-bottom: 20px;
        }

        .mission-vision {
            margin-top: 30px;
            background-color: var(--dark-gray);
            padding: 25px;
            border-radius: 8px;
            border-left: 4px solid var(--gold);
        }

        .mission-vision h4 {
            color: var(--gold);
            margin-bottom: 10px;
        }

        /* Our Team */
        .team {
            padding: 80px 0;
            background-color: var(--dark-gray);
        }

        .team-members {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }

        .team-member {
            width: calc(25% - 30px);
            min-width: 220px;
            background-color: var(--black);
            border-radius: 8px;
            overflow: hidden;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .member-image {
            height: 500px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .member-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .member-details {
            padding: 20px;
        }

        .member-details h3 {
            color: var(--gold);
            margin-bottom: 5px;
        }

        .member-position {
            color: var(--gold-light);
            margin-bottom: 15px;
        }

        /* FAQ Section */
        .faq {
            padding: 80px 0;
            background-color: var(--black);
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 20px;
            border: 1px solid var(--gold);
            border-radius: 8px;
            overflow: hidden;
        }

        .faq-question {
            background-color: var(--dark-gray);
            padding: 15px 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: bold;
        }

        .faq-question:hover {
            background-color: rgba(212, 175, 55, 0.1);
        }

        .faq-answer {
            padding: 20px;
            background-color: var(--black);
            display: none;
        }

        .faq-answer.active {
            display: block;
        }

        /* Testimonials */
        .testimonials {
            padding: 80px 0;
            background-color: var(--dark-gray);
        }

        .testimonial-cards {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }

        .testimonial-card {
            background-color: var(--black);
            border-radius: 8px;
            padding: 30px;
            width: calc(33.333% - 20px);
            min-width: 280px;
            position: relative;
            border: 1px solid var(--gold);
        }

        .testimonial-card::before {
            content: '"';
            font-size: 5rem;
            color: rgba(212, 175, 55, 0.2);
            position: absolute;
            top: 10px;
            left: 20px;
            line-height: 1;
        }

        .testimonial-content {
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .author-image {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }

        .author-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-info h4 {
            color: var(--gold);
            margin-bottom: 5px;
        }

        /* Contact Page */
        .contact {
            padding: 150px 0 80px;
            background-color: var(--black);
        }

        .contact-content {
            display: flex;
            flex-wrap: wrap;
            gap: 50px;
        }

        .contact-info {
            flex: 1;
            min-width: 300px;
        }

        .contact-info h2 {
            color: var(--gold);
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .contact-details {
            margin-top: 30px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .contact-item i {
            color: var(--gold);
            font-size: 1.5rem;
            margin-right: 15px;
            min-width: 30px;
        }

        .contact-form {
            flex: 1;
            min-width: 300px;
            background-color: var(--dark-gray);
            padding: 30px;
            border-radius: 8px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-control {
            width: 100%;
            padding: 12px;
            border: 2px solid var(--gold);
            background-color: var(--black);
            color: var(--white);
            border-radius: 5px;
            font-size: 1rem;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--gold-light);
        }

        textarea.form-control {
            height: 150px;
            resize: vertical;
        }

        /* Google Maps */
        .map-container {
            margin-top: 40px;
            height: 300px;
            border-radius: 8px;
            overflow: hidden;
            border: 2px solid var(--gold);
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Footer */
        footer {
            background-color: var(--black);
            padding: 50px 0 20px;
            border-top: 1px solid var(--gold);
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
        }

        .footer-column {
            flex: 1;
            min-width: 200px;
        }

        .footer-column h3 {
            color: var(--gold);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 10px;
        }

        .footer-column ul li a {
            color: var(--white);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-column ul li a:hover {
            color: var(--gold);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: var(--dark-gray);
            color: var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .social-links a:hover {
            background-color: var(--gold);
            color: var(--black);
        }

        .copyright {
            text-align: center;
            margin-top: 50px;
            color: var(--gold-light);
            font-size: 0.9rem;
        }

        /* Responsive Styles */
        @media screen and (max-width: 768px) {
            header {
                padding: 10px 0;
            }
            
            .mobile-toggle {
                display: block;
            }
            
            nav {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 80%;
                height: calc(100vh - 70px);
                background-color: var(--black);
                transition: left 0.3s;
                box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
            }
            
            nav.active {
                left: 0;
            }
            
            nav ul {
                flex-direction: column;
                padding: 20px;
            }
            
            nav ul li {
                margin-left: 0;
                margin-bottom: 20px;
            }
            
            .hero h2 {
                font-size: 2rem;
            }
            
            .feature-card,
            .service-card,
            .car-card,
            .testimonial-card {
                width: 100%;
            }
            
            .team-member {
                width: calc(50% - 15px);
            }
            
            .about-image {
                height: 300px;
            }
            
            .contact-form,
            .contact-info {
                width: 100%;
            }

            .btn-group {
                flex-direction: column;
                align-items: center;
            }

            .btn-group .btn {
                width: 100%;
                margin-left: 0;
                margin-top: 10px;
            }
        }

        @media screen and (max-width: 480px) {
            .logo h1 {
                font-size: 1.5rem;
            }
            
            .hero h2 {
                font-size: 1.8rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .team-member {
                width: 100%;
            }
        }