/* CSS Variables */ :root {
    --primary-blue: #0075ae;
    --black: #000000;
    --gray: #8e8f91;
    --gold-accent: #D4AF37;
    --light-bg: #f8f9fa;
    --white: #ffffff;
}
/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', sans-serif;
    color: var(--black);
    overflow-x: hidden;
    line-height: 1.6;
}
html {
    scroll-behavior: smooth;
}
/* Navbar Styles */
.navbar {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.navbar.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.navbar-brand img {
    height: 50px;
    transition: transform 0.3s ease;
}
.navbar-brand:hover img {
    transform: scale(1.05);
}
.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    padding: 0.5rem 1.2rem !important;
    transition: all 0.3s ease;
    position: relative;
}
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}
.navbar-nav .nav-link:hover::after, .navbar-nav .nav-link.active::after {
    width: 70%;
}
/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.hero-image {
    width: 100%;
    height: auto;
    display: block;
}
/* Ramadan Decorative Elements */
.ramadan-pattern {
    position: absolute;
    opacity: 0.04;
    font-size: 12rem;
    color: var(--gold-accent);
    z-index: 0;
    pointer-events: none;
}
/* Section Styles */
section {
    padding: 5rem 0;
    position: relative;
}
.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--primary-blue);
}
.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 3rem;
}
/* Offer Section */
.offer-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #005a8a 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.offer-section::before {
    content: '☪';
    position: absolute;
    top: -50px;
    right: -50px;
    font-size: 15rem;
    opacity: 0.08;
    color: var(--gold-accent);
}
.offer-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}
.offer-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}
.offer-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--gold-accent);
}
.offer-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.offer-text {
    font-size: 1.1rem;
    line-height: 1.8;
}
/* Button Styles */
.btn-primary-custom {
    background: var(--gold-accent);
    border: none;
    color: var(--black);
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}
.btn-primary-custom:hover {
    background: #c19b2a;
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}
.btn-outline-custom {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    background: transparent;
}
.btn-outline-custom:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}
/* Models Section */
.models-section {
    background: var(--light-bg);
}
.model-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.model-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.model-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.model-card:hover .model-image {
    transform: scale(1.1);
}
.model-image-wrapper {
    overflow: hidden;
    background: #f0f0f0;
}
.model-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.model-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--black);
}
.model-description {
    color: var(--gray);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}
/* Contact Form Section */
.contact-section {
    background: var(--white);
}
.form-container {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 117, 174, 0.1);
}
.form-control, .form-select {
    padding: 0.9rem 1.2rem;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    font-size: 1rem;
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(0, 117, 174, 0.15);
}
.form-label {
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.5rem;
}
.privacy-text {
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 1rem;
}
/* Terms Section */
.terms-section {
    background: var(--light-bg);
}
.terms-container {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.terms-list {
    list-style: none;
    padding: 0;
    counter-reset: terms-counter;
}
.terms-list li {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    counter-increment: terms-counter;
}
.terms-list li::before {
    content: counter(terms-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: var(--primary-blue);
    color: var(--white);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}
.terms-list ul {
    margin-top: 0.5rem;
    padding-left: 1.5rem;
}
.terms-list ul li::before {
    content: '•';
    background: none;
    color: var(--primary-blue);
    width: auto;
    height: auto;
    border-radius: 0;
    font-size: 1.5rem;
    left: -1.5rem;
}
.terms-list li ul li {
    margin-bottom: 0.5rem;
}
/* Contact Details & Map Section */
.contact-details-section {
    background: var(--white);
}
.contact-info-card {
    background: var(--light-bg);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}
.contact-info-card:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-5px);
}
.contact-info-card:hover .contact-icon {
    color: var(--gold-accent);
}
.contact-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}
.contact-info-title {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 450px;
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}
/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}
.social-links a {
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}
.social-links a:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
    color: var(--white);
}
/* Responsive Adjustments */
@media (max-width: 991px) {
    .section-title {
        font-size: 2.2rem;
    }
    section {
        padding: 3rem 0;
    }
    .navbar-nav {
        background: rgba(0, 0, 0, 0.95);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
    }
}
@media (max-width: 767px) {
    .section-title {
        font-size: 1.8rem;
    }
    .offer-card {
        margin-bottom: 1.5rem;
    }
    .form-container, .terms-container {
        padding: 2rem 1.5rem;
    }
    .model-content {
        padding: 1.5rem;
    }
}
/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.animate-fade-in {
    animation: fadeInUp 0.8s ease-out;
}
/* Language Switcher */
.language-switcher-nav {
    margin-left: 1rem;
}

.lang-link {
    display: inline-block;
    color: var(--white);
    text-decoration: none;
    padding: 0.5rem 1.2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.lang-link:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.lang-link i {
    margin-right: 0.3rem;
    color: var(--gold-accent);
}

/* Mobile language switcher */
@media (max-width: 991px) {
    .language-switcher-nav {
        margin-left: 0;
        margin-top: 0.5rem;
        text-align: center;
    }
    
    .lang-link {
        display: block;
        width: 100%;
    }
}