:root {
    --gold: #D4AF37;
    --light-gold: #F5E6A3;
    --beige: #F5F5DC;
    --dark-beige: #E6D8B5;
    --black: #1a1a1a;
}

body {
    font-family: 'Tajawal', sans-serif;
    background: linear-gradient(135deg, #fef9e7 0%, #fdf6e3 50%, #faf3e0 100%);
    line-height: 1.8;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navbar-brand {
    color: var(--gold) !important;
    font-weight: 800;
    font-size: 1.5rem;
}

.nav-link {
    color: var(--black) !important;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--gold) !important;
}

.gold-text {
    color: var(--gold);
    font-weight: 700;
}

.contact-hero {
    background: linear-gradient(135deg, rgba(212,175,55,0.15) 0%, rgba(245,245,220,0.25) 100%);
    padding: 100px 0 60px;
    border-bottom: 3px solid var(--gold);
    position: relative;
    overflow: hidden;
    margin-top: 76px;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
    z-index: 0;
}

.logo-large {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--light-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.main-content {
    flex: 1;
}

.section-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 3rem;
    margin-bottom: 3rem;
    border-right: 4px solid var(--gold);
    transition: transform 0.3s ease;
}

.section-card:hover {
    transform: translateY(-5px);
}

.section-title {
    position: relative;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

.contact-form .form-control {
    border-radius: 12px;
    padding: 1rem 1.5rem;
    border: 2px solid #e9ecef;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
}

.contact-form textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--light-gold) 100%);
    border: none;
    color: var(--black);
    font-weight: bold;
    padding: 1rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.contact-info-card {
    background: linear-gradient(135deg, #fef9e7 0%, #fdf6e3 100%);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--light-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.quick-contact {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    height: 100%;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 2rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--black);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gold);
    transform: translateY(-3px);
    color: white;
}

/* Search Container - Inside navbar next to icon */
#searchContainer {
    display: none;
}

#searchContainer.show {
    display: block;
}

/* Add spacing to navbar icons when search is active */
.d-flex.align-items-center.position-relative.search-active #userToggle,
.d-flex.align-items-center.position-relative.search-active > a {
    margin-right: 250px;
    transition: margin-right 0.3s ease;
}

/* User Menu */
#userMenu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    display: none;
    z-index: 1000;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

#userMenu.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

#userMenu a {
    padding: 12px 20px;
    display: block;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 8px;
}

#userMenu a:hover {
    background: #f8f9fa;
    color: #D4AF37;
}

.working-hours {
    background: linear-gradient(135deg, var(--black) 0%, #2d2d2d 100%);
    color: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.hours-list {
    list-style: none;
    padding: 0;
}

.hours-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #444;
    display: flex;
    justify-content: space-between;
}

.hours-list li:last-child {
    border-bottom: none;
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, var(--black) 0%, #2d2d2d 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

.footer-title {
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-contact i {
    color: var(--gold);
    width: 20px;
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 80px 0 40px;
        margin-top: 76px;
    }
    
    .section-card {
        padding: 2rem 1.5rem;
    }
}