/* =============================================
   Vapros Trading PLC – Tourism Website Styles
   Ethiopian Theme: Green, Yellow, Red
   ============================================= */

:root {
    --eth-green:  #078930;
    --eth-yellow: #FCDD09;
    --eth-red:    #DA121A;
    --gold:       #C9A84C;
    --dark:       #1a1a2e;
    --dark-2:     #16213e;
    --text-muted: #6c757d;
    --white:      #ffffff;
    --light-bg:   #f8f9fa;
    --card-shadow: 0 4px 24px rgba(0,0,0,0.10);
}

* { box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

/* ---- Buttons ---- */
.btn-gold {
    background: var(--gold);
    color: var(--dark);
    font-weight: 600;
    border: none;
    padding: 10px 24px;
    border-radius: 4px;
    transition: all .3s;
}
.btn-gold:hover {
    background: #b8943e;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(201,168,76,.4);
}
.btn-outline-gold {
    border: 2px solid var(--gold);
    color: var(--gold);
    background: transparent;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 4px;
    transition: all .3s;
}
.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--dark);
}

/* ---- Top Bar ---- */
.top-bar {
    background: var(--dark);
    color: #ccc;
    font-size: .82rem;
    padding: 6px 0;
}
.top-bar a { color: #ccc; text-decoration: none; }
.top-bar a:hover { color: var(--gold); }
.lang-switcher a { color: #ccc; text-decoration: none; padding: 0 6px; font-weight: 600; }
.lang-switcher a.active { color: var(--gold); }
.lang-switcher span { color: #555; }

/* ---- Navbar ---- */
#mainNav {
    background: rgba(26,26,46,.97);
    backdrop-filter: blur(8px);
    padding: 10px 0;
    transition: all .3s;
    border-bottom: 2px solid var(--eth-green);
}
#mainNav.scrolled {
    padding: 6px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.navbar-brand .logo-img { filter: brightness(0) invert(1); }
.nav-link {
    color: rgba(255,255,255,.85) !important;
    font-weight: 500;
    padding: 8px 14px !important;
    transition: color .2s;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 14px; right: 14px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform .3s;
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link:hover, .nav-link.active { color: var(--gold) !important; }

/* ---- Ethiopian Flag Stripe ---- */
.eth-stripe {
    height: 4px;
    background: linear-gradient(to right, var(--eth-green) 33.3%, var(--eth-yellow) 33.3% 66.6%, var(--eth-red) 66.6%);
}

/* ---- Hero Section ---- */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(7,137,48,.55) 0%, rgba(26,26,46,.75) 100%),
                url('../images/addisababa.jpg') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 50%, rgba(201,168,76,.15) 0%, transparent 70%);
}
.hero-content { position: relative; z-index: 2; }
.hero-title {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.15;
    text-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.hero-title span { color: var(--gold); }
.hero-sub {
    font-size: 1.15rem;
    opacity: .9;
    max-width: 560px;
    margin: 1rem 0 2rem;
}
.hero-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 2rem; }
.hero-badge {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.25);
    backdrop-filter: blur(4px);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: .85rem;
    display: flex;
    align-items: center;
    gap: 6px;
}
.hero-badge i { color: var(--gold); }
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: rgba(255,255,255,.6);
    font-size: 1.5rem;
}
@keyframes bounce {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ---- Section Styles ---- */
.section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: .5rem;
}
.section-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 560px;
    margin: 0 auto 2.5rem;
}
.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--eth-green), var(--gold));
    margin: .75rem auto 1rem;
    border-radius: 2px;
}

/* ---- Tour Cards ---- */
.tour-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: transform .3s, box-shadow .3s;
    height: 100%;
}
.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,.18);
}
.tour-card-img {
    height: 220px;
    object-fit: cover;
    width: 100%;
    transition: transform .4s;
}
.tour-card:hover .tour-card-img { transform: scale(1.05); }
.tour-card-img-wrap { overflow: hidden; position: relative; }
.tour-badge {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--eth-green);
    color: #fff;
    font-size: .75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 50px;
}
.tour-card-body { padding: 1.25rem; }
.tour-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--eth-green);
}
.tour-price small { font-size: .75rem; color: var(--text-muted); font-weight: 400; }
.tour-meta { font-size: .82rem; color: var(--text-muted); }
.tour-meta i { color: var(--gold); }

/* ---- Destination Cards ---- */
.dest-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 280px;
    cursor: pointer;
}
.dest-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s;
}
.dest-card:hover img { transform: scale(1.08); }
.dest-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
    color: #fff;
    transition: background .3s;
}
.dest-card:hover .dest-overlay {
    background: linear-gradient(to top, rgba(7,137,48,.8) 0%, rgba(0,0,0,.3) 100%);
}
.dest-name { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; }
.dest-desc { font-size: .82rem; opacity: 0; transform: translateY(10px); transition: all .3s; }
.dest-card:hover .dest-desc { opacity: 1; transform: translateY(0); }

/* ---- Service Cards ---- */
.service-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: transform .3s, box-shadow .3s;
    height: 100%;
    border-top: 3px solid transparent;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0,0,0,.14);
    border-top-color: var(--eth-green);
}
.service-icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, var(--eth-green), #0aad3e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.6rem;
    color: #fff;
}
.service-card h5 { font-size: 1rem; font-weight: 600; margin-bottom: .5rem; }
.service-card p { font-size: .88rem; color: var(--text-muted); margin: 0; }

/* ---- Stats Section ---- */
.stats-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
    color: #fff;
    padding: 60px 0;
}
.stat-item { text-align: center; }
.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold);
}
.stat-label { font-size: .9rem; opacity: .75; }

/* ---- Why Choose Us ---- */
.why-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.why-icon {
    width: 48px; height: 48px; min-width: 48px;
    background: linear-gradient(135deg, var(--eth-green), #0aad3e);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.2rem;
}
.why-text h6 { font-weight: 600; margin-bottom: .25rem; }
.why-text p { font-size: .88rem; color: var(--text-muted); margin: 0; }

/* ---- Contact Form ---- */
.contact-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--card-shadow);
}
.form-control, .form-select {
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: .92rem;
    transition: border-color .2s;
}
.form-control:focus, .form-select:focus {
    border-color: var(--eth-green);
    box-shadow: 0 0 0 3px rgba(7,137,48,.12);
}
.form-label { font-weight: 500; font-size: .9rem; }

/* ---- Map ---- */
.map-container { border-radius: 16px; overflow: hidden; box-shadow: var(--card-shadow); }

/* ---- Page Hero ---- */
.page-hero {
    background: linear-gradient(135deg, rgba(7,137,48,.8) 0%, rgba(26,26,46,.9) 100%),
                url('../images/addisababa.jpg') center/cover no-repeat;
    color: #fff;
    padding: 100px 0 60px;
    text-align: center;
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; }
.page-hero p { opacity: .85; font-size: 1.05rem; }

/* ---- Filter Bar ---- */
.filter-bar {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--card-shadow);
    margin-bottom: 2rem;
}

/* ---- About Page ---- */
.about-img { border-radius: 16px; box-shadow: var(--card-shadow); }
.mission-card {
    background: linear-gradient(135deg, var(--eth-green), #0aad3e);
    color: #fff;
    border-radius: 16px;
    padding: 2rem;
}
.vision-card {
    background: linear-gradient(135deg, var(--dark), var(--dark-2));
    color: #fff;
    border-radius: 16px;
    padding: 2rem;
}

/* ---- Footer ---- */
.footer {
    background: var(--dark);
    color: #aaa;
    padding: 60px 0 0;
}
.footer-logo { filter: brightness(0) invert(1); }
.footer-desc { font-size: .88rem; line-height: 1.7; }
.footer-heading { color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; font-size: .85rem; margin-bottom: 1rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a { color: #aaa; text-decoration: none; font-size: .88rem; transition: color .2s; }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: .75rem; font-size: .88rem; }
.footer-contact i { color: var(--gold); margin-top: 2px; }
.footer-contact a { color: #aaa; text-decoration: none; }
.footer-contact a:hover { color: var(--gold); }
.social-links { display: flex; gap: 10px; }
.social-links a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,.08);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #aaa; font-size: 1rem;
    transition: all .3s;
    text-decoration: none;
}
.social-links a:hover { background: var(--gold); color: var(--dark); }
.footer-divider { border-color: rgba(255,255,255,.08); margin: 2rem 0 1rem; }
.footer-bottom { padding-bottom: 1.5rem; font-size: .85rem; }

/* ---- WhatsApp Float ---- */
.whatsapp-float {
    position: fixed;
    bottom: 28px; right: 28px;
    width: 56px; height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(37,211,102,.5);
    z-index: 9999;
    text-decoration: none;
    transition: transform .3s, box-shadow .3s;
    animation: pulse-wa 2.5s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); color: #fff; }
@keyframes pulse-wa {
    0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.5); }
    50% { box-shadow: 0 4px 32px rgba(37,211,102,.8); }
}

/* ---- Animations ---- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .hero { min-height: 80vh; }
    .hero-title { font-size: 2rem; }
    .dest-card { height: 220px; }
    .contact-card { padding: 1.5rem; }
    .whatsapp-float { bottom: 16px; right: 16px; width: 48px; height: 48px; font-size: 1.3rem; }
}

/* ---- Booking Modal ---- */
.modal-header { background: linear-gradient(135deg, var(--eth-green), #0aad3e); color: #fff; }
.modal-header .btn-close { filter: invert(1); }

/* ---- Alert ---- */
.alert-success-custom {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    border: 1px solid var(--eth-green);
    color: #155724;
    border-radius: 10px;
    padding: 1rem 1.25rem;
}

/* ---- Placeholder images (gradient fallback) ---- */
.img-placeholder {
    background: linear-gradient(135deg, #1a3a2a 0%, #0a5c2a 50%, #1a3a2a 100%);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.3);
    font-size: 3rem;
    min-height: 220px;
}

/* ---- Logo fallback text ---- */
.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: .05em;
}
.logo-text span { color: var(--gold); }
