@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap');

:root {
    --primary-color: #146676;
    --text-color: #000000;
    --bg-light: #F2F2F2;
    --white: #FFFFFF;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

/* Navbar Customization */
.navbar {
    padding: 0.5rem 0;
    /* Reduced to match live site better */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.navbar .container-fluid {
    padding-left: 1rem;
    padding-right: 1rem;
}


.navbar-brand {
    font-weight: 400;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 40px;
    margin-right: 10px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-collapse {
        margin-top: 1rem;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        padding: 1rem 0;
    }

    .navbar-nav {
    }

    .nav-link {
        padding: 0.75rem 0 !important;
    }

    .dropdown-menu {
        box-shadow: none;
        border-radius: 0;
        padding-left: 1rem;
        margin-top: 0;
        background: transparent;
        animation: none;
    }
}

@media (max-width: 575.98px) {
    .navbar-brand {
        font-size: 0.9rem;
        white-space: normal;
        max-width: 240px;
    }

    .navbar-brand img {
        height: 30px;
    }
}

.navbar-toggler {
    border-color: rgba(20, 102, 118, 0.2);
    padding: 0.4rem 0.6rem;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    width: 1.25rem;
    height: 1.25rem;
}


.nav-link {
    font-weight: 400;
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.6) !important;
    text-transform: none;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-link.active {
    font-weight: 700;
    color: var(--primary-color) !important;
}

/* Dropdown Menu */
.dropdown-menu {
    border: none;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    animation: dropdownFade 0.25s ease;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    padding: 0.55rem 1.25rem;
    font-size: 0.88rem;
    font-weight: 500;
    color: #333;
    border-left: 3px solid transparent;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background: rgba(20, 102, 118, 0.06);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
}

.dropdown-item.active {
    background: rgba(20, 102, 118, 0.08);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    font-weight: 600;
}

/* Hero Section */
.hero-section {
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--white);
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-title {
    font-size: clamp(1.5rem, 4.5vw, 3.2rem);
    font-weight: 700;
    color: var(--white);
}


.contact-left {
    min-height: 400px;
    /* match map height */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Banner / Strip */
.section-banner {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1.5rem 0;
}

.section-banner h2 {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
}

.section-banner-grey {
    background-color: #ebebeb;
    color: var(--text-color);
    padding: 1.5rem 0;
}

.section-banner-grey h2 {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-color);
}

/* Grid Layouts */
.offering-card {
    border: none;
    margin-bottom: 2rem;
}

.offering-card img {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

.offering-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.offering-text {
    font-size: 0.95rem;
    color: var(--text-color);
}

/* Spacing & Utilities */
.section-padding {
    padding: 3rem 0;
}

.bg-f2 {
    background-color: var(--bg-light);
}

/* Override Bootstrap muted/secondary for pure black content */
.text-muted,
.text-secondary {
    color: var(--text-color) !important;
}

/* ─── CTA Banner ─── */
.cta-banner {
    background: linear-gradient(135deg, #146676 0%, #1a8a9c 100%);
    padding: 4rem 0;
}

.cta-banner h2 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.btn-cta-white {
    background: #fff;
    color: #146676;
    border: 2px solid #fff;
    padding: 0.7rem 2rem;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, transform 0.15s;
    display: inline-block;
}

.btn-cta-white:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-1px);
}

/* ─── Footer ─── */
.footer-modern {
    background: #0a0f1e;
    color: rgba(255, 255, 255, 0.7);
    padding: 2rem 0;
}

.footer-modern .footer-brand {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #fff;
    font-size: 0.95rem;
}

.footer-modern .footer-copy {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

.footer-modern .footer-social a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.15rem;
    margin-left: 1rem;
    transition: color 0.2s;
}

.footer-modern .footer-social a:hover {
    color: #fff;
}

.footer-partner-btn {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    color: rgba(255, 255, 255, 0.85);
    padding: 0.45rem 1.2rem;
    border-radius: 6px;
    font-size: 0.82rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
}

.footer-partner-btn:hover {
    border-color: rgba(255, 255, 255, 0.8);
    color: #fff;
}

/* Footer */
.footer-strip {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    padding: 1rem 0;
}

.btn-partner {
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 4px;
    padding: 0.5rem 1.5rem;
    font-weight: 700;
}

.btn-partner:hover {
    background-color: #0c574e;
    color: var(--white);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .hero-section { padding-top: 7rem !important; padding-bottom: 7rem !important; }
}

@media (max-width: 767.98px) {
    .hero-section { padding-top: 5rem !important; padding-bottom: 5rem !important; }
    .hero-section p { line-height: 1.35; }
    .section-banner h2 { font-size: 1.5rem; }
    .cta-banner { padding: 2.5rem 0; }
    .btn-cta-white { display: block; text-align: center; }
}


@media (max-width: 575.98px) {
    .hero-section { padding-top: 3rem !important; padding-bottom: 3rem !important; }
    .section-banner h2 { font-size: 1.2rem; }
    .section-banner { padding: 0.85rem 0; }
    .hero-content { padding: 0 0.25rem; }
    .cta-banner { padding: 2rem 0; }
    .footer-modern { padding: 1.5rem 0; }
}