/* --- 1. ORO DYNASTY THEME (MAROON & GOLD) --- */
:root {
    --colorPrimary: #911F24;
    /* Deep Maroon */
    --colorSecondary: #72181C;
    /* Dark Maroon for hover */
    --colorAccent: #C19B51;
    /* Signature Gold */
    --textDark: #2c3e50;
    --bgCream: #FFFBF7;
    /* Premium Cream Background */
    --sidebarWidth: 300px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--bgCream);
    color: var(--textDark);
    overflow-x: hidden;
    padding-bottom: 70px;
    /* Space for Mobile Sticky Footer */
}

@media (min-width: 992px) {
    body {
        padding-bottom: 0;
        padding-right: var(--sidebarWidth);
    }
}

h1,
h2,
h3,
h4,
.head,
.modal-title,
.pro-title {
    font-family: 'Playfair Display', serif;
}

section {
    scroll-margin-top: 80px;
}

/* --- 2. BUTTONS & UI FIXES --- */
.btn-green,
.btn-submit,
.btn-red-dark,
.btn-primary {
    background-color: var(--colorPrimary) !important;
    color: #ffffff !important;
    border: 1px solid var(--colorPrimary) !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    transition: 0.3s ease;
}

.btn-green:hover,
.btn-submit:hover,
.btn-primary:hover {
    background-color: var(--colorSecondary) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(145, 31, 36, 0.3);
}

.btn-outline-green {
    border: 1px solid var(--colorPrimary) !important;
    color: var(--colorPrimary) !important;
    background: transparent !important;
}

/* --- 3. DESKTOP SIDEBAR & NAV --- */
@media (min-width: 992px) {
    .micro-side {
        position: fixed;
        top: 0;
        right: 0;
        width: var(--sidebarWidth);
        height: 100vh;
        background: #fff;
        z-index: 1060;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        display: block;
    }

    .micro-nav {
        width: calc(100% - var(--sidebarWidth));
        right: var(--sidebarWidth);
    }
}
/* --- Banner Responsive Fix --- */
.carousel {
    margin-top: 65px !important; /* Header height ke hisaab se adjust */
}



.micro-main-slider-img {
    object-fit: cover;
   
    margin-top: 50px !important;
}
    
    @media (max-width: 768px) {
    .micro-main-slider-img {
        object-fit: cover;
       
        margin-top: 0px !important;
    }
}



@media (max-width: 991px) {
    .micro-side {
        display: none;
    }

    .micro-nav {
        width: 100%;
        right: 0;
    }

    .logo {
        height: 50px !important;
    }
}

/* Sidebar Compact Styling */
.side-header {
    background: var(--colorPrimary);
    color: #fff;
    padding: 8px 10px !important;
}

.side-icon-box {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px;
    flex: 1;
    text-align: center;
}

.side-icon-box i {
    color: var(--colorAccent);
    font-size: 18px;
    margin-bottom: 5px;
    display: block;
}

.side-body {
    padding: 10px 15px !important;
}

.call-btn-pulse {
    background: var(--colorAccent);
    color: white;
    width: 100%;
    padding: 8px !important;
    border: none;
    font-weight: bold;
    border-radius: 4px;
    font-size: 12px !important;
    animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(193, 155, 81, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(193, 155, 81, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(193, 155, 81, 0);
    }
}

/* --- 4. HERO SECTION & OVERLAY (RESPONSIVE FIX) --- */
.carousel {
    position: relative;
    /*margin-top: 80px!important;*/
}

/*.micro-main-slider-img {*/
   
/*    object-fit: cover;*/
/*   
/*    margin-top:50px;*/
/*}*/

.info-box-wrapper {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    z-index: 100;
    width: 90%;
    max-width: 380px;
}

.info-box {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-top: 5px solid var(--colorAccent);
}

@media (max-width: 767px) {
    .carousel-item {
       margin-top: 10px;
        min-height: 320px;
    }

    .info-box-wrapper {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        max-width: 100%;
        /*padding: 20px 15px;*/
        /*margin-top: -20px;*/
    }

    .info-box {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .pro-title {
        font-size: 24px !important;
    }
}

/* --- 5. MASTER PLAN HOVER --- */
.mp-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 300px;
    cursor: pointer;
}

.mp-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.mp-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(145, 31, 36, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s ease;
}

.mp-btn-anim {
    background: var(--colorAccent);
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: bold;
}

.mp-card:hover .mp-overlay {
    bottom: 0;
}

.mp-card:hover img {
    transform: scale(1.1);
}

/* --- 6. MOBILE STICKY FOOTER (PHONE ONLY) --- */
.mobile-sticky-footer {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 2000;
    box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.1);
}

.footer-btn-item {
    flex: 1;
    text-align: center;
    padding: 15px 0;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.footer-call {
    background-color: var(--colorPrimary);
    color: #fff;
}

.footer-enquire {
    background-color: var(--colorAccent);
    color: #fff;
}

@media (max-width: 767px) {
    .mobile-sticky-footer {
        display: flex;
    }
}

/* --- 7. MISC FIXES --- */
.section {
    padding: 60px 0;
}

.head {
    color: var(--colorPrimary);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.head::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--colorAccent);
    margin: 10px auto 0;
}

.pricing-table th {
    background: var(--colorPrimary);
    color: #fff;
    padding: 15px;
}

.gallery-slide-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
}

.swiper-pagination-bullet-active {
    background: var(--colorPrimary) !important;
}
/* --- 4. NAVBAR --- */
.micro-nav {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.nav-link {
    color: var(--textDark) !important;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
}

/* Active Nav Link Blue Fix */
.nav-link:hover,
.nav-link.active,
.nav-pills .nav-link.active {
    color: var(--colorPrimary) !important;
    background-color: transparent !important;
}

.nav-link:focus {
    outline: none !important;
    box-shadow: none !important;
}

.logo {
    height: 100px !important;
    width: 100%;
}


@media (max-width: 991px) {
    .logo {
        height: 50px !important;
    }

    .navbar-brand {
        margin-right: auto;
    }

    .navbar-toggler {
        border: none;
        padding: 0;
        margin-left: 15px;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }
}
