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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

.btn-primary:hover {
    background-color: #FFD700;
    border-color: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
}
.btn-secondary:hover {
    background-color: #ffffff;
    color: #000000;
    transform: translateY(-2px);
}    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Navigation */
/* ===== MODERN CREATIVE NAVIGATION STYLES ===== */
/* Navigation Container */
.navbar {
    position: fixed;
    top: 30px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(15, 15, 15, 0.97) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.98) 0%, rgba(15, 15, 15, 0.99) 100%);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}
.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
}

.nav-item {
    position: relative;
}

/* Logo Section */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-right: 2rem;
    margin-top: 25px;
    z-index: 10;
}

.logo-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #FFD700;
    object-fit: cover;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.1);
    border-color: #FFA500;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav-link::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;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    color: #FFD700;
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.nav-icon {
    font-size: 1rem;
    transition: all 0.3s ease;
}

.nav-link:hover .nav-icon {
    transform: scale(1.1);
    color: #FFD700;
}

.nav-text {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.3px;
}

.nav-underline {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FFD700, #FFF);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover .nav-underline {
    width: 80%;
}

/* Right Side Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Language Selector */
.language-selector {
    position: relative;
}

.language-wrapper {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 0.25rem 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.language-wrapper:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.5);
    transform: translateY(-1px);
}

.language-icon {
    color: #FFD700;
    font-size: 0.6rem;
}

.language-dropdown {
    background: transparent;
    border: none;
    color: #FFD700;
    font-weight: 500;
    font-size: 0.7rem;
    cursor: pointer;
    outline: none;
    appearance: none;
    padding-right: 0.5rem;
}

.dropdown-arrow {
    color: #FFD700;
    font-size: 0.5rem;
    transition: transform 0.3s ease;
}

.language-wrapper:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* CTA Button */
.nav-cta {
    position: relative;
}

.cta-button {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

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

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #FFF 0%, #FFD700 100%);
}

.button-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-button:hover .button-glow {
    opacity: 1;
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-toggle:hover {
    background: rgba(255, 215, 0, 0.1);
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #FFD700;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.98) 0%, rgba(20, 20, 20, 0.99) 100%);
    backdrop-filter: blur(20px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mobile-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #FFD700;
}

.mobile-logo span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #FFD700;
    font-size: 1.2rem;
}

.mobile-close {
    background: none;
    border: none;
    color: #FFD700;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-close:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: rotate(90deg);
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.mobile-nav-link:hover {
    color: #FFD700;
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateX(10px);
}

.mobile-nav-link i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.mobile-cta {
    margin-top: auto;
}

.mobile-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.mobile-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .nav-menu {
        gap: 0.25rem;
    }
    
    .nav-link {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .company-name {
        font-size: 1.6rem;
        letter-spacing: 1.5px;
    }
    
    .company-tagline {
        font-size: 0.85rem;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-actions {
        gap: 0.75rem;
    }
    
    .language-wrapper {
        padding: 0.4rem 0.8rem;
    }
    
    .cta-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
        min-height: 70px;
    }
    
    .logo-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .logo-img {
        width: 40px;
        height: 40px;
    }
    
    .company-name {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }
    
    .company-tagline {
        font-size: 0.75rem;
    }
    
    .location-badge {
        display: none;
    }
    
    .nav-actions {
        gap: 0.5rem;
    }
    
    .language-wrapper {
        padding: 0.3rem 0.6rem;
    }
    
    .language-dropdown {
        font-size: 0.8rem;
    }
    
    .cta-button {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .cta-button span {
        display: none;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 0.75rem;
    }
    
    .company-info {
        display: none;
    }
    
    .language-wrapper {
        padding: 0.25rem 0.5rem;
    }
    
    .cta-button {
        padding: 0.4rem 0.8rem;
    }
}

/* Company Branding Section */
.company-branding {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 2rem 0;
    text-align: center;
    border-bottom: 3px solid #FFD700;
    position: relative;
    overflow: hidden;
}

.company-branding::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.company-branding-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.company-main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: #B8860B;
    margin: 0 0 1rem 0;
    letter-spacing: 4px;
    position: relative;
    display: inline-block;
}

.company-main-tagline {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0 0 1.5rem 0;
    text-transform: capitalize;
    font-family: 'Open Sans', sans-serif;
}

.company-location {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 215, 0, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    color: #FFD700;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.company-location:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.company-location i {
    font-size: 1.1rem;
    color: #FFD700;
}

/* Responsive Design for Company Branding */
@media (max-width: 1200px) {
    .company-main-title {
        font-size: 3rem;
        letter-spacing: 3px;
    }
    
    .company-main-tagline {
        font-size: 1.2rem;
        letter-spacing: 1.5px;
    }
}

@media (max-width: 768px) {
    .company-branding {
        padding: 1.5rem 0;
    }
    
    .company-branding-container {
        padding: 0 1rem;
    }
    
    .company-main-title {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }
    
    .company-main-tagline {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .company-location {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .company-main-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .company-main-tagline {
        font-size: 0.9rem;
    }
    
    .company-location {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    padding-top: 100px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text h1 {
    color: #FFD700;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 2rem;
}

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

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Section Titles */
.section-title {
    text-align: center;
    color: #ffffff;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: ";
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
    background-color: #1a1a1a;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #1a1a1a;
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #000000, #FFD700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.service-card p {
    color: #36454F;
    margin-bottom: 1.5rem;
}

.service-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #ffffff;
}

/* Service Sections */
.service-section {
    padding: 80px 0;
}

.service-section.alt {
    background-color: #1a1a1a;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

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

.service-text h2 {
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.service-text h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.service-text h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.service-text p {
    color: #36454F;
    margin-bottom: 2rem;
}

.service-features {
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.feature i {
    color: #FFD700;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: #ffffff;
    color: #000000;
}

.testimonials .section-title {
    color: #000000;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.testimonial-author h4 {
    color: #FFD700;
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: #ffffff;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #1a1a1a;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-item i {
    color: #FFD700;
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.5rem;
}

.contact-item h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #36454F;
    margin-bottom: 0;
}

/* Contact Form */
.contact-form {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 5px;
    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: #ffffff;
}

/* Footer */
.footer {
    background-color: #000000;
    color: #ffffff;
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    color: #FFD700;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #ffffff;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

.footer-section ul li a:hover {
    color: #FFD700;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #FFD700;
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #ffffff;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: black;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .service-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-content.reverse {
        direction: ltr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 2rem;
    }

    .hero {
        padding-top: 80px;
    }

    .service-card {
        padding: 2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling for all browsers */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Focus styles for accessibility */
.btn:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #FFD700;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        border: 2px solid;
    }
    
    .service-card {
        border: 1px solid #36454F;
    }
}

.logo-img {
    height: 100px; /* Increased from 70px for better visibility */
    width: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}




/* Mission Statement Section */
.mission-statement {
    padding: 80px 0;
    background-color: #f0f2f5;
    text-align: center;
}

.mission-statement .section-title {
    margin-bottom: 2rem;
}

.mission-text {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 1.5rem auto;
    line-height: 1.8;
    color: #36454F;
}




/* Service Packages Table */
.service-packages {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-packages th,
.service-packages td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.service-packages th {
    background-color: #ffffff;
    color: #000000;
    font-weight: 600;
}

.service-packages tr:hover {
    background-color: #1a1a1a;
}

.service-packages td:first-child {
    font-weight: 600;
    color: #ffffff;
}

/* Ordered List Styling */
.service-text ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.service-text ol li {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-text ol li strong {
    color: #ffffff;
}







/* Image Gallery for Detailing Section */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    padding: 20px;
    background-color: #f0f0f0;
    border-radius: 8px;
}

.image-gallery .gallery-img {
    width: 100%;
    height: 150px; /* Fixed height for consistency */
    object-fit: cover; /* Cover the area, cropping if necessary */
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .image-gallery {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    .image-gallery .gallery-img {
        height: 120px;
    }
}

@media (max-width: 480px) {
    .image-gallery {
        grid-template-columns: 1fr;
    }
    .image-gallery .gallery-img {
        height: 180px;
    }
}


/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #ffffff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-info h3,
.contact-form-container h3 {
    color: #FFD700;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-item i {
    color: #FFD700;
    font-size: 1.5rem;
    margin-top: 5px;
    min-width: 30px;
}

.contact-item h4 {
    color: #FFD700;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.contact-item p {
    margin: 0;
    line-height: 1.6;
    color: #ffffff;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #FFD700;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
}

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

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

.map-container {
    margin-top: 40px;
}

.map-container h3 {
    color: #FFD700;
    margin-bottom: 20px;
    font-size: 1.8rem;
    text-align: center;
}

.map-container iframe {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background: #000000;
    color: #ffffff;
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    color: #FFD700;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

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

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

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

.footer-section ul li a:hover {
    color: #FFD700;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    padding-top: 20px;
    text-align: center;
    color: #cccccc;
}

/* Responsive Design for Contact Section */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .contact-item i {
        align-self: center;
    }
}



.hero-image {
    display: flex;
    gap: 10px; /* Adjust gap as needed */
    flex-wrap: wrap; /* Allow images to wrap on smaller screens */
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: calc(25% - 7.5px); /* Four images side-by-side with a gap */
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .hero-image img {
        width: 100%; /* Stack images vertically on smaller screens */
    }
}


/* Slideshow Styles */
.slideshow-container {
    position: relative;
    max-width: 100%;
    margin: auto;
}

.mySlides {
    display: none;
    animation: fade 0.5s ease-in-out;
}

.mySlides.active {
    display: block;
}

.slide-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 20px;
}

.slide-images img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.slide-images img:hover {
    transform: scale(1.05);
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: #FFD700;
    font-weight: bold;
    font-size: 18px;
    transition: 0.3s ease;
    border-radius: 0 3px 3px 0;
    background-color: rgba(0, 0, 0, 0.5);
    user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
}

.slideshow-dots {
    text-align: center;
    margin-top: 20px;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.dot.active, .dot:hover {
    background-color: #FFD700;
}

@keyframes fade {
    from {opacity: 0.4}
    to {opacity: 1}
}

/* Mobile responsive for slideshow */
@media (max-width: 768px) {
    .slide-images {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .slide-images img {
        height: 200px;
    }
    
    .prev, .next {
        padding: 12px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .slide-images img {
        height: 180px;
    }
}


/* Car Wash Gallery Styles */
.carwash-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.carwash-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #FFD700;
}

.carwash-img:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: #ffffff;
}

/* Mobile responsive for car wash gallery */
@media (max-width: 768px) {
    .carwash-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 400px;
    }
    
    .carwash-img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .carwash-gallery {
        gap: 12px;
    }
    
    .carwash-img {
        height: 180px;
    }
}


/* Workshop Gallery Styles */
.workshop-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.workshop-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.workshop-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

/* Mobile responsive for workshop gallery */
@media (max-width: 768px) {
    .workshop-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .workshop-img {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .workshop-gallery {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .workshop-img {
        height: 160px;
    }
}


/* Detailing Main Gallery Styles */
.detailing-main-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.detailing-main-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #FFD700;
}

.detailing-main-img:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: #ffffff;
}

/* Exterior Detailing Gallery Styles */
.exterior-detailing-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 25px 0;
}

.exterior-detailing-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #FFD700;
}

.exterior-detailing-img:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: #ffffff;
}

/* Interior Detailing Gallery Styles */
.interior-detailing-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 25px 0;
}

.interior-detailing-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #FFD700;
}

.interior-detailing-img:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: #ffffff;
}

/* Premium Interior Gallery Styles */
.premium-interior-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 25px 0;
}

.premium-interior-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #FFD700;
}

.premium-interior-img:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: #ffffff;
}

/* Mobile responsive for all detailing galleries */
@media (max-width: 768px) {
    .detailing-main-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 400px;
    }
    
    .exterior-detailing-gallery,
    .interior-detailing-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .premium-interior-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .detailing-main-img,
    .exterior-detailing-img,
    .interior-detailing-img,
    .premium-interior-img {
        height: 160px;
    }
}

@media (max-width: 480px) {
    .detailing-main-gallery,
    .exterior-detailing-gallery,
    .interior-detailing-gallery,
    .premium-interior-gallery {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .detailing-main-img,
    .exterior-detailing-img,
    .interior-detailing-img,
    .premium-interior-img {
        height: 150px;
    }
}


/* Detailing Side Galleries Container */
.detailing-side-galleries {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid #FFD700;
}

.gallery-section {
    margin-bottom: 15px;
}

.gallery-section h4 {
    color: #FFD700;
    font-size: 0.9rem;
    margin-bottom: 10px;
    text-align: center;
    padding: 6px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 6px;
    border: 1px solid #FFD700;
}

/* Adjust existing gallery styles for side layout */
.detailing-side-galleries .detailing-main-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin: 0;
    max-width: none;
}

.detailing-side-galleries .exterior-detailing-gallery,
.detailing-side-galleries .interior-detailing-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin: 0;
}

.detailing-side-galleries .premium-interior-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin: 0;
}

.detailing-side-galleries .detailing-main-img {
    height: 100px;
    border-width: 1px;
}

.detailing-side-galleries .exterior-detailing-img,
.detailing-side-galleries .interior-detailing-img,
.detailing-side-galleries .premium-interior-img {
    height: 80px;
    border-width: 1px;
}

/* Mobile responsive for side galleries */
@media (max-width: 768px) {
    .detailing-side-galleries {
        padding: 12px;
        gap: 15px;
    }
    
    .detailing-side-galleries .detailing-main-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
    
    .detailing-side-galleries .exterior-detailing-gallery,
    .detailing-side-galleries .interior-detailing-gallery,
    .detailing-side-galleries .premium-interior-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }
    
    .detailing-side-galleries .detailing-main-img {
        height: 90px;
    }
    
    .detailing-side-galleries .exterior-detailing-img,
    .detailing-side-galleries .interior-detailing-img,
    .detailing-side-galleries .premium-interior-img {
        height: 70px;
    }
    
    .gallery-section h4 {
        font-size: 0.8rem;
        padding: 4px;
    }
}

@media (max-width: 480px) {
    .detailing-side-galleries .detailing-main-gallery,
    .detailing-side-galleries .exterior-detailing-gallery,
    .detailing-side-galleries .interior-detailing-gallery,
    .detailing-side-galleries .premium-interior-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 4px;
    }
    
    .detailing-side-galleries .detailing-main-img,
    .detailing-side-galleries .exterior-detailing-img,
    .detailing-side-galleries .interior-detailing-img,
    .detailing-side-galleries .premium-interior-img {
        height: 60px;
    }
}


/* Car Sales Gallery Styles */
.sales-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.sales-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #FFD700;
}

.sales-img:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: #ffffff;
}

/* Mobile responsive for car sales gallery */
@media (max-width: 768px) {
    .sales-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 400px;
    }
    
    .sales-img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .sales-gallery {
        gap: 12px;
    }
    
    .sales-img {
        height: 180px;
    }
}


/* Our Mission specific styling */
#mission .section-title {
    color: #000000 !important;
    font-weight: bold !important;
}


/* Enhanced Navigation Layout */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.company-name h2 {
    color: #FFD700;
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.company-name span {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 400;
    display: block;
    margin-top: -5px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Language Selector Styling */
.language-selector {
    position: relative;
    margin-top: 10px; /* Move language selector down */
}

.language-dropdown {
    background-color: rgba(255, 215, 0, 0.1);
    border: 2px solid #FFD700;
    border-radius: 8px;
    color: #ffffff;
    padding: 8px 12px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.language-dropdown:hover {
    background-color: rgba(255, 215, 0, 0.2);
    border-color: #ffffff;
}

.language-dropdown:focus {
    background-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.language-dropdown option {
    background-color: #000000;
    color: #ffffff;
    padding: 8px;
}

/* Mobile Navigation Adjustments */
@media (max-width: 768px) {
    .nav-logo {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .company-name h2 {
        font-size: 1.4rem;
    }
    
    .company-name span {
        font-size: 0.8rem;
    }
    
    .logo-img {
        height: 80px;
    }
    
    .nav-right {
        flex-direction: column;
        gap: 10px;
    }
    
    .language-dropdown {
        font-size: 0.8rem;
        padding: 6px 10px;
    }
}

@media (max-width: 480px) {
    .nav-logo {
        gap: 3px;
    }
    
    .company-name h2 {
        font-size: 1.2rem;
    }
    
    .company-name span {
        font-size: 0.7rem;
    }
    
    .logo-img {
        height: 70px;
    }
}


/* Fix for Service of Interest dropdown options visibility */
.form-group select option {
    background-color: #ffffff !important;
    color: #000000 !important;
    padding: 10px;
    font-size: 1rem;
}

.form-group select option:hover {
    background-color: #FFD700 !important;
    color: #000000 !important;
}

.form-group select option:checked {
    background-color: #ffffff !important;
    color: #ffffff !important;
}


/* GmbH text styling */
.gmbh-text {
    font-size: 0.7em;
    font-weight: normal;
    opacity: 0.8;
}


/* Enhanced flag emoji support */
.language-dropdown {
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", "Android Emoji", "EmojiSymbols", sans-serif !important;
    font-size: 1.2rem !important;
}

.language-dropdown option {
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", "Android Emoji", "EmojiSymbols", sans-serif !important;
    font-size: 1.1rem !important;
    padding: 8px !important;
}


/* WhatsApp QR Code Styling */
.whatsapp-qr {
    margin-top: 20px;
    text-align: center;
    padding: 10px;
}

.qr-code {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    background: white;
    padding: 5px;
}

.qr-text {
    color: #ffffff;
    font-size: 0.8rem;
    margin-top: 8px;
    margin-bottom: 0;
    font-weight: 500;
}

/* Mobile responsive for QR code */
@media (max-width: 768px) {
    .whatsapp-qr {
        margin-top: 15px;
        padding: 8px;
    }
    
    .qr-code {
        width: 100px;
        height: 100px;
    }
    
    .qr-text {
        font-size: 0.75rem;
    }
}


/* Detailing Section Layout */
.detailing-layout {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.detailing-content {
    flex: 2;
    padding-right: 20px;
}

.detailing-gallery-panel {
    flex: 1;
    background-color: #1a1a1a;
    border-radius: 10px;
    padding: 20px;
}

.gallery-section {
    margin-bottom: 20px;
}

.gallery-section:last-child {
    margin-bottom: 0;
}

.gallery-header {
    color: #FFD700;
    font-size: 1.1rem;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 2px solid #FFD700;
    text-align: center;
}

/* Gallery Grid Layouts */
.detailing-main-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 15px;
}

.exterior-detailing-gallery,
.interior-detailing-gallery,
.premium-interior-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-bottom: 15px;
}

/* Image Styling */
.detailing-main-img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    border: 2px solid #FFD700;
    transition: all 0.3s ease;
}

.exterior-detailing-img,
.interior-detailing-img,
.premium-interior-img {
    width: 100%;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
    border: 2px solid #FFD700;
    transition: all 0.3s ease;
}

.detailing-main-img:hover,
.exterior-detailing-img:hover,
.interior-detailing-img:hover,
.premium-interior-img:hover {
    transform: scale(1.05);
    border-color: #ffffff;
    box-shadow: 0 4px 8px rgba(255, 215, 0, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .detailing-layout {
        flex-direction: column;
        gap: 20px;
    }
    
    .detailing-content {
        padding-right: 0;
    }
    
    .exterior-detailing-gallery,
    .interior-detailing-gallery,
    .premium-interior-gallery {
        grid-template-columns: 1fr 1fr;
    }
    
    .detailing-main-img,
    .exterior-detailing-img,
    .interior-detailing-img,
    .premium-interior-img {
        height: 100px;
    }
}


/* Featured Detailing Image */
.featured-detailing-image {
    text-align: center;
    margin: 20px 0;
}

.featured-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    border: 3px solid #FFD700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
}

.featured-img:hover {
    transform: scale(1.02);
    border-color: #ffffff;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Mobile responsive for featured image */
@media (max-width: 768px) {
    .featured-img {
        height: 150px;
    }
}


/* Featured Section - Standalone in Gallery Panel */
.featured-section {
    margin: 40px 0;
    padding: 20px 0;
    border-top: 2px solid #333;
    border-bottom: 2px solid #333;
}

.featured-detailing-standalone {
    text-align: center;
}

.featured-standalone-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    border: 3px solid #FFD700;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

.featured-standalone-img:hover {
    transform: scale(1.02);
    border-color: #ffffff;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

/* Mobile responsive for standalone featured image */
@media (max-width: 768px) {
    .featured-section {
        margin: 30px 0;
        padding: 15px 0;
    }
    
    .featured-standalone-img {
        height: 180px;
    }
}


/* Samples of Results Gallery */
.results-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 15px;
}

.results-img {
    width: 100%;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
    border: 2px solid #FFD700;
    transition: all 0.3s ease;
    cursor: pointer;
}

.results-img:hover {
    transform: scale(1.05);
    border-color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

/* Mobile responsive for results gallery */
@media (max-width: 768px) {
    .results-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .results-img {
        height: 50px;
    }
}


/* Car Care Products Gallery */
.carcare-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.carcare-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #FFD700;
    transition: all 0.3s ease;
    cursor: pointer;
}

.carcare-img:hover {
    transform: scale(1.05);
    border-color: #ffffff;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Mobile responsive for car care gallery */
@media (max-width: 768px) {
    .carcare-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .carcare-img {
        height: 100px;
    }
}



/* PCS Priority Service Section */
.pcs-priority-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.pcs-priority-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23FFD700" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    animation: sparkle 20s linear infinite;
}

@keyframes sparkle {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-20px) translateY(-20px); }
}

.pcs-banner {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 20px;
    padding: 35px;
    border: 3px solid #FFD700;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
}

.pcs-content {
    flex: 1;
}

.pcs-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    animation: pulse-glow 2s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
    0% { 
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
        transform: scale(1);
    }
    100% { 
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
        transform: scale(1.05);
    }
}

.pcs-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.pcs-highlight {
    color: #FFD700;
    font-size: 3.2rem;
    font-weight: 900;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    animation: glow-text 3s ease-in-out infinite alternate;
}

@keyframes glow-text {
    0% { text-shadow: 0 0 20px rgba(255, 215, 0, 0.6); }
    100% { text-shadow: 0 0 30px rgba(255, 215, 0, 1), 0 0 40px rgba(255, 215, 0, 0.8); }
}

.pcs-description {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 25px;
    line-height: 1.6;
}

.pcs-features {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.pcs-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 215, 0, 0.1);
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.pcs-feature:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: #FFD700;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
}

.pcs-feature i {
    color: #FFD700;
    font-size: 1.2rem;
}

.pcs-feature span {
    font-weight: 600;
    color: #fff;
}

.pcs-cta {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-pcs {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    border: none;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
    animation: btn-float 3s ease-in-out infinite;
}

@keyframes btn-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.btn-pcs:hover {
    background: linear-gradient(45deg, #FFA500, #FFD700);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.5);
}

.pcs-visual {
    flex: 0 0 220px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pcs-icon-large {
    position: relative;
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: rotate-glow 10s linear infinite;
}

@keyframes rotate-glow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.pcs-icon-large .fa-car {
    font-size: 3.2rem;
    color: #FFD700;
    position: relative;
    z-index: 2;
}

.pcs-icon-large .fa-star {
    position: absolute;
    font-size: 1.5rem;
    color: #FFD700;
    animation: twinkle 2s ease-in-out infinite alternate;
}

.pcs-icon-large .fa-star:nth-child(2) {
    top: 20px;
    right: 30px;
    animation-delay: 0.5s;
}

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

/* Mobile Responsiveness for PCS Section */
@media (max-width: 768px) {
    .pcs-banner {
        flex-direction: column;
        gap: 40px;
        padding: 30px 20px;
    }
    
    .pcs-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .pcs-highlight {
        font-size: 3rem;
    }
    
    .pcs-features {
        justify-content: center;
        gap: 15px;
    }
    
    .pcs-feature {
        flex: 1;
        min-width: 140px;
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 5px;
    }
    
    .pcs-cta {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .pcs-visual {
        flex: none;
    }
    
    .pcs-icon-large {
        width: 150px;
        height: 150px;
    }
    
    .pcs-icon-large .fa-car {
        font-size: 3rem;
    }
}


/* Main Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0 0 0 1rem;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 0.8rem;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}



/* Email Contact Styling */
.email-contact {
    text-align: center;
    padding: 2rem;
}

.email-contact p {
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.email-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.email-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.email-btn i {
    font-size: 1.2rem;
}

.email-note {
    color: #cccccc !important;
    font-size: 0.9rem !important;
    font-style: italic;
    margin-top: 1rem !important;
}

/* Mobile responsive for email contact */
@media (max-width: 768px) {
    .email-contact {
        padding: 1.5rem;
    }
    
    .email-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .email-contact p {
        font-size: 1rem;
    }
}


/* Contact Methods Styling */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.contact-method-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

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

.contact-method-item i {
    font-size: 24px;
    color: #FFD700;
    min-width: 30px;
}

.contact-method-item h4 {
    color: #FFD700;
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 600;
}

.contact-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #FFD700;
    text-decoration: underline;
}

.form-divider {
    text-align: center;
    margin: 30px 0;
    position: relative;
}

.form-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 215, 0, 0.3), transparent);
}

.form-divider span {
    background: rgba(0, 0, 0, 0.8);
    padding: 0 20px;
    color: #FFD700;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* Mobile responsiveness for contact methods */
@media (max-width: 768px) {
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 15px;
    }
    
    .contact-method-item {
        padding: 12px;
    }
    
    .contact-method-item i {
        font-size: 20px;
    }
    
    .contact-method-item h4 {
        font-size: 14px;
    }
    
    .contact-link {
        font-size: 13px;
    }
}

