/* ================== PROFESSIONAL PRELOADER ================== */

:root {
    --dark: #262626;
    --gold: #D4AF37;
    --gold-dark: #B8860B;
    --gold-light: #FFD700;
    --text-dark: #111111;
    --text-light: #ffffff;
    --bg-overlay: rgba(0, 0, 0, 0.7);
}
 /* =================== STICKY NAVBAR STYLES =================== */

.header.sticky-header {
    position: relative; /* Normal document flow */
    width: 100%;
    z-index: 999;
    background: #fff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Header top section - smooth hide/show */
.header__top {
    opacity: 1;
    max-height: 200px; /* Adjust based on actual height */
    overflow: hidden;
    transition: opacity 0.3s ease, max-height 0.3s ease, padding 0.3s ease;
}

/* Logo transition */
.header__logo {
    padding: 35px 0;
    transition: padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Menu transition */
.header__menu__option {
    padding: 28px 0;
    transition: padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* When header becomes sticky */
.header.sticky-header.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hide header top section when scrolled - smooth collapse */
.header.sticky-header.is-sticky .header__top {
    opacity: 0;
    max-height: 0;
    padding: 0;
    margin: 0;
}

/* Compact logo when sticky */
.header.sticky-header.is-sticky .header__logo {
    padding: 15px 0;
}

/* Compact menu when sticky */
.header.sticky-header.is-sticky .header__menu__option {
    padding: 10px 0;
}

/* Smooth slide down animation */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Placeholder to prevent content jump */
.header-placeholder {
    width: 100%;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Ensure canvas menu button is visible */
.canvas__open {
    z-index: 1000;
    position: relative;
    transition: all 0.3s ease;
}

/* Mobile responsive adjustments */
@media (max-width: 991px) {
    .header__logo {
        padding: 20px 0;
    }
    
    .header__menu__option {
        padding: 15px 0;
    }
    
    .header.sticky-header.is-sticky .header__logo {
        padding: 10px 0;
    }
    
    .header.sticky-header.is-sticky .header__menu__option {
        padding: 8px 0;
    }
}

/* Optional: Add subtle scale effect on logo when sticky */
.header.sticky-header.is-sticky .header__logo img {
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header__logo img {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
/* =================== FIXED CORNER BUTTONS =================== */

/* Main container for all fixed buttons */
.fixed-corner-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column-reverse;
    gap: 7px;
    z-index: 998;
    height:110px
}

/* Scroll to Top Wrapper */
.scroll-top-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
}



.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: linear-gradient(135deg, #f1d77a, #d4af37);
    transform: translateY(-6px);
    box-shadow: 
        0 10px 25px rgba(212, 175, 55, 0.45),
        0 0 8px rgba(212, 175, 55, 0.4);
}
/* WhatsApp Wrapper */
.whatsapp-wrapper {
    display: flex;
    justify-content: right;
    align-items: center;
}

/* WhatsApp Button */
.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    text-decoration: none;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: scale(1.1);
    color: #fff;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    text-decoration: none;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .fixed-corner-buttons {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }

    .scroll-top-btn {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 28px;
    }
}
/*---------------------
  Desktop Header Styles
-----------------------*/

.header {
    position: relative;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    z-index: 999;
}

.header.header--normal {
    border-bottom: 1px solid #f2f2f2;
}

.header__top {
    background: #262626;
}

.header__top__left {
    padding: 12px 0;
}

.header__top__left li {
    font-size: 13px;
    color: var(--text-light);
    list-style: none;
    display: inline-block;
    margin-right: 25px;
}

.header__top__left li:last-child {
    margin-right: 0;
}

.header__top__left li i {
    font-size: 15px;
    margin-right: 5px;
}

.header__top__right {
    text-align: right;
    padding: 12px 0;
}

.header__top__right a {
    font-size: 16px;
    color: var(--text-light);
    display: inline-block;
    margin-right: 20px;
    transition: all 0.3s ease;
}

.header__top__right a:last-child {
    margin-right: 0;
}

.header__top__right a:hover {
    color: var(--gold-light);
    transform: scale(1.1);
}


.header__logo a {
    display: inline-block;
}

.header__logo img {
    max-width: 180px;
    height: auto;
}

.header__menu__option {
    text-align: right;
    padding: 30px 0;
}

.header__menu {
    display: inline-block;
    margin-right: 45px;
}

.header__menu ul {
    margin: 0;
    padding: 0;
}

.header__menu ul li {
    list-style: none;
    display: inline-block;
    margin-right: 45px;
    position: relative;
}

.header__menu ul li.active a:after {
    transform: scale(1);
}

.header__menu ul li:hover a:after {
    transform: scale(1);
}

.header__menu ul li:hover .dropdown {
    top: 30px;
    opacity: 1;
    visibility: visible;
}

.header__menu ul li:last-child {
    margin-right: 0;
}

.header__menu ul li .dropdown {
    position: absolute;
    left: 0;
    top: 52px;
    width: 200px;
    background: #111111;
    text-align: left;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.header__menu ul li .dropdown li {
    display: block;
    margin-right: 0;
}

.header__menu ul li .dropdown li a {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
    padding: 10px 20px;
    text-transform: capitalize;
}

.header__menu ul li .dropdown li a:after {
    display: none;
}

.header__menu ul li .dropdown li:hover a {
    background: var(--gold);
    color: var(--text-light);
}

.header__menu ul li a {
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 500;
    display: block;
    padding: 4px 0;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
}

.header__menu ul li a:after {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
    content: "";
    transition: transform 0.3s ease;
    transform: scale(0);
}

.header__btn {
    display: inline-block;
}

/*---------------------
  Mobile Menu Styles
-----------------------*/

.canvas__open {
    display: none;
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
    padding: 15px;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
    transition: all 0.3s ease;
}

.canvas__open:hover {
    color: var(--gold);
}

.offcanvas-menu-overlay {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: var(--bg-overlay);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.offcanvas-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.offcanvas-menu-wrapper {
    position: fixed;
    left: -100%;
    top: 0;
    width: 320px;
    height: 100%;
    background: var(--text-light);
    z-index: 9999;
    overflow-y: auto;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 4px 0 15px rgba(0, 0, 0, 0.2);
}

.offcanvas-menu-wrapper.active {
    left: 0;
}

.offcanvas-menu-wrapper .offcanvas__logo {
    margin-bottom: 30px;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.offcanvas-menu-wrapper .offcanvas__logo img {
    max-width: 150px;
    height: auto;
}

.offcanvas-menu-wrapper .offcanvas__close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.offcanvas-menu-wrapper .offcanvas__close:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

/* Mobile Menu Navigation */
#mobile-menu-wrap {
    margin-bottom: 30px;
}

.slicknav_menu {
    background: transparent !important;
    padding: 0 !important;
}

.slicknav_nav {
    margin: 0 !important;
    padding: 0 !important;
}

.slicknav_nav li {
    border-bottom: 1px solid #f0f0f0 !important;
    margin: 0 !important;
}

.slicknav_nav li:last-child {
    border-bottom: none !important;
}

.slicknav_nav a {
    font-size: 15px !important;
    font-weight: 500 !important;
    color: var(--text-dark) !important;
    padding: 12px 0 !important;
    text-transform: uppercase;
    transition: all 0.3s ease !important;
    margin: 0 !important;
}

.slicknav_nav a:hover {
    color: var(--gold) !important;
    padding-left: 10px !important;
}

.slicknav_nav .slicknav_arrow {
    color: var(--gold) !important;
    font-size: 16px !important;
}

.slicknav_nav .slicknav_item a {
    font-weight: 600 !important;
}

.slicknav_nav .slicknav_row {
    padding: 12px 0 !important;
    margin: 0 !important;
}

.slicknav_nav .slicknav_row:hover {
    background: transparent !important;
}

/* Mobile Menu Button */
.offcanvas__btn {
    margin-bottom: 25px;
    text-align: center;
}

.offcanvas__btn .primary-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobile Menu Contact Info */
.offcanvas__widget {
    margin-bottom: 25px;
    padding: 20px 0;
    border-top: 2px solid #f0f0f0;
}

.offcanvas__widget li {
    font-size: 13px;
    color: #666;
    list-style: none;
    margin-bottom: 12px;
    line-height: 1.6;
}

.offcanvas__widget li:last-child {
    margin-bottom: 0;
}

.offcanvas__widget li i {
    color: var(--gold);
    margin-right: 8px;
    width: 20px;
    text-align: center;
}

/* Mobile Menu Social Links */
.offcanvas__social {
    text-align: center;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.offcanvas__social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background: #f8f8f8;
    color: var(--text-dark);
    margin: 0 5px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.offcanvas__social a:hover {
    background: var(--gold);
    color: var(--text-light);
    transform: translateY(-3px);
}

/*---------------------
  Responsive Breakpoints
-----------------------*/

/* Tablet and below (≤ 991px) */
@media (max-width: 1211px) {
    .header__top {
        display: none;
    }

    .header__logo {
        padding: 20px 0;
    }

    .header__logo img {
        max-width: 140px;
    }

    .header__menu,
    .header__btn {
        display: none;
    }

    .canvas__open {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
    }

    .header__menu__option {
        padding: 0;
    }
}

/* Mobile landscape and below (≤ 767px) */
@media (max-width: 767px) {
    .offcanvas-menu-wrapper {
        width: 280px;
    }

    .header__logo {
        padding: 15px 0;
    }

    .header__logo img {
        max-width: 120px;
    }
}

/* Small mobile (≤ 575px) */
@media (max-width: 575px) {
    .offcanvas-menu-wrapper {
        width: 85%;
        max-width: 320px;
    }

    .canvas__open {
        font-size: 22px;
        padding: 10px;
    }
    .canvas__open i {
        font-size: 22px;
        line-height: 1; /* ❗ important */
    }
}

/* Very small devices (≤ 360px) */
@media (max-width: 360px) {
    .offcanvas-menu-wrapper {
        width: 90%;
        padding: 20px;
    }

    .offcanvas__widget li {
        font-size: 12px;
    }
}

/*---------------------
  Accessibility
-----------------------*/

.canvas__open:focus,
.offcanvas__close:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* Smooth scrolling for mobile menu */
.offcanvas-menu-wrapper::-webkit-scrollbar {
    width: 6px;
}

.offcanvas-menu-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.offcanvas-menu-wrapper::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}

.offcanvas-menu-wrapper::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

/*---------------------
  Animation Enhancements
-----------------------*/

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
/* WhatsApp Chat Option Styles */
.whatsapp-chat-option {
    margin-top: 20px;
}

.whatsapp-chat-option .divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 25px 0 20px;
}

.whatsapp-chat-option .divider::before,
.whatsapp-chat-option .divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e0e0e0;
}

.whatsapp-chat-option .divider span {
    padding: 0 15px;
    color: #999;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
}

.whatsapp-chat-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 0px;
    background-color: #25D366;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    outline: none;

    transition: all 0.3s ease;
}

/* Hover style we want to mimic via JS */
.whatsapp-hover-style {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-chat-btn:hover {
    background: #128C7E;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    text-decoration: none;
}

.whatsapp-chat-btn i {
    font-size: 20px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .whatsapp-chat-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .whatsapp-chat-btn i {
        font-size: 18px;
    }
}
.offcanvas-menu-wrapper.active {
    animation: slideInLeft 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.offcanvas-menu-overlay.active {
    animation: fadeIn 0.3s ease;
}


.primary-btn:hover  {
color:white;

}
.primary-btn  {
    background-color: var(--dark);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    transition: all 0.3s ease;
}
.btn-outline-primary {

    color:black;
    font-weight:450;
    border-color: var(--dark);
    border-width:3px;
    padding: 12px 25px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.primary-btn,.btn-outline-primary:hover {
    background-color: var(--dark);
    border-color: var(--dark);
}
#page-preloader {
    position: fixed;
    inset: 0;
    background: #ffffff;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-inner {
    text-align: center;
    width: 350px;
}



.preloader-logo {
    max-width: 330px;
    margin-bottom: 25px;
}

.preloader-bar {
    width: 100%;
    height: 4px;
    background: #e6e6e6;
    border-radius: 2px;
    overflow: hidden;
}

.preloader-progress {
    display: block;
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    animation: loadingBar 1.6s ease-in-out infinite;
}

@keyframes loadingBar {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

/* ================== SCROLL TO TOP BUTTON ================== */
.scroll-top-btn {
   
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: linear-gradient(135deg, var(#B8860B) 0%, var(#D4AF37) 100%);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6);
    transform: translateY(-3px);
}

.scroll-top-btn:active {
    transform: translateY(-1px);
}

.scroll-top-btn i {
    line-height: 50px;
}

/* Responsive */
@media (max-width: 768px) {
    .scroll-top-btn {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 18px;
    }

    .scroll-top-btn i {
        line-height: 45px;
    }
}