:root {
    --navy: rgb(8 14 11);
    --gold: #c9a84c;
    --gold-light: #e0c77a;
    --white: #ffffff;
    --light-bg: #f8f6f2;
}

body {
    font-family: 'Inter', 'Segoe UI', Roboto, sans-serif;
    background: var(--white);
    color: #1e2b39;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-weight: 600;
    letter-spacing: -0.02em;
}

.gold-text {
    color: var(--gold);
}

.navy-bg {
    background: var(--navy);
}

.gold-bg {
    background: var(--gold);
}

.btn-gold {
    background: var(--gold);
    color: var(--navy);
    font-weight: 600;
    padding: 0.6rem 1.6rem;
    border-radius: 50px;
    transition: 0.3s;
    border: none;
}

.btn-gold:hover {
    background: var(--gold-light);
    color: #0a1a2b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 168, 76, 0.4);
}

.btn-outline-gold {
    border: 2px solid var(--gold);
    color: var(--gold);
    background: transparent;
    border-radius: 50px;
    font-weight: 600;
    padding: 0.6rem 1.6rem;
    transition: 0.3s;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--navy);
}

.section-title {
    font-size: 2.4rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 70px;
    height: 4px;
    background: var(--gold);
    border-radius: 4px;
}

.section-title-center::after {
    left: 50%;
    transform: translateX(-50%);
}

/* top bar */
.top-bar {
    background: #0c1d2e;
    color: #ddd;
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid #1e3347;
}

.top-bar a {
    color: #ddd;
    text-decoration: none;
    margin-right: 1.5rem;
    transition: 0.2s;
}

.top-bar a:hover {
    color: var(--gold);
}

.top-bar .social-icons a {
    margin-right: 0.9rem;
    font-size: 1rem;
}

/* navbar */
.navbar-custom {
    background: rgb(8 14 11);
    backdrop-filter: blur(6px);
    padding: 12px 0;
    transition: 0.3s;
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.navbar-custom .navbar-brand {
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--white);
    letter-spacing: -0.5px;
}

.navbar-custom .navbar-brand span {
    color: var(--gold);
}

.navbar-custom .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    margin: 0 6px;
    transition: 0.2s;
    font-size: 20px;
}

.navbar-custom .nav-link:hover {
    color: var(--gold) !important;
}

.navbar-custom .btn-call {
    background: var(--gold);
    color: var(--navy);
    border-radius: 50px;
    padding: 0.45rem 1.5rem;
    font-weight: 600;
    transition: 0.3s;
    border: none;
}

.navbar-custom .btn-call:hover {
    background: #dbb95a;
    transform: scale(1.03);
}

/* hero carousel */
.hero-slide {
    height: 92vh;
    min-height: 520px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-slide .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 26, 43, 0.75) 0%, rgba(10, 26, 43, 0.4) 100%);
}

.hero-slide .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-slide h1 {
    font-size: 4.2rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-slide p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .hero-slide h1 {
        font-size: 2.6rem;
    }

    .hero-slide p {
        font-size: 1.1rem;
    }
}

/* cards */
.service-card {
    border: none;
    border-radius: 20px;
    transition: 0.3s;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
    padding: 1.8rem 1rem;
    text-align: center;
    background: #fff;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(10, 26, 43, 0.08);
    border-bottom: 4px solid var(--gold);
}

.service-card i {
    font-size: 2.8rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

/* gallery */
.gallery-img {
    border-radius: 16px;
    overflow: hidden;
    transition: 0.3s;
    cursor: pointer;
    position: relative;
}

.gallery-img img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: 0.4s;
}

.gallery-img:hover img {
    transform: scale(1.05);
}

/* process */
.process-step {
    background: #fff;
    border-radius: 40px 12px 12px 40px;
    padding: 1.8rem 1.8rem 1.8rem 3.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.02);
    border-left: 6px solid var(--gold);
    margin-bottom: 1.2rem;
    transition: 0.2s;
}

.process-step:hover {
    background: #fcf9f2;
}

/* contact */
.contact-card {
    background: #fff;
    border-radius: 28px;
    padding: 2rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
}

.map-embed {
    border-radius: 24px;
    overflow: hidden;
    height: 240px;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* footer */
.footer {
    background: rgb(8 14 11);
    color: #ced9e3;
    padding-top: 3.5rem;
    padding-bottom: 1.5rem;
}

.footer a {
    color: #bccbd8;
    text-decoration: none;
    transition: 0.2s;
}

.footer a:hover {
    color: var(--gold);
}

/* floating buttons */
.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transition: 0.3s;
    border: none;
}

.floating-btn.call {
    bottom: 100px;
    background: var(--gold);
    box-shadow: 0 10px 30px #c9a84c80;
}

.floating-btn:hover {
    transform: scale(1.08);
    color: #fff;
}

/* misc */
.counter-number {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--gold);
}

.bg-soft-gold {
    background: #080e0b7a;
}

.star-gold {
    color: var(--gold);
}

.testimonial-card {
    background: #fff;
    border-radius: 24px;
    padding: 1.8rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.02);
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--gold);
    color: var(--navy);
    font-weight: 600;
}

.faq-accordion .accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(201, 168, 76, 0.3);
}

/* modal */
.modal-content {
    border-radius: 15px;
}

.modal-header {
    background: linear-gradient(135deg, #cfae50, #cfae50);
}

.form-control,
.form-select {
    height: 50px;
}

textarea.form-control {
    height: auto;
}

.btn-primary {
    height: 50px;
    font-weight: 600;
}

/* ── STATS ── */
.stats-bar {
    background: var(--navy2);
    padding: 48px 5%
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    margin: 0 auto
}

.stat-item {
    text-align: center;
    padding: 20px;
    border-right: 1px solid rgba(201, 151, 58, 0.12)
}

.stat-item:last-child {
    border-right: none
}

.stat-num {
    font-family: var(--ff-data);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 600;
    color: var(--gold);
    line-height: 1
}

.stat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 8px
}

.section {
    padding: 100px 5%
}

.section-label {
    font-size: 11px;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 16px
}

.section-title {
    font-family: var(--ff-display);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 600;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 20px
}

.section-title-white {
    color: var(--white)
}

/* ===========================
   STATS SECTION
=========================== */

.stats-bar {
    background: #080e0b;
    padding: 50px 5%;
}

.stats-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.stat-item {
    text-align: center;
    padding: 25px 15px;
    border-right: 1px solid rgba(201, 151, 58, .15);
}

.stat-item:last-child {
    border-right: none;
}

.stat-num {
    font-family: var(--ff-data);
    font-size: clamp(20px, 4vw, 30px);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    margin-top: 10px;
    font-size: 12px;
    color: rgba(255, 255, 255, .6);
    letter-spacing: .1em;
    text-transform: uppercase;
}

/* ===========================
   Tablet
=========================== */

@media (max-width:991px) {

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(201, 151, 58, .15);
    }

    .stat-item:last-child {
        grid-column: 1/-1;
        border-bottom: none;
    }

}

/* ===========================
   Mobile
=========================== */

@media (max-width:576px) {

    .stats-bar {
        padding: 40px 20px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .stat-item {
        padding: 22px 10px;
        border-right: none;
        border-bottom: 1px solid rgba(201, 151, 58, .15);
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .stat-num {
        font-size: 36px;
    }

    .stat-label {
        font-size: 11px;
    }

}

/* ── AWARDS ── */
.awards-section {
    padding: 60px 5%;
    background: var(--cream)
}

.awards-strip {
    display: flex;
    gap: 48px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto
}

.award-item {
    text-align: center;
    opacity: 0.5;
    transition: opacity 0.3s
}

.award-item:hover {
    opacity: 1
}

.award-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 8px
}

.award-name {
    font-size: 11px;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: 0.1em;
    text-transform: uppercase
}