:root {
    --primary-blue: #0A3A73;
    --dark-navy: #082C57;
    --white: #FFFFFF;
    --silver-gray: #E5E5E5;
    --charcoal: #222222;
    --gold: #C9A14A;
    --ink-muted: #697386;
    --soft-blue: #F3F7FB;
    --line: rgba(8, 44, 87, 0.13);
    --shadow: 0 22px 70px rgba(8, 44, 87, 0.15);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--white);
    color: var(--charcoal);
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.7;
}

img {
    max-width: 100%;
    height: auto;
}

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

a:hover {
    color: var(--gold);
}

.container-xl {
    max-width: 1220px;
}

.section-pad {
    padding: 110px 0;
}

.section-pad-sm {
    padding: 82px 0;
}

.eyebrow {
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.eyebrow::before {
    background: var(--gold);
    content: "";
    display: inline-block;
    height: 1px;
    width: 42px;
}

.section-title {
    color: var(--dark-navy);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2rem, 5vw, 4.4rem);
    font-weight: 700;
    line-height: 1.03;
    margin-bottom: 24px;
}

.section-copy {
    color: var(--ink-muted);
    font-size: 1.03rem;
    max-width: 700px;
}

.btn {
    align-items: center;
    border-radius: 4px;
    display: inline-flex;
    font-weight: 800;
    gap: 9px;
    justify-content: center;
    min-height: 48px;
    padding: 13px 24px;
    text-transform: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-gold {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark-navy);
}

.btn-gold:hover,
.btn-gold:focus {
    background: #d8b762;
    border-color: #d8b762;
    box-shadow: 0 14px 34px rgba(201, 161, 74, 0.34);
    color: var(--dark-navy);
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.75);
    color: var(--white);
}

.btn-outline-light:hover,
.btn-outline-light:focus {
    background: var(--white);
    border-color: var(--white);
    color: var(--dark-navy);
}

.btn-outline-navy {
    border: 1px solid var(--dark-navy);
    color: var(--dark-navy);
}

.btn-outline-navy:hover,
.btn-outline-navy:focus {
    background: var(--dark-navy);
    color: var(--white);
}

.site-header {
    padding: 14px 0;
    transition: background-color 0.28s ease, box-shadow 0.28s ease, padding 0.28s ease;
    z-index: 1040;
}

.site-header.is-scrolled,
.site-header.menu-open {
    background: rgba(8, 44, 87, 0.96);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    padding: 6px 0;
}

.navbar {
    padding: 0;
}

.navbar-brand,
.footer-brand {
    align-items: center;
    display: inline-flex;
    gap: 12px;
}

.brand-mark {
    align-items: center;
    background: var(--gold);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--dark-navy);
    display: inline-flex;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.05rem;
    font-weight: 700;
    height: 46px;
    justify-content: center;
    width: 46px;
}

.brand-copy {
    color: var(--white);
    display: grid;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

.brand-copy small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    margin-top: 6px;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
    font-weight: 700;
    padding: 12px 17px;
    position: relative;
}

.navbar-dark .navbar-nav .nav-link::after {
    background: var(--gold);
    bottom: 6px;
    content: "";
    height: 2px;
    left: 18px;
    position: absolute;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
    width: calc(100% - 36px);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--white);
}

.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.nav-cta {
    min-height: 44px;
    padding: 11px 18px;
}

.hero-slider,
.hero-slider .carousel,
.hero-slider .carousel-inner,
.hero-slider .carousel-item {
    min-height: 100vh;
}

.hero-slide {
    align-items: center;
    background-position: center;
    background-size: cover;
    color: var(--white);
    display: flex;
    min-height: 100vh;
    padding: 150px 0 95px;
    position: relative;
}

.hero-slide::before {
    background: linear-gradient(90deg, rgba(5, 19, 39, 0.82) 0%, rgba(8, 44, 87, 0.55) 45%, rgba(8, 44, 87, 0.12) 100%);
    content: "";
    inset: 0;
    position: absolute;
}

.hero-content {
    max-width: 780px;
    position: relative;
    z-index: 2;
}

.hero-kicker {
    align-items: center;
    color: var(--gold);
    display: inline-flex;
    font-size: 0.82rem;
    font-weight: 900;
    gap: 12px;
    letter-spacing: 0.2em;
    margin-bottom: 22px;
    text-transform: uppercase;
}

.hero-kicker::before {
    background: var(--gold);
    content: "";
    height: 1px;
    width: 52px;
}

.hero-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(3rem, 8vw, 7.4rem);
    font-weight: 700;
    line-height: 0.95;
    margin-bottom: 24px;
}

.hero-text {
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1.05rem, 2vw, 1.28rem);
    max-width: 620px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero-meta {
    align-items: center;
    bottom: 32px;
    color: rgba(255, 255, 255, 0.82);
    display: flex;
    gap: 32px;
    left: 50%;
    max-width: 1220px;
    padding: 0 12px;
    position: absolute;
    transform: translateX(-50%);
    width: 100%;
    z-index: 2;
}

.hero-meta strong {
    color: var(--white);
    display: block;
    font-size: 1.1rem;
}

.carousel-control-next,
.carousel-control-prev {
    height: 54px;
    opacity: 1;
    top: auto;
    bottom: 35px;
    width: 54px;
}

.carousel-control-prev {
    left: auto;
    right: 90px;
}

.carousel-control-next {
    right: 24px;
}

.intro-grid {
    align-items: center;
}

.image-stack {
    min-height: 560px;
    position: relative;
}

.image-stack img {
    border-radius: 6px;
    box-shadow: var(--shadow);
    height: 470px;
    object-fit: cover;
    width: 78%;
}

.image-stack .image-secondary {
    border: 10px solid var(--white);
    bottom: 0;
    height: 265px;
    position: absolute;
    right: 0;
    width: 46%;
}

.intro-badge {
    background: var(--dark-navy);
    border-radius: 6px;
    bottom: 38px;
    color: var(--white);
    left: 36px;
    padding: 22px 26px;
    position: absolute;
}

.intro-badge strong {
    color: var(--gold);
    display: block;
    font-size: 2.35rem;
    line-height: 1;
}

.service-tile {
    border-bottom: 1px solid var(--line);
    display: grid;
    gap: 18px;
    grid-template-columns: 64px 1fr;
    padding: 26px 0;
}

.service-tile i {
    align-items: center;
    background: var(--soft-blue);
    border-radius: 4px;
    color: var(--primary-blue);
    display: inline-flex;
    font-size: 1.45rem;
    height: 56px;
    justify-content: center;
    width: 56px;
}

.service-tile h3,
.value-card h3,
.goal-card h3,
.roadmap-item h3,
.team-card h3 {
    color: var(--dark-navy);
    font-size: 1.12rem;
    font-weight: 800;
}

.project-section {
    background: var(--soft-blue);
}

.project-card {
    background: var(--white);
    border: 1px solid rgba(8, 44, 87, 0.1);
    border-radius: 8px;
    height: 100%;
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.project-card:hover {
    border-color: rgba(201, 161, 74, 0.7);
    box-shadow: var(--shadow);
    transform: translateY(-8px);
}

.project-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
}

.project-image img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    width: 100%;
}

.project-card:hover img {
    transform: scale(1.06);
}

.project-status {
    background: rgba(8, 44, 87, 0.9);
    color: var(--white);
    font-size: 0.76rem;
    font-weight: 800;
    left: 18px;
    padding: 8px 12px;
    position: absolute;
    top: 18px;
}

.project-body {
    padding: 25px;
}

.project-number {
    color: var(--gold);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 2.2rem;
    line-height: 1;
}

.project-body h3 {
    color: var(--dark-navy);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.55rem;
    font-weight: 700;
}

.project-meta {
    color: var(--ink-muted);
    display: flex;
    flex-wrap: wrap;
    font-size: 0.9rem;
    gap: 14px;
    margin: 18px 0;
}

.why-band {
    background: var(--dark-navy);
    color: var(--white);
    overflow: hidden;
    position: relative;
}

.why-band .section-title {
    color: var(--white);
}

.why-band .section-copy {
    color: rgba(255, 255, 255, 0.72);
}

.why-list {
    display: grid;
    gap: 0;
}

.why-item {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    display: grid;
    gap: 22px;
    grid-template-columns: 60px 1fr;
    padding: 28px 0;
}

.why-item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.why-number {
    color: var(--gold);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 2.1rem;
}

.why-item h3 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 800;
}

.why-item p {
    color: rgba(255, 255, 255, 0.68);
    margin: 0;
}

.stats-band {
    background: linear-gradient(90deg, var(--primary-blue), var(--dark-navy));
    color: var(--white);
    padding: 64px 0;
}

.stat-item {
    border-left: 1px solid rgba(255, 255, 255, 0.18);
    padding: 10px 26px;
}

.stat-value {
    color: var(--gold);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2.4rem, 5vw, 4.8rem);
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    color: rgba(255, 255, 255, 0.76);
    font-weight: 700;
    margin-top: 10px;
}

.testimonial-card,
.value-card,
.goal-card,
.roadmap-item,
.award-card,
.contact-info-card,
.blog-card {
    border: 1px solid rgba(8, 44, 87, 0.1);
    border-radius: 8px;
    background: var(--white);
}

.testimonial-card {
    box-shadow: 0 18px 60px rgba(8, 44, 87, 0.09);
    padding: 36px;
}

.testimonial-card i {
    color: var(--gold);
    font-size: 2rem;
}

.testimonial-card blockquote {
    color: var(--dark-navy);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.5rem;
    line-height: 1.45;
    margin: 18px 0 26px;
}

.quote-person {
    align-items: center;
    display: flex;
    gap: 14px;
}

.quote-person img {
    border-radius: 50%;
    height: 52px;
    object-fit: cover;
    width: 52px;
}

.blog-card {
    height: 100%;
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.blog-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-8px);
}

.blog-card img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
    width: 100%;
}

.blog-body {
    padding: 25px;
}

.blog-meta {
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.blog-body h3 {
    color: var(--dark-navy);
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.35;
    margin: 12px 0;
}

.inquiry-section {
    background: var(--silver-gray);
}

.form-panel {
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: clamp(26px, 4vw, 48px);
}

.form-control,
.form-select {
    border: 1px solid rgba(8, 44, 87, 0.16);
    border-radius: 4px;
    min-height: 52px;
    padding: 13px 15px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(201, 161, 74, 0.18);
}

textarea.form-control {
    min-height: 134px;
}

.invalid-feedback {
    display: block;
}

.map-frame {
    border: 0;
    border-radius: 8px;
    filter: saturate(0.92);
    min-height: 420px;
    width: 100%;
}

.page-hero {
    align-items: flex-end;
    background-position: center;
    background-size: cover;
    color: var(--white);
    display: flex;
    min-height: 58vh;
    padding: 150px 0 88px;
    position: relative;
}

.page-hero::before {
    background: linear-gradient(90deg, rgba(5, 19, 39, 0.82), rgba(8, 44, 87, 0.3));
    content: "";
    inset: 0;
    position: absolute;
}

.page-hero .container-xl {
    position: relative;
    z-index: 2;
}

.page-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2.8rem, 7vw, 6.5rem);
    font-weight: 700;
    line-height: 0.98;
    margin: 0;
}

.breadcrumb-line {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 700;
    margin-top: 18px;
}

.timeline {
    border-left: 1px solid var(--line);
    margin-left: 18px;
    padding-left: 34px;
}

.timeline-item {
    margin-bottom: 34px;
    position: relative;
}

.timeline-item::before {
    background: var(--gold);
    border: 5px solid var(--white);
    box-shadow: 0 0 0 1px rgba(201, 161, 74, 0.35);
    content: "";
    height: 18px;
    left: -44px;
    position: absolute;
    top: 4px;
    width: 18px;
}

.timeline-year {
    color: var(--gold);
    font-weight: 900;
    letter-spacing: 0.12em;
}

.timeline-item h3 {
    color: var(--dark-navy);
    font-size: 1.22rem;
    font-weight: 800;
    margin-top: 6px;
}

.team-card {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 14px 45px rgba(8, 44, 87, 0.08);
    overflow: hidden;
}

.team-card img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    width: 100%;
}

.team-card div {
    padding: 22px;
}

.value-card,
.goal-card,
.roadmap-item,
.award-card,
.contact-info-card {
    height: 100%;
    padding: 28px;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.value-card:hover,
.goal-card:hover,
.roadmap-item:hover,
.award-card:hover,
.contact-info-card:hover {
    box-shadow: 0 18px 52px rgba(8, 44, 87, 0.1);
    transform: translateY(-6px);
}

.value-card i,
.goal-card i,
.roadmap-item i,
.award-card i,
.contact-info-card i {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 18px;
}

.roadmap-item {
    display: grid;
    gap: 16px;
    grid-template-columns: 72px 1fr;
}

.roadmap-year {
    align-items: center;
    background: var(--dark-navy);
    color: var(--white);
    display: inline-flex;
    font-weight: 900;
    height: 58px;
    justify-content: center;
    width: 58px;
}

.contact-info-card a {
    color: var(--dark-navy);
    font-weight: 800;
}

.site-footer {
    background: #061f3d;
    color: var(--white);
    padding-top: 88px;
}

.footer-text,
.footer-contact,
.footer-list,
.site-footer p {
    color: rgba(255, 255, 255, 0.72);
}

.footer-title {
    color: var(--white);
    font-size: 0.96rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    margin-bottom: 22px;
    text-transform: uppercase;
}

.footer-list,
.footer-contact {
    display: grid;
    gap: 13px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-contact li {
    align-items: flex-start;
    display: flex;
    gap: 12px;
}

.footer-contact i,
.footer-list a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

.social-links a {
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: inline-flex;
    height: 42px;
    justify-content: center;
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
    width: 42px;
}

.social-links a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark-navy);
}

.contact-page .social-links a {
    border-color: rgba(8, 44, 87, 0.16);
    color: var(--dark-navy);
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
    color: var(--white);
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.56);
}

.footer-bottom {
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    justify-content: space-between;
    margin-top: 70px;
    padding: 26px 0;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.68);
    margin-left: 22px;
}

.whatsapp-float {
    align-items: center;
    background: #25D366;
    border-radius: 50%;
    bottom: 24px;
    box-shadow: 0 15px 34px rgba(15, 114, 60, 0.32);
    color: var(--white);
    display: inline-flex;
    font-size: 1.7rem;
    height: 58px;
    justify-content: center;
    position: fixed;
    right: 24px;
    transition: transform 0.25s ease;
    width: 58px;
    z-index: 1050;
}

.whatsapp-float:hover {
    color: var(--white);
    transform: translateY(-4px) scale(1.03);
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 991.98px) {
    .site-header {
        background: rgba(8, 44, 87, 0.96);
        padding: 8px 0;
    }

    .navbar-collapse {
        padding: 20px 0 12px;
    }

    .navbar-dark .navbar-nav .nav-link {
        padding-left: 0;
    }

    .navbar-dark .navbar-nav .nav-link::after {
        left: 0;
        width: 54px;
    }

    .hero-meta,
    .carousel-control-next,
    .carousel-control-prev {
        display: none;
    }

    .hero-slide {
        min-height: 760px;
        padding-top: 130px;
    }

    .section-pad {
        padding: 82px 0;
    }

    .image-stack {
        min-height: auto;
    }

    .image-stack img,
    .image-stack .image-secondary {
        height: auto;
        position: static;
        width: 100%;
    }

    .image-stack .image-secondary {
        margin-top: 18px;
    }

    .intro-badge {
        bottom: 18px;
        left: 18px;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: clamp(3rem, 16vw, 5rem);
    }

    .hero-actions .btn {
        width: 100%;
    }

    .service-tile,
    .why-item,
    .roadmap-item {
        grid-template-columns: 1fr;
    }

    .stat-item {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.18);
        padding: 26px 0;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .footer-bottom a {
        margin: 0 18px 0 0;
    }
}
