:root {
    --dark-bg: #1c1b1a;
    --gold: #D4AF37;
    --light-gold: #F5E7A1;
    --light-gray: #e9e9e9;
    --medium-gray: #8a8a8a;
    --card-bg: #252422;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-gray);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: #edd4a2;
}

.section-title {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 40px;
    text-align: center !important;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 3px;
    background: #d97928;
    left: 45%;}

/* Navigation */
.navbar {
    background-color: rgba(28, 27, 26, 0.95);
    padding: 15px 0;
    transition: all 0.4s ease;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--gold) !important;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.navbar-logo {
    height: 90px;
    margin-right: 15px;
}

.nav-link {
    color: var(--light-gray) !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover:after {
    width: 100%;
}

.navbar-toggler {
    border-color: var(--gold);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(212, 175, 55, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
#hero {
    height: 100vh;
background: linear-gradient(rgb(28 27 26 / 96%), rgb(28 27 26 / 96%)), url(https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80) no-repeat center center / cover;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    max-width: 100%;
    text-align: center;}


.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
max-width: 100%;
    text-align: center;}

.btn-gold {
    background-color: #b78548;
    color: var(--dark-bg);
    padding: 12px 30px;
    border-radius: 0;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.btn-gold:hover {
    background-color: #dfae73;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* About Section */
#about {
    padding: 100px 0;
}

.about-content {
    padding-right: 50px;
}

.license-badge {
    background: #272522;
    color: #d1c5b0;
    padding: 8px 15px;
    display: inline-block;
    font-weight: 600;
    margin-top: 20px;
}

/* Services */
#services {
    padding: 100px 0;
    background-color: #222;
}

.service-card {
    background-color: #212020;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.4s ease;
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom: 3px solid #c9a86b;
}

.service-icon {
    font-size: 2.5rem;
    color: #b78548;
    margin-bottom: 20px;
}

/* Customers */
#customers {
    padding: 100px 0;
}

.customer-logo {
    height: 50px;
    filter: grayscale(100%) brightness(200%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.customer-logo:hover {
    filter: grayscale(0) brightness(100%);
    opacity: 1;
}

/* Contact */
#contact {
    padding: 40px 0;
    background-color: #222;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--gold);
    margin-right: 15px;
    width: 30px;
}

.contact-link {
    color: var(--light-gray);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--gold);
}

/* WhatsApp specific styling */
.whatsapp-link:hover {
    color: #25D366 !important;
}

.contact-icon .fa-whatsapp {
    color: #25D366;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3), 0 0 0 10px rgba(37, 211, 102, 0.2);
    }
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    }
}

/* Footer */
footer {
    background-color: #171615;
    padding: 40px 0 20px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #333;
    color: var(--gold);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--gold);
    color: var(--dark-bg);
    transform: translateY(-5px);
}

/* Language Dropdown */
.dropdown-menu {
    background-color: var(--card-bg);
    border: 1px solid #444;
    border-radius: 0;
}

.dropdown-item {
    color: var(--light-gray);
    padding: 8px 16px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: var(--gold);
    color: var(--dark-bg);
}

/* RTL Support */
[dir="rtl"] .navbar-brand {
    flex-direction: row-reverse;
}

[dir="rtl"] .navbar-logo {
    margin-right: 0;
    margin-left: 15px;
}

[dir="rtl"] .section-title:after {
    left: auto;
    right: 0;
}

[dir="rtl"] .contact-icon {
    margin-right: 0;
    margin-left: 15px;
}

[dir="rtl"] .about-content {
    padding-right: 0;
    padding-left: 50px;
}

[dir="rtl"] .social-icon {
    margin-right: 0;
    margin-left: 10px;
}

/* Language-specific navigation alignment */
[dir="rtl"] .ms-auto {
    margin-left: 0 !important;
    margin-right: auto !important;
}

[dir="ltr"] .ms-auto {
    margin-left: auto !important;
    margin-right: 0 !important;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .about-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }

    /* Responsive adjustments for floating button */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 20px;
    }
}
