/* ==============================================
   كيان العرب للسياحة والسفر - Brand Styles
   Brand Colors:
   - Charcoal (Primary): #1A2332
   - Gold (Accent): #D4AF37
   - Light Gold: #E5C158
   - Off-white BG: #FAFAF8
================================================ */

/* ---- Nav Glass ---- */
.nav-glass {
    background: rgba(255, 255, 255, 0.96) !important;
    backdrop-filter: blur(20px) !important;
    border-bottom: 2px solid rgba(212, 175, 55, 0.25) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

/* ---- Luxury Text Gradient ---- */
.luxury-gradient-text {
    background: linear-gradient(135deg, #1A2332 0%, #D4AF37 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ---- Gold Primary Button ---- */
.btn-primary {
    background: linear-gradient(135deg, #1A2332 0%, #2D3E56 100%);
    color: #fff;
    border-radius: 0.6rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 35, 50, 0.25);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 35, 50, 0.35);
}

/* ---- Gold Accent Button ---- */
.btn-secondary {
    background: linear-gradient(135deg, #D4AF37 0%, #B59325 100%) !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    border-radius: 0.6rem;
    transition: all 0.3s ease;
}
.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #E5C158 0%, #C6A336 100%) !important;
}

/* ---- Luxury Card ---- */
.card-luxury {
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.4s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.card-luxury:hover {
    border-color: rgba(212, 175, 55, 0.45);
    box-shadow: 0 20px 40px rgba(26, 35, 50, 0.1);
    transform: translateY(-4px);
}

/* ---- Gold Underline Hover ---- */
.nav-link-hover {
    position: relative;
}
.nav-link-hover::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #D4AF37, #E5C158);
    transition: width 0.3s ease;
}
.nav-link-hover:hover::after {
    width: 100%;
}

/* ---- Section Heading Accent ---- */
.section-heading::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #D4AF37, #E5C158);
    margin: 12px auto 0;
    border-radius: 2px;
}

/* ---- Responsive Mobile Improvements ---- */
@media (max-width: 768px) {
    .hero-title { font-size: 2.2rem !important; }
    .hero-sub   { font-size: 1rem !important; }
    .stat-value { font-size: 2rem !important; }
}

/* ---- Offer Image Overlay ---- */
.offer-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,35,50,0.7) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.card-luxury:hover .offer-img-overlay {
    opacity: 1;
}

/* ---- Feature Icon Box ---- */
.feature-icon-box {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #fef9ec 0%, #fef3cd 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    color: #D4AF37;
}
.group:hover .feature-icon-box {
    background: linear-gradient(135deg, #D4AF37 0%, #B59325 100%);
    color: #fff;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.35);
    transform: scale(1.1);
}

/* ---- Smooth Scroll ---- */
html { scroll-behavior: smooth; }

/* ---- Mobile Menu Animation ---- */
#mobile-menu {
    transition: max-height 0.3s ease, opacity 0.3s ease;
}