/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #f5f5f5;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 25%, #2a2a2a 50%, #1a1a1a 75%, #0a0a0a 100%);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-logo {
    flex-shrink: 0;
    margin-right: auto;
}

.nav-logo h2 {
    font-family: 'Playfair Display', serif;
    color: #ffd700;
    font-size: 1.8rem;
    font-weight: 700;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.8), 0 0 60px rgba(255, 215, 0, 0.4);
}

.nav-logo img {
    height: 24px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffd700, #ffff00, #ffd700);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

.nav-menu a:hover::after {
    width: 100%;
}

.lang-switch {
    flex-shrink: 0;
    display: flex;
    gap: 10px;
    align-items: center;
    margin-left: auto;
}

.lang-switch a {
    color: #b3b3b3;
    text-decoration: none;
    font-weight: 600;
    padding: 6px 8px;
    border-radius: 6px;
    transition: color 0.2s ease, background 0.2s ease;
}

.lang-switch a.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.lang-switch a.inactive {
    color: #7a7a7a;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(26, 26, 26, 0.6) 25%, rgba(42, 42, 42, 0.4) 50%, rgba(26, 26, 26, 0.6) 75%, rgba(10, 10, 10, 0.8) 100%);
    z-index: 2;
}

.hero-content {
    text-align: center;
    z-index: 3;
    max-width: 800px;
    padding: 0 20px;
    position: relative;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.highlight {
    background: linear-gradient(45deg, #ffd700, #ffff00, #ffd700, #ffff00);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 2s ease-in-out infinite;
    position: relative;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
}

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

.hero-subtitle {
    font-size: 1.3rem;
    color: #ccc;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

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

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(45deg, #ffd700, #ffff00, #ffd700, #ffff00);
    background-size: 300% 300%;
    color: #000;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.6), 0 0 50px rgba(255, 215, 0, 0.3);
    animation: buttonShimmer 2s ease-in-out infinite;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.5);
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.8), 0 0 80px rgba(255, 215, 0, 0.4);
    animation-duration: 1s;
    filter: brightness(1.2);
}

.btn-secondary {
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
    position: relative;
    overflow: hidden;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-secondary:hover::before {
    left: 100%;
}

.btn-secondary:hover {
    background: rgba(255, 215, 0, 0.1);
    color: #ffff00;
    border-color: #ffff00;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.6), 0 0 40px rgba(255, 215, 0, 0.3);
    text-shadow: 0 0 20px rgba(255, 255, 0, 0.8);
}

/* Stars Animation */
.hero-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 4;
}

.stars-animation {
    position: relative;
    width: 100%;
    height: 100%;
}

.star {
    position: absolute;
    width: 3px;
    height: 3px;
    background: radial-gradient(circle, #ffd700, #ffff00, #ffd700);
    border-radius: 50%;
    animation: twinkle 2s infinite;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 0 0 40px rgba(255, 215, 0, 0.4);
}

.star:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.star:nth-child(2) { top: 30%; left: 80%; animation-delay: 0.5s; }
.star:nth-child(3) { top: 60%; left: 20%; animation-delay: 1s; }
.star:nth-child(4) { top: 70%; left: 70%; animation-delay: 1.5s; }
.star:nth-child(5) { top: 40%; left: 50%; animation-delay: 2s; }
.star:nth-child(6) { top: 80%; left: 30%; animation-delay: 2.5s; }
.star:nth-child(7) { top: 15%; left: 60%; animation-delay: 3s; }
.star:nth-child(8) { top: 85%; left: 90%; animation-delay: 3.5s; }

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 25%, #111111 50%, #0a0a0a 75%, #000000 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    font-weight: 300;
}

.service-options {
    margin-bottom: 60px;
}

.option-group {
    margin-bottom: 50px;
}

.option-group h3 {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.8), 0 0 60px rgba(255, 215, 0, 0.4);
    position: relative;
}

.option-group h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ffd700, #ffff00, #ffd700, transparent);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.vehicle-light-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.vehicle-option {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border: 2px solid transparent;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vehicle-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.vehicle-option:hover::before {
    left: 100%;
}

.vehicle-option:hover {
    border-color: #ffd700;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.6), 0 0 60px rgba(255, 215, 0, 0.3);
}

.vehicle-option.selected {
    border-color: #ffd700;
    background: linear-gradient(145deg, #2a2a1a, #3a3a2a);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.5), 0 0 80px rgba(255, 215, 0, 0.2);
}

.vehicle-icon {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 15px;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.8), 0 0 60px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
}

.vehicle-option:hover .vehicle-icon {
    transform: scale(1.2);
    color: #ffff00;
    text-shadow: 0 0 40px rgba(255, 255, 0, 1), 0 0 80px rgba(255, 255, 0, 0.6);
}

.vehicle-option h4 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.vehicle-option p {
    color: #ccc;
    margin-bottom: 15px;
    line-height: 1.4;
}

.price {
    color: #ffd700;
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 0 0 40px rgba(255, 215, 0, 0.4);
}

/* Feature Options */
.feature-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.feature-option {
    position: relative;
}

.feature-option input[type="checkbox"] {
    display: none;
}

.feature-option label {
    display: flex;
    align-items: center;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border: 2px solid transparent;
    border-radius: 15px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.feature-option input[type="checkbox"]:checked + label {
    border-color: #ffd700;
    background: linear-gradient(145deg, #2a2a1a, #3a3a2a);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5), 0 0 60px rgba(255, 215, 0, 0.2);
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #ffd700;
    border-radius: 4px;
    margin-right: 15px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.feature-option input[type="checkbox"]:checked + label .checkmark {
    background: linear-gradient(45deg, #ffd700, #ffff00, #ffd700);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 0 0 40px rgba(255, 215, 0, 0.4);
}

.feature-option input[type="checkbox"]:checked + label .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000;
    font-weight: bold;
}

.feature-content h4 {
    color: #fff;
    margin-bottom: 5px;
}

.feature-content p {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.feature-content .price {
    color: #ffd700;
    font-weight: 600;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 0 0 40px rgba(255, 215, 0, 0.4);
}

/* Price Calculator */
.price-calculator {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border: 2px solid #ffd700;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
}

.price-calculator::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    animation: shimmer 2s ease-in-out infinite;
}

.price-calculator h3 {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.8), 0 0 60px rgba(255, 215, 0, 0.4);
}

.quote-display {
    background: #0a0a0a;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
}

.quote-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: #ccc;
}

.quote-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffd700;
    border-top: 2px solid #333;
    padding-top: 15px;
    margin-top: 15px;
    text-shadow: 0 0 25px rgba(255, 215, 0, 0.8), 0 0 50px rgba(255, 215, 0, 0.4);
}

.warranty-info {
    margin-top: 20px;
    padding: 15px;
    margin-bottom: 20px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    text-align: center;
}

.warranty-info p {
    color: #ffd700;
    margin: 5px 0;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.warranty-info strong {
    font-size: 1.1rem;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: #0a0a0a;
}

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

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-image {
    height: 250px;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #333;
    border-radius: 15px;
}

.placeholder-image {
    text-align: center;
    color: #ffd700;
}

.placeholder-image i {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.placeholder-image p {
    font-size: 1.1rem;
    color: #fff;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #111;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 1.5rem;
    color: #ffd700;
    margin-right: 20px;
    width: 30px;
    text-shadow: 0 0 25px rgba(255, 215, 0, 0.8), 0 0 50px rgba(255, 215, 0, 0.4);
}

.contact-item h4 {
    color: #fff;
    margin-bottom: 5px;
}

.contact-item p {
    color: #ccc;
}

.contact-form {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid #333;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: #0a0a0a;
    border: 2px solid #333;
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.6), 0 0 50px rgba(255, 215, 0, 0.3);
}

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

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 60px 0 20px;
    border-top: 2px solid #333;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    display: none;
}
.footer-logo img {
    height: 27px;
    width: auto;
    display: block;
    margin-bottom: 16px;
}

.footer-section h4 {
    color: #fff;
    margin-bottom: 15px;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 0 0 40px rgba(255, 215, 0, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #ccc;
}

/* Embedded Instagram Frame */
.embed-frame {
    width: 100%;
    height: 90vh;
    border: 0;
    background: #0a0a0a;
}

@media (max-width: 768px) {
    .embed-frame {
        height: 80vh;
    }
}

/* FAQ Page Styles */
.faq-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 25%, #111111 50%, #0a0a0a 75%, #000000 100%);
    text-align: center;
    position: relative;
}

.faq-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

.faq-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.8), 0 0 60px rgba(255, 215, 0, 0.4);
}

.faq-hero-content p {
    font-size: 1.2rem;
    color: #ccc;
    font-weight: 300;
}

.breadcrumb {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #999;
}

.breadcrumb a {
    color: #ffd700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #ffff00;
}

.faq-content {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 25%, #2a2a2a 50%, #1a1a1a 75%, #0a0a0a 100%);
}

.faq-grid {
    display: grid;
    gap: 40px;
}

.faq-category {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid rgba(255, 215, 0, 0.1);
}

.faq-category h2 {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-category h2 i {
    font-size: 1.5rem;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(145deg, #0a0a0a, #1a1a1a);
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 215, 0, 0.05);
}

.faq-question h3 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.faq-question i {
    color: #ffd700;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 20px 20px;
    color: #ccc;
    line-height: 1.6;
    margin: 0;
}

.faq-item.active .faq-question {
    background: rgba(255, 215, 0, 0.1);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.faq-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 25%, #111111 50%, #0a0a0a 75%, #000000 100%);
    text-align: center;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.8), 0 0 60px rgba(255, 215, 0, 0.4);
}

.cta-content p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-logo a {
    text-decoration: none;
    color: inherit;
}

.nav-menu .active {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .faq-category {
        padding: 20px;
    }
    
    .faq-category h2 {
        font-size: 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* SEO Content Styles */
.seo-content {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 25%, #3a3a3a 50%, #2a2a2a 75%, #1a1a1a 100%);
}

.seo-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.seo-text h2 {
    color: #ffd700;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.seo-text h3 {
    color: #ffd700;
    font-size: 1.5rem;
    margin: 2rem 0 1rem 0;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.seo-text p {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.seo-text ul {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.seo-text li {
    margin-bottom: 0.5rem;
}

.seo-text strong {
    color: #ffd700;
    font-weight: 600;
}

@media (max-width: 768px) {
    .seo-text h2 {
        font-size: 1.5rem;
    }
    
    .seo-text h3 {
        font-size: 1.3rem;
    }
    
    .seo-text p,
    .seo-text ul {
        font-size: 1rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
        transform: none;
    }

    .nav-menu.active {
        left: 0;
    }
    
    .lang-switch {
        margin-left: 10px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .car-size-options, .light-options {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .car-option, .light-option {
        padding: 20px 15px;
    }

    .contact-form {
        padding: 20px;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: calc(20px + env(safe-area-inset-bottom, 0px));
    width: 65px;
    height: 65px;
    z-index: 1000;
}
.whatsapp-float img {
    width: 100%;
    height: 100%;
    display: block;
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        right: 16px;
        bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    }
}
