/* ── Reset & Base ── */
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,400;0,700;1,400&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Ubuntu', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #121212;
    background: #ffffff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

/* ── Navbar ── */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #0B3C56;
    z-index: 999;
    transition: background 0.3s ease;
}

.nav-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

.nav-logo {
    color: white;
    font-weight: 700;
    font-size: 1.2em;
    letter-spacing: 0.04em;
    z-index: 1001;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 0;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-links li a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875em;
    font-weight: 400;
    padding: 20px 16px;
    display: block;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-links li a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
}

/* ── Hamburger ── */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: white;
    margin: 5px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile Nav Overlay ── */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: #0B3C56;
    z-index: 1000;
    padding: 80px 24px 40px;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    color: white;
    font-size: 1.1em;
    font-weight: 400;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: block;
    transition: opacity 0.2s ease;
}

.mobile-nav a:hover {
    opacity: 0.7;
}

/* ── Language Switcher ── */
.lang-switcher {
    position: relative;
}

.lang-current {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.85);
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
    font-family: 'Ubuntu', sans-serif;
    font-size: 0.78em;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: border-color 0.2s;
}

.lang-current:hover {
    border-color: rgba(255, 255, 255, 0.45);
    color: #ffffff;
}

.lang-arrow {
    font-size: 0.7em;
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 4px;
    background: #0B3C56;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    min-width: 120px;
    z-index: 1002;
}

.lang-dropdown.open {
    display: block;
}

.lang-dropdown form {
    margin: 0;
}

.lang-option {
    display: block;
    width: 100%;
    padding: 10px 16px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Ubuntu', sans-serif;
    font-size: 0.82em;
    font-weight: 400;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s;
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

/* ── Hero Section ── */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 560px;
    max-height: 900px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img,
.hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg .image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, #5ca0c8 0%, #3a7ab5 40%, #1e5a8a 100%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(11, 60, 86, 0.75) 0%,
        rgba(11, 60, 86, 0.25) 50%,
        rgba(0, 0, 0, 0.1) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 64px;
}

.hero-eyebrow {
    font-size: 0.78em;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.hero-title {
    font-size: 3.2em;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin-bottom: 18px;
}

.hero-subtitle {
    font-size: 1.05em;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 32px;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: #277e6e;
    color: #ffffff;
    font-family: 'Ubuntu', sans-serif;
    font-size: 0.88em;
    font-weight: 700;
    letter-spacing: 0.02em;
    border: none;
    border-radius: 4px;
    transition: background 0.25s ease;
}

.btn-primary:hover {
    background: #1f6a5c;
}

/* ── Shared Section Styles ── */
.section {
    padding: 72px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-alt {
    background: #f5f7f8;
}

.section-alt .section {
    padding-left: 24px;
    padding-right: 24px;
}

.section-eyebrow {
    font-size: 0.72em;
    font-weight: 700;
    color: #277e6e;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.section-title {
    font-size: 2em;
    font-weight: 700;
    color: #0B3C56;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-intro {
    font-size: 1em;
    line-height: 1.8;
    color: #555;
    font-weight: 400;
    max-width: 600px;
    margin-bottom: 40px;
}

.section-center {
    text-align: center;
}

.section-center .section-intro {
    margin-left: auto;
    margin-right: auto;
}

/* ── About Section (split layout) ── */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 6px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image .image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #6db3d4 0%, #3578a5 100%);
    border-radius: 6px;
}

.about-text .section-eyebrow,
.about-text .section-title,
.about-text .section-intro {
    text-align: left;
}

.about-text .section-intro {
    margin-bottom: 20px;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88em;
    font-weight: 700;
    color: #277e6e;
    transition: gap 0.2s ease;
}

.btn-link:hover {
    gap: 10px;
}

/* ── Activities Grid ── */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.activity-card {
    background: white;
    border-radius: 6px;
    padding: 28px 24px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.activity-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.activity-icon {
    font-size: 1.6em;
    margin-bottom: 12px;
}

.activity-card h3 {
    font-size: 0.82em;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #0B3C56;
    margin-bottom: 8px;
}

.activity-card p {
    font-size: 0.9em;
    line-height: 1.7;
    color: #666;
    font-weight: 400;
}

.activity-card .meta {
    margin-top: 12px;
    font-size: 0.82em;
    color: #999;
}

/* ── Values / Why B3RC Grid ── */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.value-card {
    background: #0B3C56;
    color: white;
    border-radius: 6px;
    padding: 32px 24px;
    text-align: center;
    transition: background 0.25s ease;
}

.value-card:hover {
    background: #0d4565;
}

.value-icon {
    font-size: 2em;
    margin-bottom: 14px;
}

.value-card h3 {
    font-size: 0.82em;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 0.88em;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

/* ── Photo Strip ── */
.photo-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    width: 100%;
}

.photo-strip-item {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.photo-strip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.photo-strip-item:hover img {
    transform: scale(1.04);
}

.photo-strip-item .image-placeholder {
    width: 100%;
    height: 100%;
}

.photo-strip-item:nth-child(1) .image-placeholder {
    background: linear-gradient(135deg, #6db3d4 0%, #4a95bf 100%);
}

.photo-strip-item:nth-child(2) .image-placeholder {
    background: linear-gradient(135deg, #4a95bf 0%, #3578a5 100%);
}

.photo-strip-item:nth-child(3) .image-placeholder {
    background: linear-gradient(135deg, #3578a5 0%, #1e5a8a 100%);
}

/* ── CTA Banner ── */
.cta-banner {
    background: #277e6e;
    padding: 56px 24px;
    text-align: center;
}

.cta-banner h2 {
    font-size: 1.8em;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.cta-banner p {
    font-size: 1em;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    max-width: 480px;
    margin: 0 auto 28px;
    line-height: 1.7;
}

.btn-white {
    display: inline-block;
    padding: 14px 32px;
    background: white;
    color: #0B3C56;
    font-family: 'Ubuntu', sans-serif;
    font-size: 0.88em;
    font-weight: 700;
    border: none;
    border-radius: 4px;
    transition: background 0.25s ease;
}

.btn-white:hover {
    background: #f0f0f0;
}

/* ── Contact Split ── */
.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 6px;
    overflow: hidden;
}

.contact-map {
    min-height: 320px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.contact-info {
    background: #0B3C56;
    color: white;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h3 {
    font-size: 1.3em;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 0.92em;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 6px;
}

.contact-info .btn-outline {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    font-family: 'Ubuntu', sans-serif;
    font-size: 0.85em;
    font-weight: 700;
    border-radius: 4px;
    transition: background 0.25s ease, border-color 0.25s ease;
    width: fit-content;
}

.contact-info .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
}

/* ── Footer ── */
.footer {
    background: #0a2e42;
    color: white;
    padding: 48px 0 0;
}

.footer-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 40px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-logo {
    font-weight: 700;
    font-size: 1.2em;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}

.footer-tagline {
    font-size: 0.85em;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
}

.footer-heading {
    font-size: 0.72em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.45);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88em;
    font-weight: 400;
    transition: color 0.2s ease;
}

.footer-links li a:hover {
    color: #ffffff;
}

.footer-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88em;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 4px;
}

.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 12px;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85em;
    font-weight: 400;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 16px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 0.75em;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.3);
}

/* ── Inner Pages ── */
.page-content {
    padding-top: 100px;
    padding-bottom: 80px;
}

.container {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Inner Page Cards ── */
.card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 40px;
}

.card {
    background: #f5f7f8;
    border: none;
    border-radius: 6px;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.card:hover {
    background: #edf0f2;
}

.card h3 {
    font-size: 0.82em;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #0B3C56;
    margin-bottom: 10px;
}

.card p {
    font-size: 0.9em;
    line-height: 1.7;
    color: #666;
    font-weight: 400;
    margin-bottom: 4px;
}

.card-meta {
    font-size: 0.82em !important;
    color: #999 !important;
}

/* ── Inner CTA Box ── */
.cta-box {
    background: #0B3C56;
    color: #ffffff;
    border-radius: 6px;
    padding: 48px 32px;
    text-align: center;
}

.cta-box h3 {
    font-size: 1.3em;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-box p {
    font-size: 0.95em;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    margin-bottom: 24px;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    display: inline-block;
    padding: 14px 32px;
    background: #277e6e;
    color: #ffffff;
    font-family: 'Ubuntu', sans-serif;
    font-size: 0.85em;
    font-weight: 700;
    border: none;
    border-radius: 4px;
    transition: background 0.25s ease;
}

.btn-cta:hover {
    background: #1f6a5c;
}

/* ── Map Cards ── */
.map-card {
    background: #f5f7f8;
    border: none;
    border-radius: 6px;
    overflow: hidden;
    transition: background 0.25s ease;
}

.map-card:hover {
    background: #edf0f2;
}

.map-card-info {
    padding: 24px 24px 12px;
}

.map-card-info h3 {
    font-size: 0.82em;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #0B3C56;
    margin-bottom: 8px;
}

.map-card-info p {
    font-size: 0.9em;
    line-height: 1.7;
    color: #666;
    font-weight: 400;
    margin-bottom: 4px;
}

.map-wrapper {
    padding: 0 12px 12px;
}

.map-wrapper iframe {
    border: 0;
    border-radius: 4px;
}

/* ══════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════ */

/* ── Tablet ── */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.6em;
    }

    .about-split {
        gap: 32px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

/* ── Mobile ── */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .nav-container {
        height: 56px;
    }

    /* Hero */
    .hero {
        min-height: 480px;
        max-height: 700px;
    }

    .hero-content {
        padding: 0 20px 48px;
    }

    .hero-title {
        font-size: 2.2em;
    }

    .hero-subtitle {
        font-size: 0.95em;
    }

    /* Sections */
    .section {
        padding: 48px 20px;
    }

    .section-title {
        font-size: 1.6em;
    }

    /* About */
    .about-split {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .about-image {
        aspect-ratio: 16 / 9;
    }

    /* Activities */
    .activities-grid {
        grid-template-columns: 1fr;
    }

    /* Values */
    .values-grid {
        grid-template-columns: 1fr;
    }

    /* Photo strip */
    .photo-strip {
        grid-template-columns: 1fr;
    }

    .photo-strip-item {
        aspect-ratio: 16 / 9;
    }

    /* CTA Banner */
    .cta-banner {
        padding: 40px 20px;
    }

    .cta-banner h2 {
        font-size: 1.4em;
    }

    /* Contact */
    .contact-split {
        grid-template-columns: 1fr;
    }

    .contact-map {
        min-height: 240px;
    }

    .contact-info {
        padding: 32px 20px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 0 20px 32px;
    }

    .footer-bottom {
        padding: 16px 20px;
    }

    /* Inner pages */
    .page-content {
        padding-top: 80px;
        padding-bottom: 60px;
    }

    .container {
        padding: 0 20px;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 36px 20px;
    }
}

/* ── Small phones ── */
@media (max-width: 400px) {
    .hero-title {
        font-size: 1.8em;
    }

    .hero-subtitle {
        font-size: 0.88em;
    }

    .btn-primary,
    .btn-white,
    .btn-cta {
        width: 100%;
        text-align: center;
    }

    .section-title {
        font-size: 1.4em;
    }

    .cta-banner h2 {
        font-size: 1.2em;
    }
}
