:root {
    --primary-color: #B8962D;
    /* Professional Gold */
    --secondary-color: #000000;
    /* Minimal Black */
    --bg-light: #FBFBFB;
    --text-main: #333333;
    --text-muted: #777777;
    --white: #FFFFFF;
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--white);
    font-weight: 300;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
    width: 100%;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
}

/* Transparent to Glassy Navbar */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
    padding: 25px 0;
}

.navbar.navbar-scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.navbar-brand {
    position: relative;
    padding: 0;
    margin: 0;
    z-index: 1001;
}

.logo-img {
    height: 70px;
    width: auto;
    transition: var(--transition);
}

.navbar.navbar-scrolled .logo-img {
    height: 55px;
}

.logo-scrolled {
    display: none;
}

.navbar.navbar-scrolled .logo-transparent {
    display: none;
}

.navbar.navbar-scrolled .logo-scrolled {
    display: inline-block;
}

.nav-link {
    color: var(--white) !important;
    font-weight: 500;
    font-size: 0.85rem;
    margin: 0 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.navbar.navbar-scrolled .nav-link {
    color: var(--secondary-color) !important;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Navbar Toggler Fix */
.navbar-toggler {
    padding: 0.5rem;
    border: none !important;
}

.navbar-toggler-icon {
    filter: invert(1);
    /* White toggler by default */
}

.navbar.navbar-scrolled .navbar-toggler-icon {
    filter: invert(0);
    /* Black toggler when scrolled */
}

/* Buttons */
.btn-premium {
    background: var(--primary-color);
    color: var(--white);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 12px 30px;
    border-radius: 10px;
    border: 1px solid var(--primary-color);
    transition: var(--transition);
    min-width: 170px;
    text-transform: uppercase;
}

.btn-premium:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white);
}

/* Hero Section - CROSS FADE MIX */
.hero-slider {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background: #000;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    /* Smooth Mix */
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 4;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-content h1 {
    font-size: 4rem;
    color: var(--white) !important;
    /* Force White on Landing */
    margin-bottom: 20px;
}

/* Hero buttons - scoped to hero content only */
.hero-content .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 14px 28px;
    min-height: 56px;
    height: auto;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 12px;
    line-height: 1;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.hero-content .btn .fa,
.hero-content .btn i {
    margin-right: 0.4rem;
}

.hero-content .btn.btn-premium {
    min-width: 170px;
}

.hero-content .btn.btn-outline-light {
    background: transparent !important;
    color: #fff !important;
    border: 2px solid rgba(255, 255, 255, 0.92) !important;
}

.hero-content .btn:hover {
    transform: translateY(-3px);
}

/* Section Spacing */
.section-padding {
    padding: 120px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

/* Service Cards */
.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    border-color: rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), rgba(184, 150, 45, 0.25));
    opacity: 0.9;
}

.service-card:hover {
    transform: translateY(-12px);
    border-color: rgba(184, 150, 45, 0.35) !important;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

.service-card .service-img-wrap img {
    transition: transform 0.8s ease;
}

.service-card:hover .service-img-wrap img {
    transform: scale(1.07);
}

/* Footer */
footer {
    background: #000000;
    color: var(--white);
    padding: 100px 0 40px;
}

footer h5 {
    color: var(--white);
    margin-bottom: 30px;
    font-weight: 700;
}

footer a,
footer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-decoration: none;
}

footer a:hover {
    color: var(--primary-color);
}

footer .footer-logo {
    display: block;
    max-width: 100%;
    width: auto;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    margin-bottom: 25px;
}

footer .d-flex.gap-3 a i,
footer li i {
    color: var(--primary-color) !important;
    transition: color 0.3s ease, transform 0.3s ease;
}

/* About Page */
.about-image-wrap {
    max-width: 460px;
    margin: 0 auto;
    padding: 1rem 1rem 0;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
}

.about-image-wrap img {
    width: 100%;
    height: auto;
    max-height: 540px;
    object-fit: contain;
    display: block;
}

/* Services Page */
.services-page .service-media-wrap {
    max-width: 520px;
    margin: 0 auto;
    border-radius: 28px;
    overflow: hidden;
    background: var(--white);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.services-page .service-media-wrap img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease, filter 0.6s ease;
}

.services-page .service-media-wrap:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.14);
}

.services-page .service-media-wrap:hover img {
    transform: scale(1.05);
}

.services-page .service-copy h3 {
    font-size: 1.85rem;
}

.services-page .service-copy p,
.services-page .service-copy li {
    font-size: 1rem;
    line-height: 1.8;
}

/* Contact Form Premium Styling */
.contact-form-premium {
    border: 1px solid rgba(184, 150, 45, 0.2) !important;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%) !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08) !important;
}

.contact-form-premium h4 {
    color: var(--secondary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 12px;
}

.contact-form-premium .form-control {
    background: #ffffff !important;
    border: 1px solid rgba(184, 150, 45, 0.15) !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-size: 0.95rem;
}

.contact-form-premium .form-control:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 0.2rem rgba(184, 150, 45, 0.15) !important;
}

.contact-form-premium .form-label {
    color: var(--secondary-color);
    font-size: 0.85rem;
}

/* Page Banners */
.page-banner {
    padding: 220px 0 120px;
    background-size: cover;
    background-position: center;
    position: relative;
    color: var(--white);
    text-align: center;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
}

.page-banner .container {
    position: relative;
    z-index: 5;
}

/* Responsive Media Queries - FIXED & CONSOLIDATED */

@media (max-width: 991px) {
    .navbar {
        padding: 15px 0;
    }

    .navbar-collapse {
        width: 100%;
    }

    .navbar-collapse.show,
    .navbar-collapse.collapsing {
        display: block;
    }

    .navbar .navbar-collapse.show {
        margin-top: 12px;
        padding: 18px 20px 20px;
        border-radius: 18px;
        background: rgba(0, 0, 0, 0.95);
        box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
        backdrop-filter: blur(12px);
    }

    .navbar.navbar-scrolled .navbar-collapse.show {
        background: rgba(255, 255, 255, 0.98);
    }

    .navbar .navbar-collapse.show .navbar-nav {
        width: 100%;
    }

    .navbar .navbar-collapse.show .nav-link {
        margin: 8px 0;
        color: var(--white) !important;
    }

    .navbar.navbar-scrolled .navbar-collapse.show .nav-link {
        color: var(--secondary-color) !important;
    }

    .navbar .navbar-collapse.show .d-flex {
        width: 100%;
        flex-direction: column;
        align-items: flex-start !important;
        gap: 12px !important;
    }

    .navbar .navbar-collapse.show .btn-premium {
        width: 100%;
        min-width: 0;
    }

    .logo-img {
        height: 55px;
    }

    .hero-slider {
        height: 85vh;
    }

    .hero-content h1 {
        font-size: 2.8rem;
        line-height: 1.1;
    }

    .section-padding {
        padding: 80px 0;
    }

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

    .section-title h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 80vh;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content .btn {
        min-width: 100%;
    }

    .navbar-brand .logo-img {
        height: 50px;
    }

    .page-banner {
        padding: 180px 0 80px;
    }

    .section-padding {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height: 75vh;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 30px !important;
    }

    .hero-content .btn {
        padding: 12px 20px;
        min-height: 48px;
        font-size: 0.85rem;
    }

    .hero-content .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .section-title h2 {
        font-size: 1.6rem;
    }

    .page-banner h1 {
        font-size: 2rem;
    }

    .about-image-wrap {
        max-width: 340px;
        padding: 0.75rem 0.75rem 0;
    }

    .about-image-wrap img {
        max-height: 400px;
    }

    .services-page .service-copy h3 {
        font-size: 1.55rem;
    }

    .services-page .service-copy p,
    .services-page .service-copy li {
        font-size: 0.95rem;
    }
}