:root {
    --navy: #0a1f44;
    --gold: #d4af37;
    --white: #ffffff;
    --off-white: #ffffff;
    --text-dark: #0a1f44;
}

body {
    font-family: "Poppins", sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
}

.bg-navy {
    background-color: var(--navy);
}

.navbar-brand {
    color: var(--white);
    font-weight: 700;
    letter-spacing: 0.06rem;
}

.navbar .nav-link {
    color: var(--navy) !important;
    font-weight: 600;
    margin-left: 0.5rem;
}

.navbar .nav-link.active,
.navbar .nav-link:hover {
    color: var(--gold) !important;
}

.dropdown-menu {
    border: 1px solid rgba(10, 31, 68, 0.12);
    border-top: 3px solid var(--gold);
    border-radius: 0.5rem;
}

.dropdown-item {
    padding: 0.55rem 1rem;
    font-weight: 500;
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: rgba(212, 175, 55, 0.15);
    color: var(--navy);
}

.hero-section {
    position: relative;
    overflow: visible;
    clip-path: polygon(0 0, 100% 0, 100% 95%, 0% 100%);
}

.hero-section .carousel-item {
    min-height: 650px;
    height: 90vh;
}

.hero-section .carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

.hero-caption {
    bottom: 17%;
    max-width: 710px;
}

.hero-kicker {
    display: inline-block;
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.08rem;
    margin-bottom: 0.9rem;
}

.hero-caption h1 {
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-caption p {
    font-size: 1.08rem;
    margin-bottom: 1.4rem;
}

.btn-gold {
    background-color: var(--gold);
    color: var(--navy);
    border: 1px solid var(--gold);
    font-weight: 600;
}

.btn-gold:hover {
    background-color: #d4af37;
    color: var(--white);
    border-color: #d4af37;
}

.section-heading {
    color: var(--navy);
    margin-bottom: 0.8rem;
}

.section-subtitle {
    color: var(--navy);
}

.section-alt {
    background-color: var(--off-white);
}

.info-card,
.value-prop-card,
.land-card,
.team-card,
.service-card,
.report-card {
    border: 0;
    border-radius: 0.9rem;
    box-shadow: 0 12px 25px rgba(15, 34, 71, 0.08);
}

.info-card .icon-badge,
.value-prop-card .icon-badge {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    background-color: rgba(212, 175, 55, 0.2);
    color: var(--navy);
    font-size: 1.25rem;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.contact-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    
}

.contact-icon svg {
    width: 1rem !important;
    height: 1rem !important;
    flex-shrink: 0 !important;
    fill: currentColor !important;
}

.land-card {
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    color: inherit;
}

.land-card img {
    height: 220px;
    object-fit: cover;
}

.land-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 30px rgba(10, 31, 68, 0.15);
}

.link-reset {
    color: inherit;
}

.link-reset:hover {
    color: inherit;
}

.page-hero {
    background: linear-gradient(120deg, rgba(10, 31, 68, 0.96), rgba(10, 31, 68, 0.8)), url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1400&q=80") center/cover no-repeat;
    color: var(--white);
    padding: 5rem 0;
}

.site-footer {
    background-color: var(--navy);
    color: rgba(255, 255, 255, 0.9);
}

.footer-title {
    color: var(--gold);
}

.footer-subtitle {
    color: var(--gold);
    letter-spacing: 0.06rem;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--gold);
}

.contact-info-box {
    background-color: var(--off-white);
    border-left: 4px solid var(--gold);
    border-radius: 0.75rem;
}

.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.2);
}

@media (max-width: 991.98px) {
    .navbar .nav-link {
        margin-left: 0;
        padding-top: 0.65rem;
        padding-bottom: 0.65rem;
    }

    .hero-caption {
        bottom: 10%;
    }
}

/* Dropdown hover behavior */
.navbar-nav .nav-item:hover .dropdown-menu {
    display: block !important;
}

@media (max-width: 767.98px) {
    .hero-section .carousel-item {
        min-height: 460px;
        height: 66vh;
    }

    .hero-caption {
        left: 8%;
        right: 8%;
    }

    .hero-caption p {
        font-size: 0.96rem;
    }

    .hero-caption .btn {
        width: 100%;
    }
}

/* Custom New Hero Styles */
.new-hero {
    height: 100vh;
    min-height: 650px;
}

.title-wrapper {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.8rem, 4.5vw, 3.8rem);
    letter-spacing: 0.05rem;
}

.gold-box {
    background-color: #d4af37;
    color: #ffffff;
    padding: 0 16px;
    font-weight: 800;
    display: inline-block;
}

.white-text {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 800;
    display: inline-block;
}

.hero-bg, .overlay {
    top: 0;
    left: 0;
}

.btn-navy-outline {
    background-color: var(--white);
    color: var(--navy);
    border: 1.5px solid var(--navy);
    transition: all 0.3s ease;
}

.btn-navy-outline:hover {
    background-color: var(--navy) !important;
    color: var(--white) !important;
    border-color: var(--navy) !important;
}

