/* ========================================
   FAHIRA TOUR - Custom CSS (Navy + Gold)
   ======================================== */

/* Color Variables */
:root {
    --fahira-navy: #1B3A5C;
    --fahira-navy-dark: #0F2740;
    --fahira-navy-light: #2A5A8C;
    --fahira-gold: #C9A84C;
    --fahira-gold-light: #E8D48B;
    --fahira-gold-dark: #A07C1C;
    --fahira-white: #ffffff;
    --fahira-cream: #FEFAF2;
}

/* Astra Theme Color Override */
:root {
    --ast-global-color-0: #1B3A5C !important;
    --ast-global-color-1: #2A5A8C !important;
    --ast-global-color-2: #0F2740 !important;
    --ast-global-color-3: #1A1A2E !important;
    --ast-global-color-4: #FEFAF2 !important;
    --ast-global-color-5: #ffffff !important;
    --ast-global-color-6: #C9A84C !important;
    --ast-global-color-7: #0F2740 !important;
}

/* Body & Typography */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #333;
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--fahira-navy-dark);
}

/* Header */
.site-header {
    background: var(--fahira-white) !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--fahira-navy) 0%, var(--fahira-navy-dark) 100%) !important;
    color: white !important;
    min-height: 90vh;
}

.hero h1 {
    color: white !important;
}

.hero .gold,
.hero .highlight {
    color: var(--fahira-gold) !important;
}

/* Buttons */
.btn-primary,
.ast-button,
.wp-block-button__link {
    background: linear-gradient(135deg, var(--fahira-gold) 0%, var(--fahira-gold-dark) 100%) !important;
    color: white !important;
    border: none !important;
    padding: 16px 36px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
}

.btn-primary:hover,
.ast-button:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(201,168,76,0.4) !important;
}

/* WhatsApp Button */
.btn-wa,
.wa-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    color: white !important;
}

.btn-wa:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%) !important;
}

/* Section Backgrounds */
.section-bg-navy {
    background: linear-gradient(135deg, var(--fahira-navy) 0%, var(--fahira-navy-dark) 100%);
    color: white;
}

.section-bg-cream {
    background: var(--fahira-cream);
}

/* Cards */
.card,
.paket-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.card:hover,
.paket-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

/* Gold Accent */
.gold {
    color: var(--fahira-gold) !important;
}

.bg-gold {
    background: var(--fahira-gold) !important;
}

/* Trust Badges */
.trust-badge {
    background: var(--fahira-navy);
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
}

/* Testimonials */
.testimonial-card {
    background: white;
    border-left: 4px solid var(--fahira-gold);
    padding: 24px;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* Footer */
.site-footer {
    background: var(--fahira-navy-dark) !important;
    color: rgba(255,255,255,0.8) !important;
}

.site-footer a {
    color: var(--fahira-gold-light) !important;
}

.site-footer a:hover {
    color: var(--fahira-gold) !important;
}

/* Floating WhatsApp */
.floating-wa {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    background: #25D366;
    color: white;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 6px 25px rgba(37,211,102,0.45);
    transition: all 0.3s ease;
    animation: wa-bounce 2.5s ease-in-out infinite;
}

.floating-wa:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 35px rgba(37,211,102,0.6);
}

@keyframes wa-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
}
