/* ===========================
   ROOT VARIABLES
=========================== */
:root {
    --primary:       #1a1a1a;
    --primary-dark:  #0a0a0a;
    --primary-light: #333333;
    --gold:          #f47920;
    --gold-light:    #f9b27a;
    --gold-dark:     #c45e0a;
    --white:         #ffffff;
    --light-bg:      #f8f8f8;
    --text-dark:     #1a1a1a;
    --text-muted:    #6c757d;
    --border:        #e0e0e0;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.7;
    width: 100%;
}

/* Prevent Bootstrap rows from causing horizontal overflow on mobile */
.row { --bs-gutter-x: 1.5rem; margin-right: 0; margin-left: 0; }
.container, .container-fluid { padding-right: 15px; padding-left: 15px; }

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* ===========================
   REUSABLE COMPONENTS
=========================== */
.section-heading {
    text-align: center;
    margin-bottom: 60px;
}
.section-heading .tag-pill {
    display: inline-block;
    background: rgba(200,169,74,0.12);
    color: var(--gold-dark);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 14px;
    border: 1px solid rgba(200,169,74,0.35);
}
.section-heading h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 14px;
}
.section-heading .divider {
    width: 55px;
    height: 3px;
    background: var(--gold);
    margin: 0 auto 18px;
    border-radius: 3px;
}
.section-heading p {
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.85;
}

.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: #fff;
    border: 2px solid var(--primary);
    padding: 13px 32px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-primary-custom:hover {
    background: transparent;
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13,36,97,0.2);
}

.btn-gold-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--primary);
    border: 2px solid var(--gold);
    padding: 13px 32px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-gold-custom:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200,169,74,0.35);
}

/* ===========================
   NAVBAR
=========================== */
#mainNav {
    background: #ffffff !important;
    padding: 0;
    box-shadow: 0 2px 16px rgba(0,0,0,0.12);
    transition: all 0.3s;
    z-index: 1050;
}
#mainNav.scrolled {
    padding: 4px 0;
    background: rgba(255,255,255,0.97) !important;
    backdrop-filter: blur(10px);
}
#mainNav .navbar-brand img {
    height: 54px;
    transition: height 0.3s;
}
#mainNav.scrolled .navbar-brand img { height: 46px; }

#mainNav .nav-link {
    color: rgba(26,26,26,0.82) !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.83rem;
    font-weight: 600;
    letter-spacing: 0.6px;
    padding: 26px 13px !important;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}
#mainNav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 18px;
    left: 13px;
    right: 13px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
    border-radius: 2px;
}
#mainNav .nav-link:hover,
#mainNav .nav-link.active {
    color: var(--gold) !important;
}
#mainNav .nav-link:hover::after,
#mainNav .nav-link.active::after {
    transform: scaleX(1);
}

.nav-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--gold) !important;
    color: #ffffff !important;
    border-radius: 50px !important;
    padding: 10px 22px !important;
    font-weight: 700 !important;
    font-size: 0.83rem !important;
    letter-spacing: 0.3px;
    transition: all 0.3s !important;
    white-space: nowrap;
    text-decoration: none;
}
.nav-call-btn::after { display: none !important; }
.nav-call-btn:hover {
    background: var(--gold-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200,169,74,0.45) !important;
}
.nav-call-btn i {
    animation: phoneRing 2s infinite;
}
@keyframes phoneRing {
    0%,100% { transform: rotate(0); }
    10%,30% { transform: rotate(-18deg); }
    20%,40% { transform: rotate(18deg); }
    50% { transform: rotate(0); }
}

.navbar-toggler {
    border: 1.5px solid rgba(0,0,0,0.2);
    padding: 6px 10px;
}
.navbar-toggler-icon { filter: invert(0); }

/* ===========================
   HERO SLIDER
=========================== */
#home { margin-top: 0; }
#heroSlider .carousel-item {
    height: 100vh;
    min-height: 620px;
    position: relative;
    overflow: hidden;
}
.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1);
    transition: transform 8s ease-out;
}
#heroSlider .carousel-item.active .slide-bg {
    transform: scale(1.07);
}
.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(8,24,64,0.88) 0%,
        rgba(13,36,97,0.72) 55%,
        rgba(8,24,64,0.55) 100%
    );
}
.slide-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slide-inner {
    text-align: center;
    padding: 20px;
    max-width: 820px;
    width: 100%;
}
.slide-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--primary);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 7px 22px;
    border-radius: 50px;
    margin-bottom: 22px;
    animation: slideDown 0.8s ease both;
}
.slide-inner h1 {
    font-size: clamp(2rem, 5.5vw, 4rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.18;
    margin-bottom: 18px;
    text-shadow: 2px 4px 12px rgba(0,0,0,0.35);
    animation: slideUp 0.9s ease both 0.15s;
}
.slide-inner h1 span { color: var(--gold); }
.slide-inner p {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    color: rgba(255,255,255,0.88);
    margin-bottom: 36px;
    line-height: 1.9;
    animation: slideUp 1s ease both 0.25s;
}
.slide-inner .hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--primary);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 15px 42px;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid var(--gold);
    transition: all 0.35s ease;
    box-shadow: 0 10px 35px rgba(200,169,74,0.4);
    animation: slideUp 1.1s ease both 0.35s;
}
.slide-inner .hero-btn:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 16px 45px rgba(255,255,255,0.2);
}
.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.45);
    border: 2px solid transparent;
    transition: all 0.35s;
    margin: 0 5px;
}
.carousel-indicators .active {
    background-color: var(--gold);
    width: 30px;
    border-radius: 5px;
}
.carousel-control-prev,
.carousel-control-next {
    width: 52px;
    height: 52px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    background: rgba(200,169,74,0.18);
    border: 1.5px solid rgba(200,169,74,0.5);
    margin: 0 18px;
    backdrop-filter: blur(6px);
    transition: all 0.3s;
}
.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--gold);
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 18px;
    height: 18px;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-28px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ===========================
   STATS BAR
=========================== */
.stats-bar {
    background: var(--primary);
    padding: 0;
    border-top: 3px solid var(--gold);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.stat-block {
    text-align: center;
    padding: 32px 20px;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-block:last-child { border-right: none; }
.stat-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    display: block;
    margin-bottom: 6px;
}
.stat-lbl {
    color: rgba(255,255,255,0.68);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

/* ===========================
   ABOUT SECTION
=========================== */
#about {
    padding: 100px 0;
    background: #fff;
}
.about-img-box {
    position: relative;
    border-radius: 14px;
    overflow: visible;
}
.about-img-box img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 14px;
    display: block;
    box-shadow: 20px 20px 60px rgba(13,36,97,0.18);
    transition: transform 0.6s ease;
}
.about-img-box:hover img { transform: scale(1.02); }
.about-exp-badge {
    position: absolute;
    bottom: -22px;
    right: -22px;
    width: 130px;
    height: 130px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    color: var(--primary);
    box-shadow: 0 12px 36px rgba(200,169,74,0.5);
    border: 4px solid #fff;
}
.about-exp-badge .num { font-size: 2.4rem; line-height: 1; }
.about-exp-badge .lbl { font-size: 0.62rem; text-align: center; line-height: 1.35; font-weight: 700; }

.about-text { padding-left: 55px; }
.about-text .tag-pill {
    display: inline-block;
    background: rgba(200,169,74,0.12);
    color: var(--gold-dark);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 14px;
    border: 1px solid rgba(200,169,74,0.35);
}
.about-text h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 6px;
    line-height: 1.25;
}
.about-divider {
    width: 50px;
    height: 3px;
    background: var(--gold);
    border-radius: 3px;
    margin-bottom: 22px;
}
.about-text p {
    color: var(--text-muted);
    font-size: 0.97rem;
    line-height: 1.9;
    margin-bottom: 14px;
}
.about-list {
    list-style: none;
    padding: 0;
    margin: 22px 0 32px;
}
.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 8px 0;
    color: var(--text-dark);
    font-size: 0.94rem;
    border-bottom: 1px solid var(--border);
}
.about-list li:last-child { border-bottom: none; }
.about-list li i {
    color: var(--gold);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ===========================
   SERVICES SECTION
=========================== */
#services {
    padding: 100px 0;
    background: var(--light-bg);
}
.service-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 28px rgba(13,36,97,0.07);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 55px rgba(13,36,97,0.14);
    border-color: rgba(200,169,74,0.5);
}
.svc-img-wrap {
    position: relative;
    height: 210px;
    flex-shrink: 0;
}
.svc-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}
.service-card:hover .svc-img-wrap img { transform: scale(1.1); }
.svc-icon-circle {
    position: absolute;
    bottom: -26px;
    left: 24px;
    width: 54px;
    height: 54px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    box-shadow: 0 6px 20px rgba(200,169,74,0.45);
    border: 3px solid #fff;
    z-index: 2;
    transition: all 0.3s;
}
.service-card:hover .svc-icon-circle {
    background: var(--primary);
    color: var(--gold);
}
.svc-body {
    padding: 42px 24px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.svc-body h5 {
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}
.svc-body p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.75;
    flex: 1;
    margin-bottom: 18px;
}
.svc-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--gold);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 9px 20px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.25s, transform 0.2s;
    align-self: flex-start;
}
.svc-call-btn:hover {
    background: var(--gold-dark);
    color: #fff;
    transform: translateY(-2px);
}

.services-cta {
    text-align: center;
    margin-top: 55px;
}

/* ===========================
   LOCATION SECTION
=========================== */
#location {
    padding: 100px 0;
    background: #fff;
}
.loc-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(13,36,97,0.1);
    cursor: pointer;
}
.loc-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.loc-card:hover img { transform: scale(1.12); }
.loc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(8,24,64,0.88) 0%,
        transparent 55%
    );
    display: flex;
    align-items: flex-end;
    padding: 14px 16px;
    transition: background 0.35s;
}
.loc-card:hover .loc-overlay {
    background: linear-gradient(
        to top,
        rgba(8,24,64,0.92) 0%,
        rgba(8,24,64,0.35) 100%
    );
}
.loc-label {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.loc-label i {
    color: var(--gold);
    margin-right: 6px;
    font-size: 0.8rem;
}

/* ===========================
   CLIENTS SECTION
=========================== */
#clients {
    padding: 90px 0;
    background: var(--light-bg);
}
.marquee-track {
    display: flex;
    gap: 28px;
    width: max-content;
    animation: marquee 35s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-outer {
    overflow: hidden;
    position: relative;
}
.marquee-outer::before,
.marquee-outer::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}
.marquee-outer::before {
    left: 0;
    background: linear-gradient(to right, var(--light-bg), transparent);
}
.marquee-outer::after {
    right: 0;
    background: linear-gradient(to left, var(--light-bg), transparent);
}
.client-tile {
    flex-shrink: 0;
    width: 155px;
    height: 82px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    box-shadow: 0 3px 14px rgba(13,36,97,0.07);
    border: 1px solid var(--border);
    transition: all 0.3s;
}
.client-tile:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 24px rgba(13,36,97,0.13);
    transform: translateY(-4px);
}
.client-tile img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(25%);
    transition: filter 0.3s;
}
.client-tile:hover img { filter: grayscale(0%); }

@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===========================
   SISTER COMPANY SECTION
=========================== */
#sister-company {
    padding: 90px 0;
    background: #fff;
}
.sister-tile {
    background: var(--light-bg);
    border-radius: 14px;
    /* padding: 36px 22px; */
    text-align: center;
    transition: all 0.35s ease;
    border: 1px solid var(--border);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sister-tile:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 16px 42px rgba(13,36,97,0.2);
}
.sister-tile img {
    max-width: 100%;
    border-radius: 14px;
    object-fit: contain;
    filter: grayscale(15%);
    transition: filter 0.3s, transform 0.3s;
}
.sister-tile:hover img {
    /* filter: brightness(20); */
    transform: scale(1.08);
}

/* ===========================
   TEAM SECTION
=========================== */
#team {
    padding: 100px 0;
    background: var(--light-bg);
}
.team-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 28px rgba(13,36,97,0.08);
    transition: all 0.4s ease;
    border: 1px solid var(--border);
    text-align: center;
}
.team-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 22px 52px rgba(13,36,97,0.15);
}
.team-photo {
    position: relative;
    height: 290px;
    overflow: hidden;
}
.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
}
.team-card:hover .team-photo img { transform: scale(1.06); }
.team-hover {
    position: absolute;
    inset: 0;
    background: rgba(13,36,97,0.86);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.35s ease;
}
.team-card:hover .team-hover { opacity: 1; }
.team-hover a {
    width: 42px;
    height: 42px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s;
}
.team-hover a:hover {
    background: var(--gold);
    color: var(--primary);
}
.team-info {
    padding: 22px 18px 24px;
}
.team-info h5 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}
.team-info .role {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===========================
   WHY CHOOSE US
=========================== */
#why-choose {
    padding: 100px 0;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}
#why-choose::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -8%;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: rgba(200,169,74,0.04);
    border: 1px solid rgba(200,169,74,0.08);
    pointer-events: none;
}
#why-choose::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(200,169,74,0.03);
    border: 1px solid rgba(200,169,74,0.06);
    pointer-events: none;
}
#why-choose .section-heading h2 { color: #fff; }
#why-choose .section-heading .tag-pill {
    background: rgba(200,169,74,0.18);
    color: var(--gold-light);
    border-color: rgba(200,169,74,0.4);
}
#why-choose .section-heading p { color: rgba(255,255,255,0.62); }

.why-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 36px 26px 32px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    z-index: 1;
}
.why-card:hover {
    background: rgba(200,169,74,0.1);
    border-color: rgba(200,169,74,0.4);
    transform: translateY(-10px);
}
.why-icon-wrap {
    width: 72px;
    height: 72px;
    background: rgba(200,169,74,0.14);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--gold);
    margin: 0 auto 22px;
    border: 1px solid rgba(200,169,74,0.3);
    transition: all 0.35s;
}
.why-card:hover .why-icon-wrap {
    background: var(--gold);
    color: var(--primary);
    box-shadow: 0 8px 24px rgba(200,169,74,0.4);
}
.why-card h5 {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.why-card p {
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    line-height: 1.75;
    margin: 0;
}

/* ===========================
   CONTACT SECTION
=========================== */
#contact {
    padding: 100px 0;
    background: var(--light-bg);
}
.form-sub-line {
    width: 48px;
    height: 3px;
    background: var(--gold);
    border-radius: 3px;
    margin-bottom: 28px;
}

.contact-info-col { padding-left: 45px; }
.contact-info-col h3 {
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 6px;
}

.contact-detail-row {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 16px rgba(13,36,97,0.06);
    border: 1px solid var(--border);
    margin-bottom: 18px;
    transition: all 0.3s;
}
.contact-detail-row:hover {
    border-color: var(--gold);
    box-shadow: 0 6px 22px rgba(13,36,97,0.1);
    transform: translateX(5px);
}
.cd-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.15rem;
    flex-shrink: 0;
}
.cd-text h6 {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 4px;
}
.cd-text p,
.cd-text a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    margin: 0;
    text-decoration: none;
    line-height: 1.5;
}
.cd-text a:hover { color: var(--primary); }

.map-embed {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 22px rgba(13,36,97,0.1);
    margin-top: 18px;
}

/* ===========================
   FOOTER
=========================== */
footer {
    background: var(--primary-dark);
}
.footer-bottom {
    padding: 18px 0;
    text-align: center;
}
.footer-bottom p {
    color: rgba(255,255,255,0.6);
    font-size: 0.84rem;
    margin: 0;
}
.footer-bottom a {
    color: var(--gold);
    text-decoration: none;
}

/* ===========================
   FLOATING BUTTONS
=========================== */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--gold);
    color: var(--primary);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s;
    z-index: 990;
    box-shadow: 0 6px 22px rgba(200,169,74,0.45);
}
#backToTop.show {
    opacity: 1;
    visibility: visible;
}
#backToTop:hover {
    background: var(--primary);
    color: var(--gold);
    transform: translateY(-4px);
}

.wa-float {
    position: fixed;
    bottom: 88px;
    right: 30px;
    width: 52px;
    height: 52px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
    text-decoration: none;
    box-shadow: 0 6px 22px rgba(37,211,102,0.45);
    z-index: 990;
    transition: all 0.3s;
}
.wa-float:hover {
    color: #fff;
    transform: translateY(-4px) scale(1.1);
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 991.98px) {
    #mainNav .nav-link {
        padding: 10px 14px !important;
    }
    #mainNav .nav-link::after { display: none !important; }
    .about-text { padding-left: 0; margin-top: 50px; }
    .contact-info-col { padding-left: 0; margin-top: 40px; }
    .stat-block {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .stat-block:last-child { border-bottom: none; }
}
@media (max-width: 767.98px) {
    #heroSlider .carousel-item { height: 85vh; }
    .about-img-box img { height: 340px; }
    .about-exp-badge { width: 105px; height: 105px; bottom: -15px; right: -10px; }
    .about-exp-badge .num { font-size: 1.9rem; }
    .contact-form-box { padding: 32px 22px; }
    .section-heading { margin-bottom: 44px; }
}
@media (max-width: 575.98px) {
    .slide-inner .hero-btn { padding: 13px 30px; font-size: 0.92rem; }
}
