:root {
    --navy: #0B2341;
    --gold: #D49A00;
    --white: #FFFFFF;
    --light: #F8F9FA;
    --dark: #1E293B;
    --border: #E5E7EB;
    --shadow: 0 20px 45px rgba(11, 35, 65, 0.10);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    background: var(--white);
    line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--navy);
    font-weight: 700;
}

a {
    text-decoration: none;
}

p {
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    border-radius: 1rem;
}

.section {
    padding: 90px 0;
}

.section-sm {
    padding: 60px 0;
}

.section-heading {
    margin-bottom: 2.5rem;
}

.section-heading .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .45rem .9rem;
    border-radius: 999px;
    background: rgba(212, 154, 0, 0.12);
    color: var(--gold);
    font-weight: 600;
    font-size: .9rem;
    margin-bottom: 1rem;
}

.section-heading h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: .75rem;
}

.section-heading p {
    color: #64748b;
    max-width: 700px;
}

.bg-light-section {
    background: var(--light);
}

.text-gold {
    color: var(--gold) !important;
}

.btn-primary,
.btn-outline-primary,
.btn-gold {
    border-radius: 999px;
    padding: .8rem 1.4rem;
    font-weight: 600;
    transition: all .25s ease;
}

.btn-primary {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
}

.btn-gold {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

.btn-gold:hover {
    background: #c08600;
    color: var(--navy);
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--navy);
    border-color: var(--navy);
}

.btn-outline-primary:hover {
    background: var(--navy);
    color: var(--white);
}

.topbar {
    background: var(--navy);
    color: rgba(255, 255, 255, .9);
    padding: .7rem 0;
    font-size: .95rem;
}

.topbar a {
    color: inherit;
}

.topbar .contact-pill {
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 999px;
    padding: .3rem .8rem;
}

.navbar {
    padding: 1rem 0;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 30px rgba(11, 35, 65, .05);
}

.navbar-brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
}

.navbar-brand span {
    color: var(--gold);
}

.navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 600;
    margin: 0 .3rem;
    position: relative;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color: var(--gold);
}

.hero {
    padding: 60px 0 90px;
    background: linear-gradient(120deg, rgba(11, 35, 65, .97), rgba(11, 35, 65, .78)), url('https://images.unsplash.com/photo-1581092921461-eab62e97a780?auto=format&fit=crop&w=1600&q=80') center/cover;
    color: var(--white);
}

.hero h1 {
    color: var(--white);
    font-size: clamp(2.2rem, 4vw, 4rem);
    margin-bottom: 1rem;
}

.hero .lead {
    font-size: 1.08rem;
    color: rgba(255, 255, 255, .85);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .45rem .85rem;
    border-radius: 999px;
    background: rgba(212, 154, 0, .2);
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1.2rem;
}

.hero-card {
    background: rgba(255, 255, 255, .95);
    border-radius: 1.2rem;
    box-shadow: var(--shadow);
    color: var(--dark);
    padding: 1.4rem;
}

.hero-card ul {
    padding-left: 1rem;
}

.card-elevated {
    border: 1px solid var(--border);
    border-radius: 1.2rem;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    background: var(--white);
    transition: transform .25s ease, box-shadow .25s ease;
}

.card-elevated:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(11, 35, 65, .12);
}

.icon-box {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 154, 0, .15), rgba(11, 35, 65, .08));
    color: var(--navy);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.stats-card {
    border-radius: 1.2rem;
    padding: 1.6rem;
    background: linear-gradient(135deg, var(--navy), #123a5d);
    color: var(--white);
    box-shadow: var(--shadow);
}

.stats-card .number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
}

.timeline-item {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1.4rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 5px rgba(212, 154, 0, .14);
}

.list-check li {
    margin-bottom: .7rem;
}

.list-check li::before {
    content: '✓';
    color: var(--gold);
    font-weight: 700;
    margin-right: .6rem;
}

.footer {
    background: var(--navy);
    color: rgba(255, 255, 255, .85);
    padding: 70px 0 20px;
}

.footer h5,
.footer a {
    color: var(--white);
}

.footer a:hover {
    color: var(--gold);
}

.footer .social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    margin-right: .65rem;
}

.page-hero {
    background: linear-gradient(135deg, rgba(11, 35, 65, .95), rgba(11, 35, 65, .8));
    color: var(--white);
    padding: 120px 0 70px;
}

.page-hero h1 {
    color: var(--white);
    font-size: clamp(2rem, 3.4vw, 2.9rem);
}

.page-hero .breadcrumb a {
    color: rgba(255, 255, 255, .82);
}

.page-hero .breadcrumb .active {
    color: var(--gold);
}

.floating-action {
    position: fixed;
    right: 20px;
    z-index: 1030;
    display: flex;
    flex-direction: column;
    gap: .8rem;
}

.floating-action a {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    color: var(--white);
}

.floating-action .call-btn {
    background: var(--navy);
}

.floating-action .whatsapp-btn {
    background: #25D366;
}

.scroll-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1030;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy);
    border: none;
    box-shadow: var(--shadow);
    display: none;
}

.testimonial-card {
    border: none;
    background: var(--light);
    border-radius: 1.3rem;
    padding: 1.4rem;
}

.testimonial-card .quote {
    font-size: 2.2rem;
    color: var(--gold);
}

.contact-card {
    border-radius: 1.2rem;
    background: var(--white);
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.map-frame {
    border: 0;
    border-radius: 1rem;
    min-height: 320px;
    width: 100%;
}

.accordion-button:not(.collapsed) {
    background: rgba(212, 154, 0, .12);
    color: var(--navy);
}

.badge-soft {
    background: rgba(212, 154, 0, .15);
    color: var(--navy);
}

.logo-grid img {
    height: 80px;
    object-fit: contain;
    padding: 1rem 1.2rem;
    background: var(--light);
    border-radius: 1rem;
}

.hero-image {
    border-radius: 1.3rem;
    box-shadow: var(--shadow);
}