/* ========================================
   Quickpath – Professional Travel Design
   Inspired by modern OTAs (clean, white, trust)
   Brand: Green #0D7A3F + Gold #C4A035
======================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@600;700;800&display=swap');

:root {
    --green: #0D7A3F;
    --green-dark: #0A5C2F;
    --green-light: #E6F4EC;
    --gold: #C4A035;
    --gold-dark: #A68628;
    --text: #1A1D21;
    --text-muted: #5C6570;
    --border: #E5E8EB;
    --bg: #F7F8FA;
    --white: #FFFFFF;
    --shadow: 0 4px 24px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
    --radius: 14px;
    --radius-sm: 10px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text);
    line-height: 1.65;
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

/* ========== TOP BAR ========== */
.top-bar {
    background: var(--green-dark);
    color: rgba(255,255,255,0.9);
    font-size: 0.8rem;
    font-weight: 500;
}
.top-bar a { color: #fff; }

/* ========== NAVBAR ========== */
.navbar {
    background: var(--white) !important;
    box-shadow: 0 1px 0 var(--border);
    padding: 0.75rem 0;
}
.navbar-brand img { height: 48px; width: auto; }
.nav-link {
    font-weight: 500 !important;
    font-size: 0.925rem !important;
    color: var(--text) !important;
    padding: 0.5rem 0.9rem !important;
    transition: color 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--green) !important; }
.dropdown-menu {
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-sm);
    padding: 0.5rem;
}
.dropdown-item {
    border-radius: 8px;
    font-size: 0.9rem;
    padding: 0.55rem 1rem;
}
.dropdown-item:hover { background: var(--green-light); color: var(--green); }

/* ========== BUTTONS ========== */
.btn-gold {
    background: var(--gold);
    color: #fff !important;
    border: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 8px;
    padding: 0.65rem 1.35rem;
    transition: all 0.2s;
}
.btn-gold:hover {
    background: var(--gold-dark);
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(196,160,53,0.35);
}
.btn-green {
    background: var(--green);
    color: #fff !important;
    border: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 8px;
    padding: 0.65rem 1.35rem;
    transition: all 0.2s;
}
.btn-green:hover {
    background: var(--green-dark);
    color: #fff !important;
    transform: translateY(-1px);
}
.btn-outline-green {
    border: 1.5px solid var(--green);
    color: var(--green) !important;
    background: transparent;
    font-weight: 600;
    border-radius: 8px;
    padding: 0.55rem 1.25rem;
}
.btn-outline-green:hover {
    background: var(--green);
    color: #fff !important;
}
.btn-wa {
    background: #25D366;
    color: #fff !important;
    border: none;
    font-weight: 600;
    border-radius: 8px;
}
.btn-wa:hover { background: #1da851; color: #fff !important; }
.btn-outline-light {
    border: 1.5px solid rgba(255,255,255,0.7);
    color: #fff !important;
    border-radius: 8px;
    font-weight: 600;
}
.btn-outline-light:hover { background: #fff; color: var(--green) !important; }

/* ========== HERO (Akbar-style scenic + floating card) ========== */
.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(10,92,47,0.88), rgba(13,122,63,0.75)),
                url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=1800&q=80') center/cover no-repeat;
    color: #fff;
    padding: 60px 0 80px;
}
.hero h1 {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 1rem;
}
.hero .lead {
    font-size: 1.1rem;
    opacity: 0.95;
    font-weight: 400;
    max-width: 480px;
}
.hero-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 1.75rem;
    color: var(--text);
}
.hero-card h4 {
    font-size: 1.15rem;
    margin-bottom: 0.35rem;
}
.hero-card .nav-pills .nav-link {
    color: var(--text-muted) !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    border-radius: 8px;
    padding: 0.45rem 1rem !important;
}
.hero-card .nav-pills .nav-link.active {
    background: var(--green-light) !important;
    color: var(--green) !important;
}

/* Service icon strip under hero */
.service-strip {
    background: var(--white);
    margin-top: -36px;
    position: relative;
    z-index: 5;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.25rem 0.5rem;
}
.service-strip a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text);
    padding: 0.5rem;
    border-radius: 10px;
    transition: all 0.2s;
}
.service-strip a:hover {
    background: var(--green-light);
    color: var(--green);
}
.service-strip .icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    font-size: 1.2rem;
}

/* ========== SECTIONS ========== */
.section-title .subtitle {
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.75rem;
}
.section-title h2 {
    font-size: 2rem;
    margin-top: 0.25rem;
}
.py-6 { padding-top: 4rem; padding-bottom: 4rem; }
.bg-soft { background: var(--bg); }
.bg-light-green { background: var(--green-light); }

/* ========== CARDS ========== */
.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem 1.5rem;
    height: 100%;
    transition: all 0.25s ease;
}
.service-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.service-card .icon {
    width: 52px;
    height: 52px;
    background: var(--green-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--green);
    margin-bottom: 1rem;
}
.service-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
.service-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.country-card {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--white);
    transition: all 0.25s;
    height: 100%;
}
.country-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.service-img-wrap {
    height: 180px;
    overflow: hidden;
    position: relative;
}
.service-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.country-card:hover .service-img-wrap img { transform: scale(1.05); }
.country-card .card-body { padding: 1.15rem; }

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    height: 100%;
}
.testimonial-card .stars { color: var(--gold); margin-bottom: 0.6rem; font-size: 0.9rem; }
.testimonial-card .quote {
    font-size: 0.925rem;
    color: var(--text-muted);
    font-style: normal;
    line-height: 1.6;
}
.testimonial-card .client {
    font-weight: 700;
    font-size: 0.95rem;
    margin-top: 1rem;
    color: var(--text);
}

.blog-card {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--white);
    height: 100%;
    transition: all 0.25s;
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

/* ========== PAGE HEADER ========== */
.page-header {
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    padding: 70px 0 50px;
    color: #fff;
    text-align: center;
}
.page-header h1 {
    font-size: 2.25rem;
    color: #fff;
    margin-bottom: 0.4rem;
}
.breadcrumb { background: transparent; justify-content: center; margin: 0; }
.breadcrumb-item a { color: rgba(255,255,255,0.8); }
.breadcrumb-item.active { color: var(--gold); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); }

/* ========== FORMS ========== */
.form-control, .form-select {
    border-radius: 8px;
    padding: 0.7rem 1rem;
    border: 1px solid var(--border);
    font-size: 0.925rem;
}
.form-control:focus, .form-select:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(13,122,63,0.12);
}
.form-label { font-weight: 600; font-size: 0.875rem; color: var(--text); }

/* ========== STATS ========== */
.stat-box .number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.stat-box .label {
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
    font-weight: 500;
}

/* ========== CTA ========== */
.cta-section {
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    color: #fff;
    padding: 56px 0;
    text-align: center;
}
.cta-section h2 { color: #fff; font-size: 1.85rem; }

/* ========== FOOTER ========== */
.footer {
    background: #0A3D22;
    color: #fff;
    font-size: 0.9rem;
}
.footer .text-gold { color: var(--gold) !important; }
.footer-links a, .footer-contact a {
    color: rgba(255,255,255,0.7);
    transition: color 0.2s;
}
.footer-links a:hover, .footer-contact a:hover { color: var(--gold); }
.footer-links li, .footer-contact li { margin-bottom: 0.45rem; }
.social-links a {
    display: inline-flex;
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: 6px;
    transition: all 0.2s;
}
.social-links a:hover { background: var(--gold); }

/* ========== FLOATING ========== */
.whatsapp-float {
    position: fixed;
    bottom: 70px;
    right: 22px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    box-shadow: 0 6px 20px rgba(37,211,102,0.4);
    z-index: 1050;
    transition: transform 0.2s;
}
.whatsapp-float:hover { transform: scale(1.08); color: #fff; }

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--green-dark);
    z-index: 1040;
    box-shadow: 0 -2px 16px rgba(0,0,0,0.12);
}
.sticky-cta.hidden { display: none !important; }
body { padding-bottom: 52px; }

/* ========== ACCORDION ========== */
.accordion-button {
    font-weight: 600;
    font-size: 0.95rem;
}
.accordion-button:not(.collapsed) {
    background: var(--green-light);
    color: var(--green);
    box-shadow: none;
}
.accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(13,122,63,0.12);
}

/* ========== TRUST BAR ========== */
.trust-bar {
    background: var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
}
.trust-bar i { color: var(--green); margin-right: 0.35rem; }

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
    .hero h1 { font-size: 2.1rem; }
    .section-title h2 { font-size: 1.65rem; }
    .hero { min-height: auto; padding: 50px 0 70px; }
}
@media (max-width: 575px) {
    .hero h1 { font-size: 1.75rem; }
    .hero .lead { font-size: 0.95rem; }
    .page-header h1 { font-size: 1.65rem; }
    .service-strip { margin-top: -24px; }
}

.text-gold { color: var(--gold) !important; }
.text-success { color: var(--green) !important; }
.bg-green { background: var(--green) !important; }

/* Hero fixes */
.hero {
    min-height: 560px;
    padding: 70px 0 100px !important;
}
.hero h1 {
    font-size: clamp(1.85rem, 4vw, 2.85rem) !important;
    color: #fff !important;
}
.hero-card {
    margin-top: 0.5rem;
}
.hero-card .nav-pills .nav-link {
    border: 1px solid #E5E8EB !important;
    background: #F7F8FA !important;
}
.hero-card .nav-pills .nav-link.active {
    border-color: transparent !important;
    background: #E6F4EC !important;
    color: #0D7A3F !important;
}
.service-strip {
    margin-top: -48px !important;
    margin-bottom: 0;
}
@media (max-width: 991px) {
    .hero { padding: 48px 0 80px !important; min-height: auto; text-align: center; }
    .hero .lead { margin-left: auto; margin-right: auto; }
    .hero .d-flex { justify-content: center; }
    .service-strip { margin-top: -32px !important; }
}

/* Blog article content */
.content h2, .content h3, .content h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text);
}
.content p { margin-bottom: 1rem; color: var(--text-muted); }
.content ul, .content ol { margin-bottom: 1rem; padding-left: 1.25rem; color: var(--text-muted); }
.content img {
    max-width: 100%;
    border-radius: 12px;
    margin: 1rem 0;
}
.content a { color: var(--green); text-decoration: underline; }
.blog-meta-badge {
    display: inline-block;
    background: var(--green-light);
    color: var(--green);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.65rem;
    border-radius: 6px;
}

/* Professional page bottom trust */
.page-trust {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 1.25rem 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Header / Logo fixes */
.logo-img {
    height: 46px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
}
.navbar {
    z-index: 1030;
    min-height: 64px;
}
.navbar .nav-link {
    white-space: nowrap;
}
.top-bar {
    font-size: 0.78rem;
}
@media (max-width: 991.98px) {
    .logo-img { height: 40px; max-width: 180px; }
    .navbar-collapse {
        background: #fff;
        padding: 0.75rem 0 1rem;
        border-top: 1px solid var(--border);
        margin-top: 0.5rem;
    }
    .navbar-nav .nav-link {
        padding: 0.65rem 0 !important;
        border-bottom: 1px solid #f0f0f0;
    }
    .navbar-nav .btn-gold {
        width: 100%;
        text-align: center;
        margin-top: 0.5rem;
    }
}
