/********** Template CSS **********/
:root {
    --primary: #EAA636;
    --secondary: #545454;
    --light: #FDF5EB;
    --dark: #1E1916;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 60px;
    z-index: 99;
}

.hero-header {
    padding-top: 120px !important;
}

body{
    background: #000 !important;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.fixed-top {
    display: flex !important;
    transition: .5s;
}
.navbar-brand {
    max-width: 160px;
    overflow: hidden;
}

.navbar {
    position: fixed;
    top: 41px;
    height: 80px;
    width: 100%;
    align-items: center;
    z-index: 9999;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.navbar .navbar-nav .nav-link {
    padding: 20px 15px;
    color: var(--dark);
    font-size: 18px;
    font-weight: 600;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

/*@media (max-width: 991.98px) {*/
/*    .navbar .navbar-nav .nav-link  {*/
/*        padding: 10px 0;*/
/*    }*/
/*}*/

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        right: 15px;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

@media (max-width: 768px) {

    .top-bar {
        height: auto;
        padding: 6px 12px;
    }

    .navbar {
        top: 85px !important; /* 🔥 adjust for mobile */
    }
}

@media (max-width: 991px) {

    .navbar-collapse {
        position: fixed !important;
        
        left: 0;
        width: 100%;
        
        top: 80px !important;
        height: calc(100vh - 155px);
        

        background: #fff;
        padding: 20px;

        overflow-y: auto;
        z-index: 999;

        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .navbar-nav {
        display: flex;
        flex-direction: column;
    }

    .navbar-nav .nav-link {
        padding: 12px 0 !important;
        font-size: 16px;
        border-bottom: 1px solid #eee;
    }
}

/*@media (max-width: 991px) {*/
/*    .navbar-collapse {*/
        /*top: 45px !important; /* 🔥 PUSH BELOW TOPBAR 
        height: calc(100vh - 45px); /* adjust height 
/*    }*/
/*}*/




/*** Header ***/
.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: var(--primary);
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid #FFFFFF;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}

.hero-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--secondary);
}


/*** Facts ***/
.fact-item {
    transition: .3s;
}

.fact-item:hover {
    margin-top: -10px;
    background: #FFFFFF !important;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}


/*** About ***/
.img-twice::before {
    position: absolute;
    content: "";
    width: 60%;
    height: 80%;
    top: 10%;
    left: 20%;
    border: 1rem solid var(--light);
    z-index: -1;
}


/*** Service ***/
.service-item,
.service-item * {
    transition: .3s;
}

.service-item:hover {
    margin-top: -10px;
    background: var(--primary) !important;
}

.service-item:hover * {
    color: var(--light);
}

.service-item .service-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.service-item:hover .service-overlay {
    opacity: 1;
}


/*.project-item {*/
/*    position: relative;*/
/*}*/



/*.project-item:hover .project-title {*/
/*    color: #FFFFFF;*/
/*    background: var(--primary);*/
/*}*/
/*.project-item img {*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    object-fit: cover;*/
/*    display: block;*/
/*     transition: 0.4s;*/
/*}*/

/* Top items smaller */
/*.project-item.small {*/
/*    height: 180px;*/
/*}*/

/* Bottom items bigger */
/*.project-item.large {*/
/*    height: 260px;*/
/*}*/
/*.project-item:hover img {*/
/*    transform: scale(1.05);*/
/*}*/
/*** Team ***/
/*.team-img::after {*/
/*    position: absolute;*/
/*    content: "";*/
/*    width: 0;*/
/*    height: 0;*/
/*    bottom: 0px;*/
/*    left: 50%;*/
/*    transform: translateX(-50%);*/
/*    border: 30px solid;*/
/*    border-color: transparent transparent #FFFFFF transparent;      */
/*}*/

/*@media (min-width: 576px) {*/
/*    .flex-sm-row .team-img::after,*/
/*    .flex-lg-row-reverse .team-img::after {*/
/*        top: 50%;*/
/*        right: 0;*/
/*        bottom: auto;*/
/*        left: auto;*/
/*        transform: translateY(-50%);*/
/*        border-color: transparent #FFFFFF transparent transparent;*/
/*    }*/
/*}*/

/*@media (min-width: 576px) and (max-width: 991.98px) {*/
/*    .flex-sm-row-reverse .team-img::after {*/
/*        top: 50%;*/
/*        right: auto;*/
/*        bottom: auto;*/
/*        left: 0;*/
/*        transform: translateY(-50%);*/
/*        border-color: transparent transparent transparent #FFFFFF;*/
/*    }*/
/*}*/

/*@media (min-width: 992px) {*/
/*    .flex-lg-row-reverse .team-img::after,*/
/*    .flex-sm-row-reverse .team-img::after {*/
/*        top: 50%;*/
/*        right: auto;*/
/*        bottom: auto;*/
/*        left: 0;*/
/*        transform: translateY(-50%);*/
/*        border-color: transparent transparent transparent #FFFFFF;*/
/*    }*/

/*    .flex-sm-row-reverse.flex-lg-row .team-img::after {*/
/*        top: 50%;*/
/*        right: 0;*/
/*        bottom: auto;*/
/*        left: auto;*/
/*        transform: translateY(-50%);*/
/*        border-color: transparent #FFFFFF transparent transparent;*/
/*    }*/
/*}*/


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item img {
    width: 60px;
    height: 60px;
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 22px;
    color: var(--light);
    background: var(--primary);
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--primary);
    background: var(--dark);
}


/*** Footer ***/
@media (min-width: 992px) {
    .footer::after {
        position: absolute;
        content: "";
        width: 1px;
        height: 100%;
        top: 0;
        left: 50%;
        background: var(--secondary);
    }
}

.footer-shape::before {
    position: absolute;
    content: "";
    width: 80px;
    height: 100%;
    top: 0;
    left: -40px;
    background: var(--secondary);
    transform: skew(40deg);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: rgba(255, 255, 255, .5);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: rgba(255, 255, 255, .5);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.gallery-item img {
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: 0.4s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.lb-image {
    max-width: 90vw !important;
    max-height: 85vh !important;
    object-fit: contain;
    margin: auto;
    display: block;
}
.lb-outerContainer {
    background: transparent !important;
}

.lb-container {
    background: transparent !important;
    padding: 0 !important;
}

.lightboxOverlay {
    background: rgba(0,0,0,0.9) !important;
}

/* remove all container spacing */
.lb-outerContainer,
.lb-container{
    background: transparent !important;
    padding: 0 !important;
}

/* remove image border */
.lb-image {
    border: none !important;
}

/* make image fill screen */
.lb-dataContainer {
    display: none !important;
}

/* make image truly fullscreen */
.lb-outerContainer {
    width: 100% !important;
    height: 100vh !important;
}

.lb-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/* image full fit */
.lb-image {
    max-width: 100vw !important;
    max-height: 100vh !important;
    width: auto;
    height: auto;
}


.package-list {
    text-align: left;
    padding-left: 20px;
    margin-bottom: 20px;
}

.package-list li {
    font-size: 15px;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.5;
}

.package-card {
    transition: all 0.3s ease;
    border-radius: 12px;
}

/* Hover Effect */
.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Smooth button animation */
.package-card .btn {
    transition: all 0.3s ease;
}

.package-card:hover .btn {
    background-color: #000;
    transform: scale(1.05);
}


.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* IMAGE */
.blog-image {
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* DATE BADGE */
.date-badge {
    position: absolute;
    left: 15px;
    bottom: -20px;
    background: #ff3b5c;
    color: #fff;
    padding: 10px 12px;
    font-weight: bold;
    text-align: center;
    border-radius: 6px;
}

.date-badge span {
    display: block;
    font-size: 12px;
    font-weight: normal;
}

/* CONTENT */
.blog-content-box {
    padding: 30px 20px 20px;
}

.blog-content-box h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-content-box p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

/* BUTTON */
.blog-content-box .btn {
    border-radius: 6px;
    padding: 8px 18px;
}

.blog-gallery-img {
    height: 200px;
    object-fit: cover;
    transition: 0.3s;
    cursor: pointer;
}

.blog-gallery-img:hover {
    transform: scale(1.05);
}


/* Input styling */
#datePicker {
    height: 45px;
    border: 1px solid #ddd;
}

/* Button hover */
.btn-outline-dark:hover {
    background: #000;
    color: #fff;
}

/* Improve spacing */
.alert {
    font-size: 14px;
}




.top-bar {
    background: linear-gradient(90deg, #c9922e, #e6b35c);
    color: #fff;

    height: 45px;
    width: 100%;

    display: flex;
    align-items: center;        /* ✅ vertical center */
    justify-content: space-between;

    padding: 0 20px;

    position: fixed;
    top: 0;
    z-index: 9999;

    font-family: 'Poppins', sans-serif;
}

/*.top-bar {*/
    
/*    color: #fff;*/
/*    height: 45px;*/
/*    font-size: 14px;*/
/*    position: fixed;*/
/*    top: 0;*/
/*    width: 100%;*/
/*    z-index: 9999;*/
/*}*/

/* Links */
.top-bar a {
    color: #fff;
    text-decoration: none;
}

.top-bar a:hover {
    text-decoration: underline;
}

/* Right buttons */
.top-actions .btn {
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
}

.btn-book {
    background: #ffc107;
    color: #000;
}

.btn-login {
    background: #ffc107;
    color: #000;
}

.btn-check {
    background: #ffc107;
    color: #000;
}
.btn-close {
    
      background-color:#d4af37;
    opacity:1 !important;
}


/* Left contact */
.top-contact {
    display: flex;
    align-items: center;  /* ✅ vertical center */
    gap: 25px;
}

/* Icons spacing */
.top-contact i {
    margin-right: 6px;
}

/* Links */
.top-bar a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.top-bar a:hover {
    color: #1e1e1e;
}


/* TOP BAR LAYOUT */
/*.top-bar {*/
/*    background: linear-gradient(90deg, #c9922e, #e6b35c);*/
/*    padding: 8px 20px;*/
/*    display: flex;*/
/*    justify-content: space-between;*/
/*    align-items: center;*/
/*    color: #fff;*/
/*    font-size: 16px;*/
/*}*/

/* CONTACT TEXT */
.top-contact span {
    margin-right: 20px;
}

/* ICON STYLE */
.top-contact i {
    margin-right: 6px;
    display: inline-block;
}

.top-actions {
    display: flex;
    align-items: center; /* ✅ vertical center */
}

/* 🔥 PHONE ICON ANIMATION (SHAKE) */
@keyframes phoneShake {
    0%, 100% { transform: rotate(0); }
    25% { transform: rotate(10deg); }
    50% { transform: rotate(-10deg); }
    75% { transform: rotate(8deg); }
}

.contact-item:first-child i {
    animation: phoneShake 2s infinite;
}

/* ✉️ EMAIL ICON ANIMATION (FLOAT) */
@keyframes floatMail {
    0% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
    100% { transform: translateY(0); }
}

.contact-item:last-child i {
    animation: floatMail 2.5s infinite;
}

/* LINKS */
.top-contact a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.top-contact a:hover {
    text-decoration: underline;
}

/* BUTTON */
.top-btn {
    background: #000;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    transition: 0.3s;
}

/* BUTTON HOVER */
.top-btn:hover {
    background: #222;
    transform: scale(1.05);
}

/* ✨ ICON HOVER GLOW */
.contact-item:hover i {
    transform: scale(1.2);
    text-shadow: 0 0 8px rgba(255,255,255,0.8);
}


/* Right side */
.top-actions {
    margin-left: auto;
}

/* Buttons */
.top-actions .btn {
    background: #fff;
    color: #c58b2b;
    font-weight: 600;
    font-size: 13px;
    padding: 5px 14px;
    border-radius: 20px;
    margin-left: 10px;
    transition: 0.3s;
}

.top-actions .btn:hover {
    background: #1e1e1e;
    color: #fff;
}

/* ================= MOBILE FIX ================= */
@media (max-width: 768px) {

    .top-bar {
        flex-direction: column;
        align-items: flex-start;
        padding: 6px 12px;
        height: auto;
        gap: 5px;
    }

    .top-contact {
        flex-direction: column;
        align-items: flex-start;
        gap: 3px;
        font-size: 13px;
    }

    .top-actions {
        width: 100%;
        display: flex;
        justify-content: flex-start;
    }

    .top-actions .btn {
        font-size: 11px;
        padding: 4px 10px;
        margin-left: 0;
        margin-right: 8px;
    }


/* ===== LOGO CLEAN FIX ===== */
/* Default (Mobile First) */
.logo-img {
    height: 50px;
    width: auto;
    display: block;
}

/* Tablet */
@media (min-width: 576px) {
    .logo-img {
        height: 10px;
    }
}

/* Desktop */
@media (min-width: 992px) {
    .logo-img {
        height: 100px;
        max-width: 400px;
    }
}






/* FULL WIDTH FIX */
#heroCarousel {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

/* DEFAULT BOOTSTRAP STRUCTURE */
.carousel-inner,
.carousel-item {
    width: 100%;
    height: 100vh;
}

/* HERO WRAPPER */
.hero-slide {
    position: relative;
    width: 100%;
    height: 100vh;
}

/* IMAGE FIX */
.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* OVERLAY */
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.5);
}

/* TEXT */
.hero-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    color: #fff;
    z-index: 2;
}

}


/* ============================= */
/* 🔥 SERVICE DETAIL PREMIUM UI */
/* ============================= */

/* Section spacing */
.service-section {
    max-width: 1200px;
}

/* ================= IMAGE ================= */
.service-img-wrapper {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.service-detail-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.4s ease;
}

.service-detail-img:hover {
    transform: scale(1.05);
}

/* ================= PRICE BADGE ================= */
.price-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;

    background: linear-gradient(135deg, #c9922e, #e6b35c);
    color: #000;

    padding: 10px 18px;
    font-size: 18px;
    font-weight: 700;

    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);

    letter-spacing: 0.5px;
}

/* ================= TEXT ================= */
.service-title {
    font-size: 38px;
    letter-spacing: -0.5px;
}

.service-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

/* ================= CARD ================= */
.availability-card {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);

    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.05);

    box-shadow: 0 20px 40px rgba(0,0,0,0.08);

    transition: 0.3s ease;
}

/* ================= INPUT ================= */
.form-control {
    height: 45px;
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 10px 15px;
    font-size: 14px;
    transition: 0.3s;
}

.form-control:focus {
    border-color: #c9922e;
    box-shadow: 0 0 0 3px rgba(201,146,46,0.15);
}

/* ================= BUTTONS ================= */
.btn-premium {
    background: linear-gradient(135deg, #1e1e1e, #333);
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-check {
    background: #fff;
    border: 1px solid #ddd;
    padding: 12px;
    border-radius: 10px;
    font-weight: 500;
    transition: 0.3s;
}

.btn-check:hover {
    background: #000;
    color: #fff;
}

/* ================= ALERT ================= */
.alert {
    font-size: 14px;
    border-radius: 10px;
}

/* ================= DIVIDER ================= */
hr {
    opacity: 0.1;
}

/* ================= MOBILE ================= */
@media (max-width: 991px) {
    .service-detail-img {
        height: 320px;
    }

    .service-title {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .service-detail-img {
        height: 240px;
    }

    .service-title {
        font-size: 24px;
    }

    .price-badge {
        font-size: 14px;
        padding: 8px 14px;
    }
}

.calendar-icon {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: #c9922e;
    font-size: 16px;
    pointer-events: none;
}

.date-input {
    padding-left: 40px !important;
    background: #fff !important;
    border: 1px solid #ddd !important;
    color: #333;
}
/* Make sure button is visible */
.btn-gold {
    display: block !important;
    width: 100%;
    background: linear-gradient(135deg, #c9922e, #e6b35c);
    color: #000;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    margin-top: 10px;
}

/* Fix parent issues */
.availability-card {
    overflow: visible !important;
}

/* Prevent collapse */
form {
    display: block;
}


/* ================= WHATSAPP FIX ================= */

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;

    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #25D366;
    color: #fff;

    border-radius: 50%;
    z-index: 999999;

    font-size: 26px;
    text-decoration: none;
}

/* Hover (desktop only) */
@media (hover: hover) {
    .whatsapp-float:hover {
        background-color: #1ebe5d;
        transform: scale(1.1);
    }
}

/* Mobile only */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 48px;
        height: 48px;
        font-size: 22px;
        bottom: 15px;
        right: 15px;
    }


}

/* ================= WHATSAPP PULSE ================= */

@keyframes pulseWhatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float {
    animation: pulseWhatsapp 2.2s infinite;
}
/* ================= CALL BUTTON ================= */

.call-float {
    position: fixed;
    bottom: 90px; /* above WhatsApp */
    right: 20px;

    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #007bff;
    color: #fff;

    border-radius: 50%;
    font-size: 22px;
    text-decoration: none;

    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 999999;

    transition: 0.3s;
}

/* Hover (desktop only) */
@media (hover: hover) {
    .call-float:hover {
        background-color: #0056b3;
        transform: scale(1.1);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .call-float {
        width: 48px;
        height: 48px;
        font-size: 18px;
        bottom: 80px;
        right: 15px;
    }
}

/* 🔥 Pulse animation (premium feel) */
@keyframes pulseCall {
    0% { box-shadow: 0 0 0 0 rgba(0,123,255, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(0,123,255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0,123,255, 0); }
}

.call-float {
    animation: pulseCall 2s infinite;
}

/* ================= MAIL BUTTON ================= */

.mail-float {
    position: fixed;
    bottom: 160px; /* above call */
    right: 20px;

    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #ea4335; /* red */
    color: #fff;

    border-radius: 50%;
    font-size: 20px;
    text-decoration: none;

    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 999999;

    transition: 0.3s;
}

/* Hover */
@media (hover: hover) {
    .mail-float:hover {
        background-color: #c5221f;
        transform: scale(1.1);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .mail-float {
        width: 48px;
        height: 48px;
        font-size: 18px;
        bottom: 140px;
        right: 15px;
    }
}

@keyframes pulseMail {
    0% { box-shadow: 0 0 0 0 rgba(234, 67, 53, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(234, 67, 53, 0); }
    100% { box-shadow: 0 0 0 0 rgba(234, 67, 53, 0); }
}

.mail-float {
    animation: pulseMail 2.5s infinite;
    animation-delay: 1s;
}

/* ================= PREMIUM FOOTER ================= */

.footer-bottom {
    background: linear-gradient(90deg, #1c1c1c, #2a2a2a);
    color: #ccc;
    font-size: 14px;
    padding: 15px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom .brand {
    color: #e6b35c;
    font-weight: 600;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    position: relative;
    transition: 0.3s;
}

.footer-links a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    left: 0;
    bottom: -2px;
    background: #e6b35c;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-links span {
    color: #555;
}

@media (max-width: 768px) {
    .footer-bottom {
        text-align: center;
    }

    .footer-links {
        justify-content: center;
        margin-top: 5px;
    }
}

/* ================= ABOUT PHOTOGRAPHY ================= */



/* HERO */
.about-hero {
    height: 60vh;
    background: url('https://images.unsplash.com/photo-1519741497674-611481863552') center/cover no-repeat;
    position: relative;
}

.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size:20px;

    line-height:1.1;

    white-space:nowrap;
}

.hero-subtitle {
    color: #ddd;
        max-width:700px;
    margin:0 auto;
    line-height:1.8;
}

/* GENERAL */
.text-gold {
    color: #e6b35c;
}

.about-section {
    background: #0d0d0d;
    padding-top:50px;
}
.about-section .row{
    align-items:flex-start !important;
}

.about-text {
    color: #ccc;
    line-height: 1.8;
}

/* SERVICES */
.services-section {
    background: #111;
}

.service-card {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 10px;
    transition: 0.3s;
}

.service-card i {
    font-size: 28px;
    color: #e6b35c;
    margin-bottom: 10px;
}

.service-card:hover {
    transform: translateY(-5px);
}

/* STATS */
.stats-section {
    background: #000;
    color: #fff;
}

.stats-section h2 {
    color: #e6b35c;
}

/* WHY */
.why-section {
    background: #111;
}

.why-box {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

.why-box i {
    font-size: 28px;
    color: #e6b35c;
    margin-bottom: 10px;
}

/* CTA */
.cta-section {
    background: linear-gradient(90deg, #c9922e, #e6b35c);
    color: #000;
}

.btn-gold {
    background: #000;
    color: #fff;
    padding: 10px 25px;
    border-radius: 25px;
}

/* ===== BOOKING MODAL ===== */

.booking-modal {
    background: #111;
    color: #fff;
    border-radius: 12px;
}

.booking-modal .form-control,
.booking-modal .form-select {
    background: #1a1a1a;
    border: none;
    color: #fff;
}

.booking-modal .form-control::placeholder {
    color: #aaa;
}

.booking-modal .form-control:focus,
.booking-modal .form-select:focus {
    box-shadow: 0 0 0 2px #e6b35c;
    background: #1a1a1a;
}

.text-gold {
    color: #e6b35c;
}

/* BUTTON */
.btn-gold {
    background: #e6b35c;
    color: #000;
    border-radius: 25px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-gold:hover {
    background: #d4a24d;
}
.modal-dialog {
    margin-top: 140px; /* adjust based on navbar height */
}
/* =========================
   HERO COLLAGE GALLERY
========================= */

.hero-gallery-section{
    background:#f8f8f8;
    overflow:hidden;
}

.hero-gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    align-items:center;
}

/* CARD */

.hero-gallery-grid .gallery-item{
    position:relative;
    border-radius:28px;
    overflow:hidden;
    background:#fff;
    padding:8px;

    /* SAME SIZE FOR ALL */
    height:280px;

    box-shadow:0 10px 35px rgba(0,0,0,0.15);
    transition:.4s ease;
}

.hero-gallery-grid .gallery-item:hover{
    transform:translateY(-8px);
}

/* IMAGE */

.hero-gallery-grid .gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:22px;
}

/* REMOVE OLD DIFFERENT HEIGHTS */

.item-1,
.item-2,
.item-3,
.item-4,
.item-5,
.item-6,
.item-7,
.item-8{
    transform:none !important;
}

/* RESPONSIVE */

@media(max-width:991px){

    .hero-gallery-grid{
        grid-template-columns:repeat(2,1fr);
        gap:20px;
    }

    .hero-gallery-grid .gallery-item{
        height:240px;
    }
}

@media(max-width:575px){

    .hero-gallery-grid{
        grid-template-columns:1fr;
    }

    .hero-gallery-grid .gallery-item{
        height:250px;
    }
}

.glightbox-clean .gslide-image img{
    max-height:90vh !important;
    object-fit:contain;
}



/* =========================
   PREMIUM PACKAGE SECTION
========================= */

.premium-package-section{
    background:#f8f6ef;
    overflow:hidden;
}


/* SUBTITLE */
.package-subtitle{
    display:inline-block;
    color:#c79818;
    font-weight:600;
    letter-spacing:2px;
    margin-bottom:10px;
    text-transform:uppercase;
    font-size:14px;
}


/* MAIN TITLE */
.package-main-title{
    font-size:42px;
    font-weight:700;
    font-family:"Playfair Display", serif;
}


/* =========================
   CARD
========================= */

.premium-package-card{
    background:#fff;
    border-radius:32px;
    overflow:hidden;
    border:1px solid #eee;
    box-shadow:0 10px 40px rgba(0,0,0,0.05);
    transition:.4s ease;

}


.premium-package-card:hover{
    transform:translateY(-6px);
}


/* FIX HEIGHT */
.premium-package-card .row{
    min-height:450px;
}


/* =========================
   IMAGE SIDE
========================= */

.package-image-wrapper

{ 
height:450px;
display:flex;
align-items:stretch;
justify-content:center;
overflow:hidden;
border-radius:32px 0 0 32px;
background:#000; 
    
} 
/* IMAGE */
.package-cover-img{
    width:100%;
    height:100%; 
    object-position:center;
    display:block;
}



/* =========================
   CONTENT SIDE
========================= */

.package-content-wrapper{

    padding:45px 42px;

     height:430px;

    display:flex;

    flex-direction:column;

    justify-content:center;
}


/* ICON */
.package-icon{
    font-size:18px;
    color:#c79818;
    display:inline-block;
    margin-bottom:5px;
    padding-top: 10px;
}


/* TITLE */
.package-title{
    font-size:25px;
    font-weight:700;
    margin-bottom:12px;
    padding-top: 10px;
    color:#111;
    
}


/* DESCRIPTION */
.package-description{
    color:#666;
    line-height:1.8;
    margin-bottom:12px;
    font-size:15px;
}


/* =========================
   TAGS
========================= */

.package-tags{

    display:grid;

    grid-template-columns:
        repeat(2,minmax(0,1fr));

    gap:8px;

    margin-top:10px;

    margin-bottom:20px;

    width:100%;
}


/* TAG */
.package-tags span{

    background:#f8f6ef;

    border:1px solid #e6d9b7;

    padding:10px 14px;

    border-radius:50px;

    font-size:12px;

    color:#444;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    min-height:38px;

    transition:.3s ease;
}


/* TAG HOVER */
.package-tags span:hover{
    background:#c79818;
    color:#fff;
}


/* SCROLLBAR */
.package-tags::-webkit-scrollbar{
    width:5px;
}

.package-tags::-webkit-scrollbar-thumb{
    background:#c79818;
    border-radius:10px;
}


/* =========================
   BUTTON
========================= */


.premium-package-btn{

    width:270px;

    height:58px;

    border-radius:60px;

    background:#c79818;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    margin:15px auto 0;

    text-decoration:none;

    font-size:18px;

    font-weight:700;

    letter-spacing:.5px;

    transition:.3s ease;
}




.premium-package-btn:hover{

    background:#111 !important;

    color:#fff !important;
}

.premium-package-btn:hover{
    background:#111;
    color:#fff;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .premium-package-card .row{
        min-height:auto;
    }

    .package-image-wrapper{
        height:400px;
        border-radius:32px 32px 0 0;
    }

    .package-content-wrapper{
        height:auto;
        padding:40px 35px;
    }

    .package-title{
        font-size:36px;
    }

    .package-description{
        font-size:16px;
        line-height:1.8;
    }

    .package-tags{
        grid-template-columns:1fr;
        max-height:none;
        overflow:visible;
    }
}


/* MOBILE */
@media(max-width:575px){

    .package-main-title{
        font-size:30px;
    }

    .package-content-wrapper{
        padding:28px;
    }

    .package-title{
        font-size:22px;
    }

    .package-image-wrapper{
        height:380px;
    }
    

    .package-description{
        font-size:15px;
    }

    .package-tags span{
        font-size:13px;
        padding:10px 14px;
    }

}

   HOMEPAGE GALLERY
========================= */

.gallery-masonry{
    column-count:4;
    column-gap:20px;
}

.gallery-card{
    width:100%;
    margin-bottom:20px;
    break-inside:avoid;
}

.gallery-image{
    width:100% !important;
    display:block;
    object-fit:cover;
}

/* DIFFERENT HEIGHTS */

.gallery-card:nth-child(4n+1) .gallery-image{
    height:220px;
    object-fit:cover;
}

.gallery-card:nth-child(4n+2) .gallery-image{
    height:380px;
    object-fit:cover;
}

.gallery-card:nth-child(4n+3) .gallery-image{
    height:260px;
    object-fit:cover;
}

.gallery-card:nth-child(4n+4) .gallery-image{
    height:340px;
    object-fit:cover;
}

/* OVERLAY */
/*.gallery-overlay{*/
/*    position:absolute;*/

/*    left:50%;*/
/*    bottom:15px;*/

/*    transform:translateX(-50%);*/

/*    width:80%;*/

/*    background:#fff;*/

/*    padding:16px 12px;*/

/*    text-align:center;*/

/*    z-index:5;*/

/*    display:flex;*/
/*    align-items:center;*/
/*    justify-content:center;*/

/*    min-height:60px;*/

/*    transition:.3s ease;*/
/*}*/

/*.gallery-overlay span{*/
/*    color:#111;*/
/*    font-size:24px;*/
/*    font-weight:700;*/
/*    line-height:1.2;*/

/*    display:block;*/
/*    width:100%;*/
/*}*/


.gallery-overlay{
    position:absolute !important;

    left:50% !important;
    bottom:15px !important;

    transform:translateX(-50%) !important;

    width:80% !important;

    background:#ffffff !important;

    opacity:1 !important;

    visibility:visible !important;

    z-index:999 !important;

    padding:12px 10px !important;

    display:flex !important;
    align-items:center !important;
    justify-content:center !important;

    min-height:60px !important;
}

.gallery-overlay span{
    font-size:22px;
    font-weight:700;
    color:#111;

    display:inline-block;

    line-height:1;

    margin:0;
    padding:0;
}



/* HOVER */

.gallery-card:hover .gallery-image{
    transform:scale(1.05);
}

.gallery-card:hover .gallery-overlay{
    background:#c79818;
}

.gallery-card:hover .gallery-overlay span{
    color:#fff;
}

.gallery-card a{
    display:block;
    position:relative;
}
/* RESPONSIVE */

@media(max-width:991px){

    .gallery-masonry{
        column-count:2;
    }

    .gallery-image{
        height:280px !important;
    }

    .gallery-overlay span{
        font-size:18px;
    }
}

@media(max-width:575px){

    .gallery-masonry{
        column-count:1;
    }

    .gallery-image{
        height:300px !important;
    }
}
/* =========================
   CUSTOM HOMEPAGE GALLERY
========================= */

.custom-gallery-grid{
    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;
}

/* ITEM */

.custom-gallery-item{
    position:relative;
    overflow:hidden;
}

/* LINK */

.custom-gallery-link{
    position:relative;
    display:block;
    overflow:hidden;
}

/* IMAGE */

.custom-gallery-img{
    width:100%;
    height:320px;
    object-fit:cover;
    display:block;

    transition:.4s ease;
}





/* TITLE BOX */

/*.custom-gallery-title{*/
/*    position:absolute;*/

/*    left:50%;*/
/*    bottom:15px;*/

/*    transform:translateX(-50%);*/

/*    width:80%;*/

/*    background:#fff;*/

/*    color:#111;*/

/*    text-align:center;*/

/*    padding:14px 10px;*/

/*    font-size:22px;*/

/*    font-weight:700;*/

/*    z-index:5;*/

/*    transition:.3s ease;*/
/*}*/

/* HOVER */

.custom-gallery-link:hover .custom-gallery-img{
    transform:scale(1.05);
}

.custom-gallery-link:hover .custom-gallery-title{
    background:#c79818;
    color:#fff;
}

/* TITLES */

.gallery-small-title{
    color:#c79818;
    letter-spacing:2px;
    font-weight:600;
}

.gallery-main-title{
    font-size:42px;
    font-weight:700;
    font-family:"Playfair Display", serif;
    line-height:1.2;
}

/* MOBILE */

@media(max-width:991px){

    .custom-gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .custom-gallery-img{
        height:280px !important;
    }

    .gallery-main-title{
        font-size:38px;
    }

    .custom-gallery-title{
        font-size:18px;
    }
}

@media(max-width:575px){

    .custom-gallery-grid{
        grid-template-columns:1fr;
    }

    .custom-gallery-img{
        height:320px !important;
    }

    .gallery-main-title{
        font-size:30px;
    }
}

/* =========================
   DEDICATED GALLERY GRID
========================= */

/*.premium-gallery-card{*/

/*    overflow:hidden;*/

/*    border-radius:24px;*/

/*    position:relative;*/

/*    background:#fff;*/

/*    box-shadow:0 10px 30px rgba(0,0,0,0.12);*/

/*    transition:.4s ease;*/
/*}*/

/*.premium-gallery-image{*/

/*    width:100%;*/

/*    height:420px;*/

/*    object-fit:cover;*/

/*    transition:.5s ease;*/
/*}*/




.premium-gallery-card{

    overflow:hidden;

    border-radius:24px;

    position:relative;

    background:#fff;

    box-shadow:0 10px 30px rgba(0,0,0,0.12);

    transition:.4s ease;
}


/* IMAGE */

.premium-gallery-image{

    width:100%;

    height:340px;

    object-fit:cover;

    /* SHOW MORE IMAGE */
    object-position:top;

    transition:.5s ease;
}




/* HOVER */

.premium-gallery-card:hover{

    transform:translateY(-8px);
}

.premium-gallery-card:hover .premium-gallery-image{

    transform:scale(1.05);
}

/* MOBILE */

@media(max-width:768px){

    .premium-gallery-image{

        height:250px;
    }
}



.gallery-slider-wrapper::-webkit-scrollbar{
    display:none;
}



/* CARD */

.gallery-slide{

    flex:0 0 auto;

    transition:.4s ease;
}

.gallery-slide:nth-child(odd){
    margin-top:40px;
}

.gallery-slide:nth-child(even){
    margin-bottom:40px;
}

/* IMAGE */



/* HOVER */

.gallery-slide:hover{

    transform:translateY(-10px);
}

.gallery-slide:hover .gallery-slide-img{

    transform:scale(1.03);
}

/* MOBILE */

@media(max-width:768px){

    .gallery-slide-img{

        width:220px;

        height:300px;
    }
    
        .gallery-page-title{

        margin-top:100px;
    }
    
}
@media(max-width:768px){

    .blog-page-title{

        margin-top:110px !important;

        line-height:1.2;
    }
}

@media(max-width:768px){
    .hero-gallery-section{
        margin-top: 100px !important;
    }
}


/* WELCOME */

.welcome-text{

    color:#d79b2e;

    font-size:28px;

    font-weight:600;

    margin-bottom:15px;

    letter-spacing:1px;
    
    margin-left:-50px;
    
    
     
}

.welcome-title{

    margin-left:120px;
}

/* BRAND */

.brand-title{

    font-family:"Playfair Display", serif;

    font-size:78px;

    font-weight:700;

    color:#d79b2e;

    line-height:1;

    letter-spacing:-2px;
}

.welcome-logo{

    margin-left:230px;
}

/* MOBILE */

@media(max-width:768px){

    .hero-logo{

        width:60px;

        height:60px;
    }

    .brand-title{

        font-size:42px;
    }

    .welcome-text{

        font-size:20px;
    }
    
    .welcome-title {
        margin-top: 20px;
        padding-left: 30px;
    }
    
    .hero-title{
        
    word-wrap:break-word;
    overflow-wrap:break-word;
    white-space:normal;
    line-height:1.2;
    }

}


.story-image{

    width:100%;

   

    object-fit:contain;

    border-radius:30px;

    display:block;
    
     margin-top:28px;
}
@media(max-width:768px){

    .story-image{

        height:320px;
    }
}


/* =========================
   CUSTOM PACKAGE DROPDOWN
========================= */

.custom-dropdown{

    position:relative;
}


/* MENU */

.custom-dropdown-menu{

    position:absolute;

    top:50%;

    left:50%;

    transform:translateX(-50%);

    min-width:210px;
    
    min-height: 100px;

    background:#000;

    border-radius:14px;

    padding:4px 0;

    margin-top:10px;

    list-style:none;

    z-index:99999;

    box-shadow:
    0 15px 35px rgba(0,0,0,.30);

    opacity:0;

    visibility:hidden;

    transition:.3s ease;
}


/* SHOW DROPDOWN */

.custom-dropdown:hover .custom-dropdown-menu{

    opacity:1;

    visibility:visible;

    transform:translateY(0);
}


/* ITEMS */

.custom-dropdown-menu li a{

    display:block;

    padding:5px 18px;

    color:#fff;

    text-decoration:none;

    font-size:14px;

    font-weight:500;
    line-height:1.2;

    transition:.3s ease;
}


/* TEXT HOVER */

.custom-dropdown-menu li a:hover{

    color:#d4af37;
}


/* MOBILE */

@media(max-width:991px){

    .custom-dropdown-menu{

        position:static;

        opacity:1;

        visibility:visible;

        transform:none;

        display:none;

        width:100%;

        margin-top:10px;
    }

    .custom-dropdown:hover .custom-dropdown-menu{

        display:block;
    }
}



/* SECTION */

.footer-contact-section{

    background:#000;

    color:#fff;
}

/* TITLE */

.footer-contact-title{

    font-family:"Playfair Display", serif;

    font-size:38px;

    font-weight:700;

    color:#d79b2e;
}

/* INPUT */

.footer-form-control{

    height:55px;

    border:none;

    border-radius:10px;

    background:#111;

    color:#fff;

    padding:14px 18px;

    font-size:15px;

    box-shadow:none;
}

.footer-form-control:focus{

    background:#181818;

    color:#fff;

    border:1px solid #d79b2e;

    box-shadow:none;
}

.footer-form-control::placeholder{

    color:#999;
}

/* TEXTAREA */

.footer-textarea{

    height:140px !important;

    resize:none;
}

/* BUTTON */

.footer-submit-btn{

    background:#d79b2e;

    color:#fff;

    border:none;

    padding:12px 34px;

    border-radius:8px;

    font-size:16px;

    font-weight:600;

    transition:.3s ease;
}

.footer-submit-btn:hover{

    background:#fff;

    color:#000;
}

/* CONTACT BOX */

.footer-contact-box{

    gap:15px;

    margin-bottom:28px;

    align-items:flex-start;
}

/* ICON */

.footer-contact-icon{

    width:55px;

    height:55px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

    color:#fff;

    flex-shrink:0;
}

/* ICON COLORS */

.phone-icon{

    background:#ff3b30;
}

.whatsapp-icon{

    background:#1db954;
}

.mail-icon{

    background:#7b2ff7;
}

/* CONTACT TEXT */

.footer-contact-box h5{

    font-size:32px;

    margin-bottom:10px;

    color:#fff;

    position:relative;
}

.footer-contact-box h5::after{

    content:"";

    display:block;

    width:90px;

    height:2px;

    background:#d79b2e;

    margin-top:8px;
}

.footer-contact-box p{

    color:#ccc;

    font-size:16px;

    line-height:1.6;
}

/* MOBILE */

@media(max-width:768px){

    .footer-contact-title{

        font-size:30px;
    }

    .footer-contact-box h5{

        font-size:20px;
    }

    .footer-contact-icon{

        width:48px;

        height:48px;

        font-size:18px;
    }
}

.package-header{
    background: linear-gradient(135deg, #c89b3c, #f5d06f);
    color: #111 !important;
    font-size: 20px;
    letter-spacing: .5px;
    border-radius: 14px 14px 0 0;
    box-shadow: 0 4px 15px rgba(200,155,60,.25);
}
@media (max-width: 768px){

    .package-page-title{
        margin-top: 80px !important;
    }

}
.footer-contact-box a{
    color: inherit;
    text-decoration: none;
}

.footer-contact-box a:hover{
    color: #d4af37;
}
.success-modal{
    background: #0f0f0f;
    border: 1px solid #c89b3c;
    border-radius: 20px;
    overflow: hidden;
}

.success-icon{
    width: 90px;
    height: 90px;
    margin: auto;
    border-radius: 50%;
    background: linear-gradient(135deg,#c89b3c,#f5d06f);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #111;
    box-shadow: 0 0 25px rgba(200,155,60,.35);
}

.text-gold{
    color: #f5d06f;
}

/*.hero-image-box{*/
/*    margin-top: -40px;*/
/*}*/
/* Mobile fix */
/*@media(max-width:768px){*/

/*    .hero-image-box{*/
/*        margin-left: 0;*/
/*        margin-top: 30px;*/
/*    }*/

/*}*/

/* BIRD TOP BUTTON */
.bird-top-btn{

    position:fixed;
    right:21px;
    bottom:250px;

    width:50px;
    height:50px;

    background:#d4a017;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    z-index:9999;

    color:#fff;

    font-size:22px;

    text-decoration:none;

    box-shadow:0 8px 25px rgba(0,0,0,0.25);

    opacity:0;
    visibility:hidden;

    transition:.35s ease;
}


/* SHOW */
.bird-top-btn.show{
    opacity:1;
    visibility:visible;
}


/* HOVER */
.bird-top-btn:hover{

    transform:
        translateY(-8px)
        scale(1.1);

    color:#f1d06b;
}


/* FLYING EFFECT */
.bird-top-btn i{

    animation:
        birdFly 1.4s infinite ease-in-out;

    text-shadow:
        0 8px 20px rgba(212,175,55,.35);
}






/* MOBILE */
@media(max-width:768px){

    .bird-top-btn{

        right:15px;

        bottom:240px;

        font-size:25px;

    }

}
/* ================= HERO IMAGE FIX ================= */

.hero-image-box{

    display:flex;

    justify-content:center;

    align-items:center;

    height:100%;

    margin-top:0;
}


/* MAIN IMAGE */

.hero-main-image{

    width:100%;

    max-width:620px;

    height:650px;

    object-fit:cover;

    border-radius:18px;

    display:block;

    box-shadow:0 10px 35px rgba(0,0,0,0.25);
}


/* TABLET */

@media(max-width:991px){

    .hero-main-image{

        max-width:100%;

        height:500px;
    }
}


/* MOBILE */

@media(max-width:768px){

    .hero-image-box{

        margin-top:30px;
    }

    .hero-main-image{

        height:380px;

        width:100%;
    }
}

/* MOVE HERO TEXT UP */

.hero-content-col{

    display:flex;

    flex-direction:column;

    justify-content:center;

    margin-top:-50px;
}


/* MOBILE RESET */

@media(max-width:768px){

    .hero-content-col{

        margin-top:0;
    }

}
/* ================= MOBILE HERO FIX ================= */

@media(max-width:768px){

    html,
    body{
        overflow-x:hidden !important;
        width:100%;
    }

    .hero-header{
        overflow:hidden;
        padding-left:0 !important;
        padding-right:0 !important;
    }

    .hero-header .container,
    .hero-header .container-fluid{
        padding-left:15px !important;
        padding-right:15px !important;
        overflow:hidden;
    }

    .hero-row{
        margin-left:0 !important;
        margin-right:0 !important;
    }

    .hero-content-col{
        width:100%;
        margin-top:20px !important;
        padding-left:0 !important;
        padding-right:0 !important;
    }

    .hero-content-wrapper{
        width:100%;
        text-align:left;
    }

    /* IMAGE FIX */
    .hero-image-box{
        width:100%;
        margin-top:0 !important;
        padding:0 !important;
    }

    .hero-main-image{

        width:100% !important;

        max-width:100% !important;

        height:380px !important;

        object-fit:cover;

        border-radius:22px;

        display:block;

        margin:0 auto;
        
        margin-top: 30px;
    }

    /* WELCOME TEXT */
    .welcome-text{
        margin-left:10 !important;
        align-items:center !important;
        text-align:center;
    }

    .welcome-title{
        margin-left:0 !important;
        padding-left:0 !important;
        margin-top:15px;
    }

    .welcome-logo{
        margin-left:0 !important;
        max-width:180px;
    }

    /* TITLE FIX */
    .hero-title{

        white-space:normal !important;

        word-break:break-word;

        overflow-wrap:break-word;

        line-height:1.2;

        font-size:24px;

        margin-top:20px;
    }

    .hero-description{
        font-size:16px;
        line-height:1.8;
    }

    /* REMOVE OFFSET ISSUE */
    .offset-lg-1{
        margin-left:0 !important;
    }

    /* REMOVE BOOTSTRAP OVERFLOW */
    .row{
        --bs-gutter-x:0 !important;
    }

}

/* ================= TERMS SECTION ================= */

.bird-policy-section{
    position:relative;
    padding:90px 0 110px;
    background:#000;
    overflow:hidden;
}

/* TITLE */
.bird-policy-title{
    margin-bottom:55px;
}

.bird-policy-badge{
    display:inline-block;
    padding:9px 22px;
    border-radius:40px;

    background:rgba(212,175,55,.12);
    border:1px solid rgba(212,175,55,.25);

    color:#d4af37;
    font-size:12px;
    font-weight:600;
    letter-spacing:2px;

    margin-bottom:18px;
}

.bird-policy-title h2{
    color:#fff;
    font-size:42px;
    font-weight:700;
    margin-bottom:15px;
}

.bird-policy-title p{
    color:#9f9f9f;
    max-width:680px;
    margin:auto;
    line-height:1.8;
    font-size:15px;
}

/* CARD */
.bird-policy-card{
    position:relative;

    height:100%;

    padding:38px;

    border-radius:18px;

    background:#111;

    border:1px solid rgba(255,255,255,.06);

    transition:.35s ease;

    overflow:hidden;
}

/* GOLD TOP LINE */
.bird-policy-card::before{
    content:'';

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:linear-gradient(
        90deg,
        #d4af37,
        #f5d97a
    );
}

/* HOVER */
.bird-policy-card:hover{
    transform:translateY(-8px);

    border-color:rgba(212,175,55,.35);

    box-shadow:
    0 18px 45px rgba(0,0,0,.45);
}

/* NUMBER */
.bird-policy-no{
    font-size:56px;
    font-weight:800;

    color:rgba(212,175,55,.12);

    line-height:1;

    margin-bottom:18px;
}

/* TITLE */
.bird-policy-card h4{
    color:#fff;
    font-size:24px;
    margin-bottom:22px;
    font-weight:600;
}

/* LIST */
.bird-policy-card ul{
    margin:0;
    padding-left:18px;
}

.bird-policy-card ul li{
    color:#b9b9b9;
    line-height:1.9;
    margin-bottom:12px;
    font-size:15px;
}

/* RESPONSIVE */
@media(max-width:991px){

    .bird-policy-section{
        padding:70px 0 90px;
    }

    .bird-policy-title h2{
        font-size:34px;
    }

    .bird-policy-card{
        padding:30px;
    }

}

@media(max-width:576px){

    .bird-policy-title h2{
        font-size:28px;
    }

    .bird-policy-card{
        padding:26px 22px;
        border-radius:14px;
    }

    .bird-policy-no{
        font-size:42px;
    }

    .bird-policy-card h4{
        font-size:21px;
    }

}
/* ================= TERMS PAGE ================= */

.bird-terms-hero{
    position:relative;
    padding:130px 0 90px;
    background:#000;
    overflow:hidden;
}

.bird-hero-badge{
    display:inline-block;

    padding:10px 24px;

    border-radius:40px;

    background:rgba(212,175,55,.12);

    border:1px solid rgba(212,175,55,.25);

    color:#d4af37;

    font-size:12px;
    letter-spacing:2px;
    font-weight:600;

    margin-bottom:20px;
}

.bird-terms-hero h1{
    color:#fff;
    font-size:60px;
    font-weight:700;
    margin-bottom:18px;
}

.bird-terms-hero p{
    max-width:780px;
    margin:auto;

    color:#b7b7b7;

    line-height:1.9;

    font-size:16px;
}

/* SECTION */
.bird-terms-page{
    padding:20px 0 120px;
    background:#000;
}

/* LANGUAGE CARD */
.bird-language-card{
    position:relative;

    background:#111;

    border:1px solid rgba(255,255,255,.06);

    border-radius:24px;

    padding:40px;

    height:100%;

    overflow:hidden;
}

/* TOP LINE */
.bird-language-card::before{
    content:'';

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:linear-gradient(
        90deg,
        #d4af37,
        #f4dd8a
    );
}

/* TITLE */
.bird-language-title{
    margin-bottom:35px;
}

.bird-language-title span{
    color:#d4af37;
    font-size:13px;
    letter-spacing:2px;
    text-transform:uppercase;
}

.bird-language-title h2{
    color:#fff;
    font-size:38px;
    margin-top:10px;
    font-weight:700;
}

/* TERM BOX */
.bird-term-box{
    padding:28px;

    background:#171717;

    border-radius:18px;

    margin-bottom:24px;

    border:1px solid rgba(255,255,255,.05);

    transition:.35s ease;
}

.bird-term-box:hover{
    transform:translateY(-5px);

    border-color:rgba(212,175,55,.25);
}

/* TITLE */
.bird-term-box h4{
    color:#fff;
    font-size:23px;
    margin-bottom:18px;
}

/* LIST */
.bird-term-box ul{
    margin:0;
    padding-left:20px;
}

.bird-term-box ul li{
    color:#bababa;

    line-height:1.9;

    margin-bottom:10px;

    font-size:15px;
}

/* RESPONSIVE */
@media(max-width:991px){

    .bird-terms-hero{
        padding:110px 0 70px;
    }

    .bird-terms-hero h1{
        font-size:42px;
    }

    .bird-language-card{
        padding:30px;
    }

    .bird-language-title h2{
        font-size:30px;
    }

}

@media(max-width:576px){

    .bird-terms-hero h1{
        font-size:34px;
    }

    .bird-language-card{
        padding:22px;
        border-radius:18px;
    }

    .bird-term-box{
        padding:22px;
    }

    .bird-term-box h4{
        font-size:20px;
    }

}
.about-hero{

    background-size:cover;

    background-position:top center;

    background-repeat:no-repeat;

    min-height:65vh;

    padding-top:140px;
}


/* MOBILE */

/* MOBILE FIX */
@media only screen and (max-width:768px){

    .about-hero{

        height:300px !important;

        min-height:300px !important;

        background-size:cover !important;

        background-position:center top !important;

        margin-top:80px !important;
        
        padding-top: 10px;
    }
}

/* =========================================
   PACKAGE PAGE
========================================= */

.package-header{
    background:#d4a437;
    font-size:20px;
    letter-spacing:.5px;
}


/* =========================================
   MOBILE PACKAGE CARD FIX
========================================= */

@media (max-width:768px){

    /* REMOVE SIDE OVERFLOW */
    .package-cards-row{
        margin-left:0 !important;
        margin-right:0 !important;
    }

    /* CENTER EACH CARD */
    .package-cards-row .col-lg-4{
        padding-left:12px;
        padding-right:12px;

        display:flex;
        justify-content:center;
    }

    /* CARD WIDTH */
    .package-cards-row .card{
        width:100%;
        max-width:100%;
        margin:0 auto;
    }

    /* LIST ALIGNMENT */
    .package-cards-row ul{
        padding-left:22px !important;
    }

}


.custom-divider{
    width:100%;
    max-width:800px;   /* reduce size */
    height:100px;

    /* REMOVE EXTRA HEIGHT */
    display:block;
    margin:auto;

    /* REMOVE BACKGROUND SPACE */
    object-fit:contain;
}
.divider-wrapper{
        text-align: center;
    margin-top: -40px; /* move divider upward */
}

/* MOBILE ONLY */
@media (max-width:768px){

    .modal-header{
        padding-top:35px;
        position:relative;
    }

    .modal-title{
        margin-top:15px;
    }

}
.modal{
    z-index: 999999 !important;
}

.modal-backdrop{
    z-index: 999998 !important;
}

.facts-number{
    display:flex;
    justify-content:center;
    align-items:flex-start;
    line-height:1;
}

.facts-plus{
    font-size:35px;
    margin-top:28px;
    font-weight:900;
    margin-left:2px;
}
.blog-sidebar{
    background:#111;
    padding:30px;
    border-radius:24px;
    position:sticky;
    top:160px;
}

.sidebar-title{
    color:#d4af37;
    font-weight:700;
}

.latest-blog-card{
    display:flex;
    gap:15px;
    margin-bottom:20px;
    text-decoration:none;
    background:#1a1a1a;
    padding:12px;
    border-radius:18px;
    transition:.3s ease;
    align-items:center;
}

.latest-blog-card:hover{
    transform:translateY(-3px);
    background:#222;
}

.latest-blog-card img{
    width:110px;
    height:80px;
    object-fit:cover;
    border-radius:12px;
    flex-shrink:0;
}

.latest-blog-content h5{
    color:#fff;
    font-size:16px;
    margin-bottom:8px;
    line-height:1.4;
}

.latest-blog-content span{
    color:#999;
    font-size:13px;
}

.blog-gallery-img{
    height:250px;
    width:100%;
    object-fit:cover;
}