/*=========Google Fonts===========*/
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
html{
    scroll-behavior:smooth;
}
body{
    font-family:'Poppins',sans-serif;
    background:#0D0D0D;
    color:#fff;
    overflow-x:hidden;
}
h1,h2,h3,h4,h5,h6{
    font-family:'Playfair Display',serif;
}
a{
    text-decoration:none;
}
ul{
    list-style:none;
}
img{
    width:100%;
    display:block;
}
/* Colors */
:root{
--black:#0D0D0D;
--gold:#C9A86A;
--white:#ffffff;
--gray:#f5f5f5;
--text:#cfcfcf;
}
/*=======PREMIUM WHITE NAVBAR - HIRANYAGARBHA==============*/
:root {
    --gold: #C9A86A;
    --black: #111111;
    --white: #ffffff;
    --text: #444444;
}
/*========= LOGO ============*/
.navbar-brand {
    padding: 0;
    margin: 0;
}
.navbar-brand img {
    height: 70px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: .35s ease;
}
/*============NAVBAR=============*/
.custom-navbar {
    padding: 18px 0;
    transition: .35s ease;
    z-index: 9999;
    background: transparent;
}
/* Scrolled Navbar */
.custom-navbar.scrolled {
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
    padding: 12px 0;
}
.custom-navbar.scrolled .navbar-brand img {
    height: 58px;
}
/*==========  DESKTOP LINKS =============*/
.nav-link {
    position: relative;
    color: #111 !important;
    font-weight: 500;
    margin: 0 14px;
    transition: .35s ease;
}
.nav-link:hover {
    color: var(--gold) !important;
}
/* Underline */
.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: .35s ease;
}
.nav-link:hover::after {
    width: 100%;
}
.nav-link.active {
    color: var(--gold) !important;
}
.nav-link.active::after {
    width: 100%;
}
/*=========BOOK VISIT BUTTON===============*/
.book-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 12px 28px;
    border-radius: 50px;
    background: var(--gold);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: .35s ease;
    box-shadow: 0 8px 20px rgba(201, 168, 106, .25);
}
.book-btn:hover {
    background: #111;
    color: #fff;
    transform: translateY(-2px);
}
.book-visit i {
    margin-right: 8px;
}
/*==============MOBILE TOGGLER=============*/
.navbar-toggler {
    border: none;
    background: transparent;
    padding: 8px;
    outline: none;
}
.navbar-toggler:focus {
    box-shadow: none;
}
/* Bootstrap hamburger - BLACK */
.navbar-toggler-icon {
    filter: invert(0);
}
/*===========PREMIUM MOBILE OFFCANVAS==============*/
.offcanvas {
    width: 280px;
    height: auto;
    max-height: calc(100vh - 100px);
    top: 85px;
    right: 15px;
    bottom: auto;
    left: auto;
    border: none;
    border-radius: 20px;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .18);
}
/*========== BOOTSTRAP OFFCANVAS POSITION OVERRIDE=========*/
.offcanvas.offcanvas-end {
    transform: translateX(110%);
}
.offcanvas.offcanvas-end.show {
    transform: translateX(0);
}
/*============OFFCANVAS HEADER==========*/
.offcanvas-header {
    padding: 18px 20px;
    min-height: 65px;
    border-bottom: 1px solid #ececec;
}
.offcanvas-title {
    color: #111;
    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
    font-weight: 600;
    margin: 0;
}
.btn-close {
    filter: none;
    opacity: .7;
    box-shadow: none !important;
}
.btn-close:focus {
    box-shadow: none !important;
}
/*============OFFCANVAS BODY==========*/
.offcanvas-body {
    padding: 8px 20px 20px;
    overflow-y: auto;
    overflow-x: hidden;
}
/*==========MOBILE MENU LINKS============*/
.offcanvas .nav-item {
    margin: 0;
    padding: 0;
}
.offcanvas .nav-link {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 12px 0 !important;
    margin: 0;
    border-bottom: 1px solid #f1f1f1;
    color: #111 !important;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    transition: .3s ease;
}
.offcanvas .nav-link::after {
    display: none !important;
}
/* Hover */
.offcanvas .nav-link:hover {
    color: var(--gold) !important;
    padding-left: 7px !important;
}
.offcanvas .nav-link.active {
    color: var(--gold) !important;
}
/*========MOBILE BOOK BUTTON=========*/
.offcanvas .book-btn {
    display: flex;
    width: 100%;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
    padding: 11px 16px;
    border-radius: 50px;
    background: var(--gold);
    color: #fff !important;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(201, 168, 106, .25);
}
.offcanvas .book-btn:hover {
    background: #111;
    color: #fff !important;
}
/*===========TABLET===========*/
@media (max-width: 991px) {
    .custom-navbar {
        background: rgba(255, 255, 255, .97);
        box-shadow: 0 2px 12px rgba(0, 0, 0, .05);
        padding: 10px 0;
    }
    .navbar-brand img {
        height: 60px;
    }
    .custom-navbar .navbar-toggler {
        display: block;
    }
}
/*===========MOBILE==========*/
@media (max-width: 576px) {
    .custom-navbar {
        padding: 10px 0;
        min-height: 70px;
    }
    .custom-navbar .container {
        padding-left: 18px;
        padding-right: 18px;
    }
    .navbar-brand img {
        height: 52px;
        max-width: 155px;
    }
    .navbar-toggler {
        padding: 6px;
    }
    .navbar-toggler-icon {
        width: 28px;
        height: 28px;
    }
    /* Mobile Offcanvas */
    .offcanvas {
        width: 270px !important;
        max-width: 82vw;
        top: 78px !important;
        right: 10px;
        max-height: calc(100vh - 95px);
        border-radius: 18px;
    }
    .offcanvas-header {
        min-height: 60px;
        padding: 15px 18px;
    }
    .offcanvas-title {
        font-size: 26px;
    }
    .offcanvas-body {
        padding: 5px 18px 18px;
    }
    .offcanvas .nav-link {
        min-height: 49px;
        padding: 10px 0 !important;
        font-size: 16px;
    }
    .offcanvas .book-btn {
        min-height: 48px;
        margin-top: 14px;
        font-size: 15px;
        padding: 10px 14px;
    }
}
/*=========VERY SMALL MOBILE============*/
@media (max-width: 380px) {
    .navbar-brand img {
        height: 48px;
        max-width: 145px;
    }
    .custom-navbar {
        min-height: 66px;
        padding: 8px 0;
    }
    .offcanvas {
        width: 255px !important;
        max-width: 82vw;
        top: 72px !important;
        right: 8px;
        max-height: calc(100vh - 85px);
    }
    .offcanvas-header {
        min-height: 56px;
        padding: 13px 16px;
    }
    .offcanvas-title {
        font-size: 24px;
    }
    .offcanvas-body {
        padding: 3px 16px 16px;
    }
    .offcanvas .nav-link {
        min-height: 45px;
        padding: 8px 0 !important;
        font-size: 15px;
    }
    .offcanvas .book-btn {
        min-height: 46px;
        margin-top: 12px;
        font-size: 14px;
    }
}
/*=========== PREVENT HORIZONTAL SCROLL===========*/
html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
}
*,
*::before,
*::after {
    box-sizing: border-box;
}
img,
video,
iframe {
    max-width: 100%;
}
/*====== Scroll Progress======*/
#scrollProgress{
    position:fixed;
    top:0;
    left:0;
    width:0;
    height:4px;
    background:linear-gradient(90deg,#C9A86A,#E6C98C);
    box-shadow:0 0 12px rgba(201,168,106,.8);
    z-index:10000;
}
/*============HERO==============*/
.hero{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
}
.hero-video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:-2;
}
.hero-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.45);
    z-index:-1;
}
.hero .container{
    height:100%;
    display:flex;
    align-items:center;
}
.hero-content{
    max-width:700px;
}
.hero-subtitle{
    color:#C9A86A;
    letter-spacing:5px;
    font-size:16px;
    font-weight:600;
    margin-bottom:20px;
}
.hero h1{
    font-size:72px;
    font-weight:700;
    color:#fff;
    line-height:1.1;
    margin-bottom:25px;
}
.hero p{
    color:#ddd;
    font-size:18px;
    line-height:1.9;
    margin-bottom:40px;
}
/*=======HERO BUTTONS=======*/
.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}
.hero-btn1,
.hero-btn2{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    min-width:220px;
    height:60px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.4s;
}
.hero-btn1{
    background:#C9A86A;
    color:#fff;
    border:2px solid #C9A86A;
}
.hero-btn1:hover{
    background:#fff;
    color:#111;
}
.hero-btn2{
    background:transparent;
    color:#fff;
    border:2px solid #fff;
}
.hero-btn2:hover{
    background:#C9A86A;
    border-color:#C9A86A;
    color:#fff;
}/*============SCROLL NAVBAR===========*/
.custom-navbar.scrolled{
    background:rgba(255,255,255,.92);
    backdrop-filter:blur(15px);
    box-shadow:0 10px 30px rgba(0,0,0,.15);
    padding:15px 0;
}
.custom-navbar.scrolled .navbar-brand{
    color:#111 !important;
}
.custom-navbar.scrolled .navbar-brand span{
    color:#C9A86A;
}
.custom-navbar.scrolled .nav-link{
    color:#111 !important;
}
.custom-navbar.scrolled .nav-link:hover{
    color:#C9A86A !important;
}
/*========ABOUT SECTION========*/
.about-section{
    padding:100px 0;
    background:#ffffff;
}
.about-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}
/* Heading */
.section-subtitle{
    color:#C9A86A;
    font-size:15px;
    font-weight:600;
    letter-spacing:4px;
    text-transform:uppercase;
    margin-bottom:15px;
}
.section-title{
    font-size:52px;
    color:#111;
    line-height:1.2;
    margin-bottom:25px;
}
.about-text{
    font-size:17px;
    line-height:1.9;
    color:#666;
    margin-bottom:40px;
}
/*=========COMPANY VALUES========*/
.company-values{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
}
.value-card{
    width:170px;
    height:190px;
    background:#ffffff;
    border:1px solid rgba(201,168,106,.30);
    border-radius:20px;
    padding:20px;
    text-align:center;
    transition:.4s;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}
.value-card i{
    font-size:42px;
    color:#C9A86A;
    margin-bottom:18px;
}
.value-card h5{
    color:#111;
    margin-bottom:12px;
    font-size:20px;
    font-family:'Playfair Display', serif;
}
.value-card p{
    color:#666;
    font-size:14px;
    line-height:1.6;
}
.value-card:hover{
    background:#C9A86A;
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(201,168,106,.35);
}
.value-card:hover i,
.value-card:hover h5,
.value-card:hover p{
    color:#ffffff;
}
/*==========PROJECTS SECTION==========*/
.projects-section{
    padding:100px 0;
    background:#0D0D0D;
}
.project-text{
    color:#cfcfcf;
    max-width:650px;
    margin:auto;
    margin-top:15px;
}
.project-card{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    height:550px;
    cursor:pointer;
}
.project-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}
.project-overlay{
    position:absolute;
    inset:0;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:40px;
    background:linear-gradient(to top,
    rgba(0,0,0,.90),
    rgba(0,0,0,.15));
}
.project-status{
    display:inline-block;
    width:max-content;
    background:#C9A86A;
    color:#fff;
    padding:8px 18px;
    border-radius:50px;
    font-size:13px;
    margin-bottom:20px;
}
.project-overlay h3{
    font-size:38px;
    color:#fff;
    margin-bottom:10px;
}
.project-overlay p{
    color:#ddd;
    margin-bottom:25px;
}
.project-btn{
    display:inline-block;
    width:max-content;
    padding:14px 32px;
    background:#C9A86A;
    color:#fff;
    border-radius:50px;
    text-decoration:none;
    transition:.4s;
}
.project-btn:hover{
    background:#fff;
    color:#111;
}
.project-card:hover img{
    transform:scale(1.1);
}
/*========WHY CHOOSE US========*/
.why-section{
    padding:100px 0;
    background:#f8f8f8;
}
.why-text{
    max-width:700px;
    margin:15px auto 0;
    color:#666;
}
.why-card{
    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    transition:.4s;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    border-bottom:4px solid transparent;
}
.why-card i{
    font-size:48px;
    color:#C9A86A;
    margin-bottom:20px;
}
.why-card h4{
    color:#111;
    margin-bottom:15px;
}
.why-card p{
    color:#666;
    line-height:1.8;
}
.why-card:hover{
    transform:translateY(-12px);
    border-bottom:4px solid #C9A86A;
    box-shadow:0 25px 45px rgba(0,0,0,.12);
}
/*=============GALLERY SECTION==============*/
.gallery-section{
    padding:100px 0;
    background:#ffffff;
}
.gallery-text{
    color:#666;
    max-width:700px;
    margin:15px auto 50px;
}
.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}
.gallery-item{
    overflow:hidden;
    border-radius:20px;
    cursor:pointer;
    height:300px;
}
.gallery-item.large{
    grid-row:span 2;
    height:620px;
}
.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}
.gallery-item:hover img{
    transform:scale(1.1);
}
/*=========CONTACT SECTION============*/
.contact-section{
    padding:100px 0;
    background:#111;
    overflow:hidden;
}
/*=====LEFT SIDE======*/
.contact-left{
    padding-right:40px;
}
.contact-tag{
    display:inline-block;
    color:#C9A86A;
    letter-spacing:6px;
    font-size:15px;
    font-weight:600;
    margin-bottom:25px;
    text-transform:uppercase;
}
.contact-heading{
    color:#fff;
    font-size:64px;
    line-height:1.1;
    font-family:'Playfair Display',serif;
    font-weight:700;
    margin-bottom:30px;
}
.contact-heading span{
    display:block;
}
.contact-text{
    color:#bdbdbd;
    font-size:18px;
    line-height:1.9;
    margin-bottom:45px;
}

/*=========CONTACT INFO========*/
.contact-info{
    display:flex;
    align-items:flex-start;
    gap:22px;
    margin-bottom:25px;
}
.icon-circle{
    width:70px;
    height:70px;
    min-width:70px;
    border-radius:50%;
    background:#C9A86A;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:24px;
    transition:.4s;
}
.contact-info:hover .icon-circle{
    transform:translateY(-6px);
    box-shadow:0 18px 35px rgba(201,168,106,.35);
}
.contact-info h5{
    color:#fff;
    font-size:34px;
    margin-bottom:8px;
    font-family:'Playfair Display',serif;
}
.contact-info p{
    color:#bdbdbd;
    line-height:1.8;
    font-size:18px;
    margin:0;
}

/*=========FORM BOX=========*/
.contact-form-box{
    background:#fff;
    padding:55px;
    border-radius:28px;
    box-shadow:0 30px 70px rgba(0,0,0,.12);
}
/*========INPUTS========*/
.input-box{
    position:relative;
}
.input-box i{
    position:absolute;
    left:18px;
    top:50%;
    transform:translateY(-50%);
    width:42px;
    height:42px;
    border-radius:50%;
    background:#C9A86A;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:2;
    transition:.35s;
}
.textarea-box i{
    top:24px;
    transform:none;
}
/*==========INPUT FIELD=========*/
.form-control,
.form-select{
    width:100%;
    height:68px;
    border:1px solid #e6e6e6;
    border-radius:18px;
    background:#fff;
    padding-left:78px;
    padding-right:20px;
    font-size:17px;
    color:#222;
    transition:.35s;
    box-shadow:none;
}
.form-control::placeholder{
    color:#999;
}
textarea.form-control{
    height:180px;
    resize:none;
    padding-top:22px;
}
/*===========HOVER=========*/
.input-box:hover i{
    transform:translateY(-50%) scale(1.08);
    box-shadow:0 12px 25px rgba(201,168,106,.35);
}
.textarea-box:hover i{
    transform:scale(1.08);
}
/*===========FOCUS=============*/
.input-box:focus-within i{
    background:#111;
    color:#C9A86A;
    box-shadow:0 0 20px rgba(201,168,106,.45);
}
.input-box:focus-within .form-control,
.input-box:focus-within .form-select{
    border-color:#C9A86A;
    box-shadow:
    0 0 0 4px rgba(201,168,106,.18),
    0 15px 40px rgba(201,168,106,.15);
}
/*==========BUTTON===========*/
.submit-btn{
    width:100%;
    height:65px;
    border:none;
    border-radius:50px;
    background:#C9A86A;
    color:#fff;
    font-size:20px;
    font-weight:600;
    letter-spacing:.5px;
    transition:.35s;
}
.submit-btn:hover{
    background:#111;
    transform:translateY(-4px);
    box-shadow:0 20px 35px rgba(0,0,0,.25);
}
/*===========RESPONSIVE===========*/
@media(max-width:991px){
.contact-left{
    padding-right:0;
    margin-bottom:50px;
}
.contact-heading{
    font-size:48px;
}
.contact-form-box{
    padding:35px;
}
}
@media(max-width:767px){
.contact-section{
    padding:80px 0;
}
.contact-heading{
    font-size:40px;
}
.contact-info{
    gap:15px;
}
.icon-circle{
    width:60px;
    height:60px;
    min-width:60px;
    font-size:20px;
}
.contact-info h5{
    font-size:26px;
}
.contact-info p{
    font-size:16px;
}
.contact-form-box{
    padding:25px;
}
.form-control,
.form-select{
    height:60px;
    font-size:16px;
    padding-left:70px;
}
textarea.form-control{
    height:150px;
}
.submit-btn{
    height:60px;
    font-size:18px;
}
}
/*=====FLOATING BUTTONS============*/
.floating-btn{
    position:fixed;
    right:25px;
    width:58px;
    height:58px;
    border-radius:18px;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    text-decoration:none;
    font-size:24px;
    transition:all .35s ease;
    z-index:9999;
    box-shadow:0 12px 30px rgba(0,0,0,.20);
}
/*============ BROCHURE ============*/
.brochure-btn{
    bottom:170px;
    background:#C9A86A;
}
.brochure-btn:hover{
    background:#111;
    color:#C9A86A;
    transform:translateY(-6px);
}
/*============ WHATSAPP ============*/
.whatsapp-btn{
    bottom:100px;
    background:#25D366;
}
.whatsapp-btn:hover{
    background:#128C7E;
    color:#fff;
    transform:translateY(-6px);
}
/*============ BACK TO TOP ============*/
.top-btn{
    bottom:30px;
    background:#111;
    color:#fff;
    opacity:0;
    visibility:hidden;
    pointer-events:none;
}
.top-btn.show{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
}
.top-btn:hover{
    background:#C9A86A;
    color:#111;
    transform:translateY(-6px);
}
/*====== POPUP=============*/
.popup-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.65);
    display:flex;
    justify-content:center;
    align-items:center;
    opacity:0;
    visibility:hidden;
    transition:.35s;
    z-index:99999;
}
.popup-overlay.active{
    opacity:1;
    visibility:visible;
}
.popup-box{
    width:400px;
    background:#fff;
    border-radius:24px;
    padding:45px;
    text-align:center;
    position:relative;
    animation:popup .35s ease;
}
@keyframes popup{
    from{
        transform:translateY(30px);
        opacity:0;
    }
    to{
        transform:translateY(0);
        opacity:1;
    }
}
.popup-close{
    position:absolute;
    top:15px;
    right:18px;
    background:none;
    border:none;
    font-size:30px;
    cursor:pointer;
    color:#111;
    transition:.3s;
}
.popup-close:hover{
    color:#C9A86A;
}
.popup-icon{
    font-size:70px;
    color:#C9A86A;
    margin-bottom:25px;
}
.whatsapp-icon{
    color:#25D366;
}
.popup-box h3{
    color:#111;
    font-size:28px;
    margin-bottom:15px;
}
.popup-box p{
    color:#666;
    line-height:1.8;
    margin-bottom:30px;
}
.popup-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:14px 30px;
    background:#C9A86A;
    color:#fff;
    border-radius:10px;
    text-decoration:none;
    transition:.35s;
}
.popup-btn:hover{
    background:#111;
    color:#C9A86A;
}
.whatsapp-popup-btn{
    background:#25D366;
}
.whatsapp-popup-btn:hover{
    background:#128C7E;
    color:#fff;
}
/*========FOOTER==========*/
.footer-logo{
    width: 220px;
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 20px;
}
.footer-about{
    max-width: 350px;
    font-size: 17px;
    line-height: 1.8;
    color: #d6d6d6;
}
/*======= HERO INTRO ========*/
body.intro-lock{
    overflow:hidden;
}
.hero{
    position:relative;
    height:100vh;
    overflow:hidden;
}
.hero-intro{
    position:absolute;
    inset:0;
    display:flex;
    justify-content:center;
    align-items:center;
    background:rgba(15,15,15,.72);
    backdrop-filter:blur(5px);
    z-index:10;
    transition:opacity .9s ease, visibility .9s ease;
}
.hero-intro.hide{
    opacity:0;
    visibility:hidden;
}
.hero-intro-inner{
    text-align:center;
}
.intro-logo{
    width:300px;
    max-width:80vw;
    opacity:0;
    transform:translateY(16px) scale(.98);
    animation:logoFade .9s forwards;
}
.intro-spinner{
    width:34px;
    height:34px;
    border:3px solid rgba(255,255,255,.18);
    border-top:3px solid #C9A86A;
    border-radius:50%;
    margin:28px auto 0;
    animation:spin .8s linear infinite;
}
.hero-content{
    opacity:0;
    transform:translateY(22px);
    transition:1s ease;
}
.hero.show-content .hero-content{
    opacity:1;
    transform:translateY(0);
}
@keyframes logoFade{
    to{
        opacity:1;
        transform:translateY(0) scale(1);
    }
}
@keyframes spin{
    100%{
        transform:rotate(360deg);
    }
}
@media(max-width:768px){
    .intro-logo{
        width:210px;
    }
    .intro-spinner{
        width:28px;
        height:28px;
        margin-top:22px;
    }
}
/*=====LOADING POPUP =====*/
.loading-popup,
.success-popup{
    position:fixed;
    inset:0;
    display:flex;
    justify-content:center;
    align-items:center;
    background:rgba(0,0,0,.65);
    backdrop-filter:blur(6px);
    opacity:0;
    visibility:hidden;
    transition:.35s ease;
    z-index:999999;
}
.loading-popup.show,
.success-popup.show{
    opacity:1;
    visibility:visible;
}
/*======LOADER BOX==========*/
.loader-box,
.success-box{
    width:420px;
    max-width:90%;
    background:#ffffff;
    border-radius:22px;
    padding:45px 35px;
    text-align:center;
    box-shadow:0 25px 60px rgba(0,0,0,.25);
    animation:popupScale .35s ease;
}
@keyframes popupScale{
    from{
        transform:scale(.85);
        opacity:0;
    }
    to{
        transform:scale(1);
        opacity:1;
    }
}
/*========== GOLD LOADER ======*/
.gold-loader{
    width:70px;
    height:70px;
    margin:auto;
    border:6px solid #eee;
    border-top:6px solid #C9A86A;
    border-radius:50%;
    animation:spin 1s linear infinite;
}
@keyframes spin{
    100%{
        transform:rotate(360deg);
    }
}
.loader-box h3{
    margin-top:25px;
    font-size:28px;
    color:#111;
    font-family:"Cormorant Garamond",serif;
}
.loader-box p{
    margin-top:10px;
    color:#777;
    font-size:16px;
}
/*==========SUCCESS POPUP==========*/
.success-icon{
    width:90px;
    height:90px;
    margin:auto;
    border-radius:50%;
    background:#C9A86A;
    display:flex;
    justify-content:center;
    align-items:center;
}
.success-icon i{
    color:#fff;
    font-size:42px;
}
.success-box h2{
    margin-top:25px;
    font-size:34px;
    color:#111;
    font-family:"Cormorant Garamond",serif;
}
.success-box p{
    margin:18px 0 30px;
    color:#666;
    line-height:1.8;
}
#closeSuccess{
    border:none;
    background:#C9A86A;
    color:#fff;
    padding:14px 36px;
    border-radius:40px;
    font-size:16px;
    cursor:pointer;
    transition:.3s;
}
#closeSuccess:hover{
    background:#111;
}
/*==========MOBILE========*/
@media(max-width:576px){
.loader-box,
.success-box{
    padding:35px 25px;
}
.loader-box h3,
.success-box h2{
    font-size:26px;
}
.gold-loader{
    width:60px;
    height:60px;
}
.success-icon{
    width:75px;
    height:75px;
}
.success-icon i{
    font-size:34px;
}
}
/* ============RESPONSIVE FIXES========= */
/* ---------- Tablet ---------- */
@media (max-width:991px){
    .hero{
        height:90vh;
    }
    .hero h1{
        font-size:56px;
    }
    .hero p{
        font-size:18px;
    }
    .hero-content{
        max-width:100%;
    }
    .navbar-nav{
        text-align:center;
        padding:20px 0;
    }
    .nav-link{
        margin:10px 0 !important;
    }
    .book-btn{
        display:inline-block;
        margin-top:15px;
    }
}
/* ---------- Mobile ---------- */
@media (max-width:768px){
    body{
        overflow-x:hidden;
    }
    .custom-navbar{
        padding:10px 0;
        background:#fff !important;
    }
    .custom-navbar .navbar-brand img{
        height:48px;
    }
    .navbar-collapse{
        background:#fff;
        border-radius:12px;
        padding:15px;
        margin-top:15px;
        box-shadow:0 10px 30px rgba(0,0,0,.1);
    }
    .nav-link{
        color:#111 !important;
        margin:10px 0 !important;
        text-align:left;
    }
    .book-btn{
        width:100%;
        text-align:center;
        margin-top:10px;
    }
    .hero{
        height:100vh;
    }
    .hero .container{
        align-items:center;
        text-align:center;
    }
    .hero-content{
        max-width:100%;
        padding:0 15px;
    }
    .hero-subtitle{
        font-size:12px;
        letter-spacing:2px;
        margin-bottom:10px;
    }
    .hero h1{
        font-size:44px;
        line-height:1.15;
        margin-bottom:20px;
    }
    .hero p{
        font-size:16px;
        line-height:1.7;
        margin-bottom:25px;
    }
    .hero-buttons{
        flex-direction:column;
        align-items:center;
        gap:15px;
    }
    .hero-btn1,
    .hero-btn2{
        width:100%;
        max-width:260px;
        min-width:auto;
        height:55px;
    }
}
/* ---------- Small Mobile ---------- */
@media (max-width:576px){
    .hero{
        min-height:100vh;
        padding-top:90px;
    }
    .hero h1{
        font-size:36px;
    }
    .hero p{
        font-size:15px;
    }
    .hero-subtitle{
        font-size:11px;
        letter-spacing:2px;
    }
    .section-title{
        font-size:30px;
    }
    .company-values{
        justify-content:center;
    }
    .value-card{
        width:100%;
        height:auto;
    }
    .gallery-grid{
        grid-template-columns:1fr;
    }
    .gallery-item,
    .gallery-item.large{
        height:250px;
    }
    .floating-btn{
        width:52px;
        height:52px;
        right:12px;
    }
    .brochure-btn{
        bottom:145px;
    }
    .whatsapp-btn{
        bottom:85px;
    }
    .top-btn{
        bottom:25px;
    }
}
/*======== FOOTER ======*/
.footer{
    background:#111;
    color:#ddd;
    padding:80px 0 30px;
}
.footer-logo{
    width:170px;
    margin-bottom:20px;
}
.footer-about{
    color:#bdbdbd;
    line-height:1.9;
    font-size:15px;
    margin-bottom:25px;
}
.footer h4{
    color:#fff;
    font-size:22px;
    margin-bottom:25px;
    font-family:"Cormorant Garamond",serif;
    position:relative;
}
.footer h4::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:45px;
    height:2px;
    background:#C9A86A;
}
.footer-links{
    list-style:none;
    padding:0;
    margin:0;
}
.footer-links li{
    margin-bottom:14px;
}
.footer-links a{
    color:#cfcfcf;
    text-decoration:none;
    transition:.3s;
}
.footer-links a:hover{
    color:#C9A86A;
    padding-left:6px;
}
.footer-contact p{
    display:flex;
    align-items:flex-start;
    gap:10px;
    color:#cfcfcf;
    line-height:1.8;
    margin-bottom:15px;
    font-size:15px;
}
.footer-contact i{
    color:#C9A86A;
    margin-top:4px;
    min-width:18px;
}
.footer-social{
    display:flex;
    gap:12px;
    margin-top:20px;
}
.footer-social a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    transition:.35s;
}
.footer-social a:hover{
    background:#C9A86A;
    transform:translateY(-4px);
}
.footer hr{
    margin:45px 0 25px;
    border-color:rgba(255,255,255,.12);
}
.footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}
.footer-bottom p{
    margin:0;
    color:#aaa;
    font-size:14px;
}
/*======= TABLET========*/
@media(max-width:991px){
    .footer{
        padding:70px 0 25px;
    }
    .footer .row{
        row-gap:40px;
    }
    .footer h4{
        margin-top:10px;
    }
    .footer-bottom{
        justify-content:center;
        text-align:center;
    }
}
/*======MOBILE======*/
@media(max-width:768px){
    .footer{
        padding:60px 0 20px;
        text-align:center;
    }
    .footer-logo{
        width:150px;
        margin:0 auto 20px;
        display:block;
    }
    .footer-about{
        font-size:14px;
    }
    .footer h4{
        font-size:24px;
        margin-bottom:22px;
    }
    .footer h4::after{
        left:50%;
        transform:translateX(-50%);
    }
    .footer-links{
        display:flex;
        flex-direction:column;
        align-items:center;
    }
    .footer-links li{
        margin-bottom:12px;
    }
    .footer-social{
        justify-content:center;
    }
    .footer-contact{
        display:flex;
        flex-direction:column;
        align-items:center;
    }
    .footer-contact p{
        justify-content:center;
        text-align:center;
    }
    .footer-bottom{
        flex-direction:column;
        gap:10px;
    }
}
/*=====SMALL MOBILE======*/
@media(max-width:576px){
    .footer{
        padding:50px 0 20px;
    }
    .footer-logo{
        width:130px;
    }
    .footer h4{
        font-size:22px;
    }
    .footer-about{
        font-size:13px;
        line-height:1.8;
    }
    .footer-links a{
        font-size:14px;
    }
    .footer-contact p{
        font-size:14px;
    }
    .footer-social a{
        width:40px;
        height:40px;
        font-size:15px;
    }
    .footer-bottom p{
        font-size:13px;
    }
}
/* ===========FOOTER CONTACT========== */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.footer-contact p {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    color: #bdbdbd;
    font-size: 15px;
    line-height: 1.6;
}
/* Icons */
.footer-contact p > i {
    width: 18px;
    color: #C9A86A;
    font-size: 15px;
    flex-shrink: 0;
}
/* ============== WEBSITE LINK=========== */
.footer-contact p a {
    color: #bdbdbd;
    text-decoration: none;
    transition: color .3s ease;
}
.footer-contact p a:hover {
    color: #C9A86A;
}
/* ==========PHONE============= */
.footer-phone {
    position: relative;
}
.phone-number {
    color: #bdbdbd;
    cursor: default;
    user-select: text;
    transition: color .3s ease;
}
/* =========CALL POPUP========== */
.call-tooltip {
    position: absolute;
    left: calc(100% + 5px);
    top: 50%;
    transform: translate(0, -50%) translateY(5px);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: #111;
    color: #fff;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity .25s ease,
        visibility .25s ease,
        transform .25s ease;
    box-shadow:
        0 8px 25px rgba(0,0,0,.25);
    z-index: 50;
}
/* =========== HOVER SAFE AREA Keeps popup visible while moving cursor to it======= */
.call-tooltip::after {
    content: "";
    position: absolute;
    left: -8px;
    top: 0;
    width: 8px;
    height: 100%;
}
/* ======= POPUP ARROW============ */
.call-tooltip::before {
    content: "";
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 6px solid #111;
}
/* ========== CALL ICON============== */
.call-tooltip i {
    color: #C9A86A;
    font-size: 12px;
}
/* =========== DESKTOP HOVER=========== */
@media (min-width: 769px) {
    .footer-phone:hover .phone-number {
        color: #C9A86A;
    }
    .footer-phone:hover .call-tooltip {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translate(0, -50%);
    }
    .call-tooltip:hover {
        background: #C9A86A;
        color: #111;
    }
    .call-tooltip:hover i {
        color: #111;
    }
}
/* ========== MOBILE========= */
@media (max-width: 768px) {
    .footer-contact {
        gap: 13px;
    }
    .footer-contact p {
        font-size: 14px;
    }
    .footer-phone .call-tooltip {
        left: auto;
        right: 0;
        top: calc(100% + 8px);
        transform: translateY(-5px);
    }
    .footer-phone .call-tooltip::before {
        left: auto;
        right: 15px;
        top: -6px;
        transform: none;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-bottom: 6px solid #111;
        border-top: none;
    }
    .footer-phone.show-call .call-tooltip {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }
}
/* ==========SMALL MOBILE============ */
@media (max-width: 480px) {
    .footer-contact p {
        font-size: 13px;
    }
    .call-tooltip {
        padding: 8px 12px;
        font-size: 12px;
    }
}