/* ===== TOP BAR ===== */
.top-bar {
    background: #003A70;
}
.top-bar .container {
    flex-wrap: wrap;
    gap: 8px;
}

/* ===== HERO ===== */
/* Hero Carousel */
.hero-img {
    height: 90vh;
    object-fit: cover;
    filter: brightness(70%);
}

.carousel-caption {
    bottom: 25%;
    text-align: left;
    width: 55%;
    margin-left: 5%;
}

.carousel-caption h1 {
    font-size: clamp(2.4rem, 4vw, 3.5rem);
    font-weight: 700;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
}

.carousel-caption p {
    font-size: 1.2rem;
    margin-top: 10px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    max-width: 520px;
}

.carousel-caption .btn {
    min-width: 160px;
}

.carousel-overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
}

.carousel-item {
  position: relative;
}


/* ===== SECTION TITLE ===== */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #003A70;
}

/* ===== SPECIALITY CARDS ===== */
.special-card {
    border-radius: 12px;
    transition: 0.3s;
    background: #fff;
    border: 1px solid rgba(0, 58, 112, 0.08);
}
.special-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}
.special-card .icon {
    font-size: 3rem;
    color: #003A70;
}

/* ===== DESTINATION CARDS ===== */
.destination-card {
    border-radius: 12px;
    background: #fff;
    transition: 0.3s;
}
.destination-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.1);
}
.destination-card .icon {
    font-size: 2rem;
    color: #003A70;
}

/* ===== SUCCESS STORIES ===== */
.story-card {
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.story-avatar {
    width: 56px;
    height: 56px;
    object-fit: cover;
}

/* ===== ABOUT SECTION ===== */
.about-img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* ===== INNER PAGE HERO ===== */
.page-hero {
    position: relative;
    padding: 140px 0 110px;
    background-size: cover;
    background-position: center;
    color: #fff;
}
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 58, 112, 0.8), rgba(0, 0, 0, 0.5));
}
.page-hero .container {
    position: relative;
    z-index: 1;
}

/* ===== VALUE CARDS ===== */
.value-card,
.process-step,
.country-card,
.resource-card,
.contact-card {
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: #fff;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.value-card h5 {
    margin-top: 12px;
    font-weight: 700;
    color: #003A70;
}

/* ===== TIMELINE ===== */
.timeline {
    position: relative;
    padding-left: 32px;
}
.timeline::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(0, 58, 112, 0.2);
}
.timeline-item {
    position: relative;
    margin-bottom: 32px;
}
.timeline-item:last-child {
    margin-bottom: 0;
}
.timeline-dot {
    position: absolute;
    left: -32px;
    top: 6px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #003A70;
    border: 3px solid #fff;
    box-shadow: 0 0 0 4px rgba(0, 58, 112, 0.2);
}

/* ===== PROCESS STEP ===== */
.process-step h4 {
    font-weight: 700;
    color: #003A70;
}

/* ===== COUNTRY CARD ===== */
.country-card h5 {
    font-weight: 700;
    margin-bottom: 8px;
}

/* ===== RESOURCE CARD ===== */
.resource-card .btn-link {
    font-weight: 600;
    color: #003A70;
    text-decoration: none;
}
.resource-card .btn-link:hover {
    text-decoration: underline;
}

/* ===== CONTACT CARD ===== */
.contact-card i {
    font-size: 1.3rem;
    color: #003A70;
}
.map-embed {
    border-radius: 16px;
    overflow: hidden;
    min-height: 320px;
}

/* ===== FOOTER ===== */
.footer {
    background: #003A70;
}
.footer .footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 8px;
}
.footer .footer-link:hover {
    color: #fff;
}
.footer .contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.85);
}
.footer .contact-item i {
    margin-top: 4px;
}
.footer .footer-social {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: 0.3s;
}
.footer .footer-social:hover {
    background: #fff;
    color: #003A70;
}
.footer .copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 24px;
    padding-top: 16px;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== NAVBAR: make menu links and brand turn Bootstrap blue on hover/focus */
.navbar .nav-link,
.navbar .navbar-brand {
    transition: color 0.15s ease;
}
.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .navbar-brand:hover,
.navbar .navbar-brand:focus {
    color: #0d6efd !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .carousel-caption {
        width: 90%;
        margin-left: 0;
        left: 5%;
        right: 5%;
        bottom: 15%;
    }
}

@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        text-align: center;
    }

    .navbar .btn {
        width: 100%;
        margin-top: 12px;
    }

    .carousel-caption {
        width: 90% !important;
        margin-left: 5% !important;
        bottom: 18% !important;
        text-align: center;
    }

    .carousel-caption h1 {
        font-size: 1.6rem;
    }

    .carousel-caption p {
        font-size: 0.95rem;
        max-width: 100%;
    }

    .carousel-caption div {
        flex-direction: column;
        gap: 10px;
    }

    .carousel-caption .btn {
        width: 100%;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .special-card,
    .destination-card,
    .story-card {
        text-align: center;
    }

    .footer .col-md-3,
    .footer .col-md-4 {
        text-align: center;
    }

    .footer .contact-item {
        justify-content: center;
        text-align: center;
    }

    .footer .footer-social {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 576px) {
    .hero-img {
        height: 65vh;
    }

    .carousel-caption h1 {
        font-size: 2rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }

    .contact-card,
    .resource-card,
    .value-card {
        padding: 20px;
    }

    .footer .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer .contact-item i {
        margin-bottom: 6px;
    }
}
