/* ============================================================
   SAO BẮC ĐẨU CONSTRUCTION — STYLE.CSS
   Version 2.0 — Full synchronized design system
   ============================================================ */

/* ===== DESIGN TOKENS ===== */
:root {
    --primary: #0f2b4a;
    --primary-dark: #081c32;
    --primary-mid: #1a3c5e;
    --accent: #c9963e;
    --accent-light: #e8b870;
    --accent-dark: #a77930;
    --white: #ffffff;
    --light-bg: #f4f6f9;
    --border-light: rgba(26, 46, 74, 0.1);
    --text-dark: #1a2e4a;
    --text-muted: #6b7f96;
    --text-light: rgba(255, 255, 255, 0.75);
    --shadow-sm: 0 2px 12px rgba(15, 43, 74, 0.08);
    --shadow-md: 0 6px 28px rgba(15, 43, 74, 0.12);
    --shadow-lg: 0 16px 56px rgba(15, 43, 74, 0.18);
    --radius: 8px;
    --navbar-h: 82px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

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

a {
    transition: var(--transition);
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}


/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--primary);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.preloader.preloader--hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader .star-icon {
    font-size: 54px;
    color: var(--accent);
    animation: preloader-pulse 1.2s infinite ease-in-out;
}

.preloader-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    max-width: min(360px, 78vw);
    padding: 12px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
    animation: preloader-pulse 1.2s infinite ease-in-out;
}

.preloader-logo {
    width: auto;
    max-width: min(320px, 70vw);
    max-height: 92px;
    object-fit: contain;
    border-radius: 18px;
    filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.28));
}

@keyframes preloader-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}


/* ===== NAVBAR ===== */
.site-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--navbar-h);
    background: var(--primary);
    z-index: 9000;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.18);
    transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.site-navbar.scrolled {
    height: 70px;
    background: rgba(8, 28, 50, 0.97);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(12px);
}

.site-navbar .container {
    width: 100%;
    max-width: 1300px;
    padding: 0 24px;
    margin: 0 auto;
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-actions .btn {
    border-radius: 999px;
}

/* Logo */
.site-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--white);
}

.logo-icon {
    width: 46px;
    height: 46px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(201, 150, 62, 0.45);
    transition: var(--transition);
}

.logo-icon--image {
    width: clamp(225px, 19vw, 310px);
    height: auto;
    min-height: 52px;
    padding: 6px 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.logo-icon i {
    line-height: 1;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-icon--image .logo-image {
    display: block;
    height: auto;
    max-height: 78px;
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.22));
}

.logo-icon--sm {
    width: 38px;
    height: 38px;
    font-size: 18px;
}

.logo-icon--image.logo-icon--sm {
    width: clamp(132px, 42vw, 176px);
    min-height: 32px;
    padding: 4px 0;
}

.logo-icon--footer {
    width: 45px;
    height: 45px;
    font-size: 22px;
}

.logo-icon--image.logo-icon--footer {
    width: clamp(220px, 21vw, 295px);
    min-height: 50px;
    padding: 4px 0;
}

.logo-image--sm,
.logo-image--footer {
    object-fit: contain;
}

.site-logo a:hover .logo-icon {
    transform: rotate(20deg) scale(1.08);
}

.site-logo a:hover .logo-icon--image {
    transform: scale(1.03);
}

/* Nav Menu */
.site-navigation .site-menu {
    display: flex;
    list-style: none;
    gap: 4px;
    margin: 0;
    padding: 0;
}


.site-menu li a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    font-size: 14.5px;
    font-weight: 500;
    letter-spacing: 0.3px;
    padding: 9px 16px;
    border-radius: 999px;
    transition: var(--transition);
}

.site-navigation .site-menu>li>a,
.site-navigation .site-menu>li>.nav-link.dropdown-toggle {
    color: rgba(255, 255, 255, 0.88);
}

.nav-link-pill i {
    font-size: 13px;
    opacity: 0.92;
}

.nav-link-icon-only {
    min-width: 44px;
    padding-left: 14px;
    padding-right: 14px;
}

.nav-link-icon-only span {
    display: none;
}

.site-menu li a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transition: width 0.35s ease;
}

.site-menu li a:hover,
.site-menu li a.active {
    color: var(--accent-light);
    background: rgba(201, 150, 62, 0.08);
}

.site-menu li a:hover::after,
.site-menu li a.active::after {
    width: 55%;
}

.site-menu .dropdown-menu {
    min-width: 250px;
    margin-top: 10px;
    padding: 8px;
    border: 1px solid rgba(26, 46, 74, 0.08);
    border-radius: 14px;
    background: var(--white);
    box-shadow: 0 18px 44px rgba(26, 46, 74, 0.14);
}

.site-menu .dropdown-menu li a,
.site-menu .dropdown-menu .dropdown-item {
    display: block;
    color: var(--text-dark) !important;
    background: transparent;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.site-menu .dropdown-menu li a::after,
.site-menu .dropdown-menu .dropdown-item::after {
    display: none;
}

.site-menu .dropdown-menu li a:hover,
.site-menu .dropdown-menu li a:focus,
.site-menu .dropdown-menu .dropdown-item:hover,
.site-menu .dropdown-menu .dropdown-item:focus {
    color: var(--primary) !important;
    background: rgba(201, 150, 62, 0.14);
}

.offcanvas .site-navigation .site-menu li a,
.offcanvas .site-navigation .site-menu li a.nav-link,
.mobile-menu .site-menu li a {
    color: var(--text-dark) !important;
    background: transparent;
}

.offcanvas .site-navigation .site-menu li a:hover,
.offcanvas .site-navigation .site-menu li a.active,
.offcanvas .site-navigation .site-menu li a.nav-link:hover,
.offcanvas .site-navigation .site-menu li a.nav-link.active,
.mobile-menu .site-menu li a:hover,
.mobile-menu .site-menu li a.active {
    color: var(--primary) !important;
    background: rgba(201, 150, 62, 0.14);
}

.offcanvas,
.offcanvas .offcanvas-body,
.offcanvas .site-navigation,
.offcanvas .site-menu {
    color: var(--text-dark);
}

.nav-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-weight: 700;
    letter-spacing: 0.2px;
    transition: var(--transition);
}

.nav-action-btn:hover {
    background: rgba(201, 150, 62, 0.15);
    border-color: rgba(201, 150, 62, 0.45);
    color: var(--accent-light);
}

.nav-action-btn i {
    font-size: 13px;
}

.nav-action-btn--icon {
    width: 38px;
    min-width: 38px;
    padding: 0;
}

.nav-action-btn--filled {
    background: var(--white);
    border-color: var(--white);
    color: var(--primary);
}

.nav-action-btn--filled:hover {
    background: var(--accent-light);
    border-color: var(--accent-light);
    color: var(--primary-dark);
}

.nav-action-btn--alert {
    background: rgba(220, 53, 69, 0.12);
    border-color: rgba(220, 53, 69, 0.28);
    color: #ffd8dd;
}

.nav-action-btn--alert:hover {
    background: rgba(220, 53, 69, 0.2);
    border-color: rgba(220, 53, 69, 0.4);
    color: #fff1f3;
}

/* Mobile toggle */
.site-menu-toggle {
    color: var(--white) !important;
    font-size: 26px;
}

.site-menu-toggle:hover {
    color: var(--accent-light) !important;
}


/* ===== SECTION TITLE ===== */
.section-title {
    margin-bottom: 56px;
}

.section-title h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 14px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 52px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
    margin: 12px auto 0;
}

.section-title.text-left h2::after {
    margin-left: 0;
}

.section-title p {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.75;
}

.section-title.text-left p {
    margin-left: 0;
}


/* ===== PAGE HEADER (section-top) ===== */
.section-top {
    background: linear-gradient(160deg, var(--primary) 0%, var(--primary-mid) 60%, #1d4168 100%);
    padding: calc(var(--navbar-h) + 70px) 0 70px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.section-top::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.section-top-title h1 {
    font-size: 50px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 14px;
    position: relative;
}

.section-top-title>p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 24px;
    position: relative;
}

.breadcrumb-nav {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    position: relative;
}

.breadcrumb-nav a {
    color: var(--accent-light);
    text-decoration: none;
}

.breadcrumb-nav a:hover {
    color: var(--white);
}

.breadcrumb-nav strong {
    color: var(--white);
}

.breadcrumb-nav span {
    opacity: 0.45;
}


/* ===== BUTTONS ===== */
.btn-primary-custom {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 13px 34px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid var(--accent);
    transition: var(--transition);
}

.btn-primary-custom:hover {
    background: transparent;
    color: var(--accent);
    text-decoration: none;
}

.btn-outline-custom {
    display: inline-block;
    background: transparent;
    color: var(--white);
    padding: 13px 34px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.55);
    transition: var(--transition);
}

.btn-outline-custom:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    text-decoration: none;
}

.btn-cta {
    display: inline-block;
    background: var(--white);
    color: var(--accent-dark);
    padding: 14px 38px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
}

.btn-cta:hover {
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
}


/* ===== FOOTER ===== */
.footer-area {
    background: var(--primary-dark);
    padding: 80px 0 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-logo-wrap {
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 22px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--white);
}

.footer-heading {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

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

.footer-links li,
.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    text-decoration: none;
    padding: 5px 0;
    transition: var(--transition);
    line-height: 1.9;
}

.footer-links li a,
.footer-links a:hover {
    color: rgba(255, 255, 255, 0.85);
    padding-left: 6px;
}

.footer-contact-info {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-contact-info li {
    display: flex;
    gap: 13px;
    align-items: flex-start;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 14px;
    line-height: 1.65;
}

.footer-contact-info li i {
    color: var(--accent);
    font-size: 14px;
    margin-top: 3px;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}

.footer-bottom {
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
}


/* ===== SCROLL TO TOP ===== */
#scrollTop,
.scrolltop-mover,
#scrolltopcontrol {
    background: var(--accent) !important;
    border-radius: 6px !important;
}


/* ===== UTILITY ===== */
.text-accent {
    color: var(--accent);
}

.bg-primary {
    background: var(--primary);
}

.bg-light-bg {
    background: var(--light-bg);
}

.mr-3 {
    margin-right: 12px;
}

.pl-0 {
    padding-left: 0 !important;
}

.mb-4 {
    margin-bottom: 24px;
}

/* Animate.css / WOW trigger */
.wow {
    visibility: hidden;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1199px) {
    .section-title h2 {
        font-size: 34px;
    }

    .section-top-title h1 {
        font-size: 40px;
    }
}

@media (max-width: 991px) {
    :root {
        --navbar-h: 70px;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .section-top-title h1 {
        font-size: 34px;
    }

    .section-top {
        padding: calc(var(--navbar-h) + 50px) 0 50px;
    }
}

@media (max-width: 767px) {
    .section-title h2 {
        font-size: 26px;
    }

    .section-top-title h1 {
        font-size: 28px;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .section-top {
        padding: calc(var(--navbar-h) + 40px) 0 40px;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        padding: 12px 26px;
        font-size: 13px;
    }

    .footer-area {
        padding-top: 56px;
    }
}

<style>

/* ===== HOME HERO ===== */
.home_bg {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--primary);
    /* Bù navbar fixed 72px, padding thêm top để nội dung không bị che */
    padding-top: var(--navbar-h);
}

.home_bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, rgba(8, 28, 50, 0.88) 0%, rgba(15, 43, 74, 0.70) 100%);
    z-index: 1;
}

.home_bg .container {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(201, 150, 62, 0.18);
    border: 1px solid rgba(201, 150, 62, 0.5);
    color: var(--accent-light);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 7px 20px;
    border-radius: 30px;
    margin-bottom: 26px;
}

.hero-text h2 {
    font-size: 58px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.12;
    margin-bottom: 22px;
}

.hero-text h2 span {
    color: var(--accent-light);
}

.hero-text p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.72);
    max-width: 600px;
    margin: 0 auto 36px;
}

.hero-stats {
    display: flex;
    gap: 0;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    justify-content: center;
}

.hero-stat-item {
    text-align: center;
    flex: 1;
    padding: 0 20px;
    position: relative;
}

.hero-stat-item+.hero-stat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(255, 255, 255, 0.12);
}

.hero-stat-item .num {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 800;
    color: var(--accent-light);
    line-height: 1;
}

.hero-stat-item .label {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 6px;
    letter-spacing: 0.3px;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255, 255, 255, 0.45);
    font-size: 12px;
    text-align: center;
    cursor: pointer;
    animation: hero-bounce 2s infinite;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@keyframes hero-bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-8px);
    }
}

.hero-scroll i {
    display: block;
    font-size: 18px;
    margin-top: 8px;
}

/* ===== SERVICES ===== */
.services-section {
    padding: 96px 0;
    background: var(--light-bg);
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border-bottom: 3px solid transparent;
    transition: var(--transition);
    height: 100%;
    margin-bottom: 24px;
}

.service-card:hover {
    transform: translateY(-8px);
    border-bottom-color: var(--accent);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 26px;
    color: var(--accent-light);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-6deg);
    background: var(--accent);
    color: var(--white);
}

.service-card h4 {
    font-size: 19px;
    margin-bottom: 12px;
    color: var(--primary);
}

.service-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.75;
    margin: 0;
}

/* ===== FEATURED PROJECTS ===== */
.featured-projects {
    padding: 96px 0;
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    margin-bottom: 24px;
    height: 300px;
    cursor: pointer;
}

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

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

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 28, 50, 0.92) 0%, transparent 58%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 26px;
}

.project-overlay .tag {
    background: var(--accent);
    color: var(--white);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 13px;
    border-radius: 3px;
    display: inline-block;
    margin-bottom: 10px;
    align-self: flex-start;
}

.project-overlay h4 {
    color: var(--white);
    font-size: 20px;
    margin: 0 0 4px;
}

.project-overlay p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    margin: 0;
}

/* ===== WHY CHOOSE US ===== */
.why-us {
    background: var(--primary);
    padding: 96px 0;
}

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

.why-us .section-title h2::after {
    background: var(--accent);
}

.why-us .section-title p {
    color: rgba(255, 255, 255, 0.6);
}

.why-item {
    display: flex;
    gap: 20px;
    margin-bottom: 34px;
    align-items: flex-start;
}

.why-item-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: rgba(201, 150, 62, 0.12);
    border: 1px solid rgba(201, 150, 62, 0.28);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--accent-light);
    transition: var(--transition);
}

.why-item:hover .why-item-icon {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.why-item-content h5 {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.why-item-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.7;
    margin: 0;
}

.why-us-img {
    border-radius: var(--radius);
    overflow: visible;
    position: relative;
}

.why-us-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--accent);
    color: var(--white);
    padding: 22px 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
}

.experience-badge .years {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .years-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    margin-top: 4px;
}

/* ===== TESTIMONIALS ===== */
.testimonial-section {
    background: var(--light-bg);
    padding: 96px 0;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow-sm);
    position: relative;
    height: 100%;
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 18px;
    left: 26px;
    font-family: 'Playfair Display', serif;
    font-size: 88px;
    line-height: 1;
    color: var(--accent);
    opacity: 0.18;
}

.testimonial-card p {
    font-size: 14.5px;
    line-height: 1.85;
    color: var(--text-muted);
    margin-bottom: 24px;
    padding-top: 22px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
}

.testimonial-author h6 {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 2px;
}

.testimonial-author span {
    font-size: 12.5px;
    color: var(--text-muted);
}

/* ===== PARTNERS ===== */
.partners-section {
    padding: 64px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    opacity: 0.4;
    transition: var(--transition);
    filter: grayscale(100%);
}

.partner-logo:hover {
    opacity: 1;
    filter: none;
}

.partner-logo img {
    max-height: 48px;
    max-width: 130px;
    object-fit: contain;
}

/* ===== CTA ===== */
.cta-section {
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 50%, var(--accent-light) 100%);
    padding: 88px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '★';
    position: absolute;
    top: -40px;
    right: 8%;
    font-size: 220px;
    color: rgba(255, 255, 255, 0.06);
    font-weight: bold;
    pointer-events: none;
}

.cta-section h2 {
    color: var(--white);
    font-size: 40px;
    margin-bottom: 16px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 17px;
    margin-bottom: 36px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== MOBILE NAV FIX ===== */
@media (max-width: 1199px) {

    .site-navigation .site-menu>li>a,
    .site-navigation .site-menu>li>.nav-link.dropdown-toggle,
    .site-menu li a {
        color: var(--text-dark) !important;
    }

    .site-menu .dropdown-menu {
        background: #fff;
    }

    .site-menu .dropdown-menu li a,
    .site-menu .dropdown-menu .dropdown-item {
        color: var(--text-dark) !important;
    }
}

</style>
