/********** Template CSS **********/
:root {
    --brand-topbar-height: 48px;
}

.has-fixed-topbar {
    padding-top: var(--brand-topbar-height);
}

.fixed-brand-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1045;
    min-height: var(--brand-topbar-height);
    padding: 8px 0;
    background: linear-gradient(100deg, #4f3210 0%, #7c5316 52%, #bf9456 100%);
    color: #fff;
    box-shadow: 0 8px 20px rgba(53, 30, 9, 0.2);
}

.topbar-contact-group {
    font-size: 0.92rem;
    font-weight: 500;
}

.topbar-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fffaf2;
    text-decoration: none;
    padding: 4px 0;
    transition: opacity 0.25s ease;
}

.topbar-contact-link:hover {
    color: #fff;
    opacity: 0.85;
}

.topbar-contact-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #4f3210;
    background: #fff3e0;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.topbar-contact-cta:hover {
    color: #4f3210;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.site-main-nav.sticky-top {
    z-index: 1035;
}

@media (max-width: 991.98px) {
    :root {
        --brand-topbar-height: 0px;
    }

    .has-fixed-topbar {
        padding-top: 0;
    }

    .fixed-brand-topbar {
        position: relative;
        padding: 10px 0;
    }

    .topbar-contact-group {
        width: 100%;
        justify-content: space-between;
        font-size: 0.84rem;
    }

    .topbar-contact-link {
        gap: 6px;
    }

    .topbar-contact-cta {
        width: 100%;
        justify-content: center;
    }
}

/* Custom Language Switcher Container */
.custom-language-switcher {
    position: relative;
    display: inline-block;
}

/* Branded Dropdown Button */
.lang-dropdown-btn {
     color: #000;
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: 40px;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-family: inherit;
}
    .lang-dropdown-btn:hover {
        background: #1a1a2e;
        border-color: #ffc107;
        transform: translateY(-2px);
        box-shadow : 0 5px 15px #bf9456;
        color: #fff;
    }

    .lang-dropdown-btn i {
        font-size: 16px;
    }

    .lang-dropdown-btn .arrow {
        font-size: 12px;
        transition: transform 0.3s ease;
    }

    .lang-dropdown-btn.active .arrow {
        transform: rotate(180deg);
    }

/* Branded Dropdown Menu */
.lang-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.custom-language-switcher.open .lang-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Language Options */
.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
}

    .lang-option:last-child {
        border-bottom: none;
    }

    .lang-option:hover {
        background: linear-gradient(90deg, rgba(220, 53, 69, 0.1) 0%, transparent 100%);
        padding-left: 22px;
    }

    .lang-option i {
        font-size: 18px;
        width: 24px;
    }

    .lang-option .lang-code {
        font-weight: 600;
        color: #dc3545;
        margin-left: auto;
        font-size: 11px;
    }

    /* Active language */
    .lang-option.active {
        background: rgba(220, 53, 69, 0.1);
        color: #dc3545;
        font-weight: 500;
    }

        .lang-option.active .lang-code {
            background: #dc3545;
            color: white;
            padding: 2px 6px;
            border-radius: 20px;
        }

/* Hide Google Translate native dropdown */
#google_translate_element {
    display: none !important;
}

/* Responsive */
@media (max-width: 768px) {
    .lang-dropdown-btn {
        padding: 6px 12px;
        font-size: 12px;
    }

    .lang-dropdown-menu {
        min-width: 180px;
        right: -10px;
    }

    .lang-option {
        padding: 8px 12px;
        font-size: 12px;
    }
}
/* Hide Google Translate top bar */
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

body {
    top: 0px !important;
    min-height: 100vh;
}

/* Hide the Google Translate popup notifications */
.goog-te-gadget-icon {
    display: none !important;
}

.goog-te-gadget-simple {
    display: none !important;
}

/* Prevent page shift when translator is active */
body > .skiptranslate {
    display: none !important;
}

/* Hide any Google Translate iframes */
iframe.goog-te-banner-frame {
    display: none !important;
}

/* Hide the Google Translate popup */
.goog-te-balloon-frame {
    display: none !important;
}

/* Fix for the body shift */
html {
    margin-top: 0px !important;
    height: 100%;
}

body {
    top: 0px !important;
    position: relative;
}
/*** 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;
}

.back-to-top {
    position: fixed !important;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

/*** Fonts ***/
.font-work-sans {
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.font-playfair-display {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.font-dancing-script {
    font-family: "Dancing Script", cursive;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}


/*** Button ***/
.btn {
    position: relative;
    transition: .5s;
}

.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;
}

.btn-primary::before,
.btn-primary::after {
    position: absolute;
    content: "";
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    top: -5px;
    left: -5px;
}

.btn-primary::before {
    top: -10px;
    height: calc(100% + 20px);
    border-left: 2px solid var(--bs-primary);
    border-right: 2px solid var(--bs-primary);
}

.btn-primary::after {
    left: -10px;
    width: calc(100% + 20px);
    border-top: 2px solid var(--bs-primary);
    border-bottom: 2px solid var(--bs-primary);
}

.btn-dark::before,
.btn-dark::after {
    position: absolute;
    content: "";
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    top: -5px;
    left: -5px;
}

.btn-dark::before {
    top: -10px;
    height: calc(100% + 20px);
    border-left: 2px solid var(--bs-dark);
    border-right: 2px solid var(--bs-dark);
}

.btn-dark::after {
    left: -10px;
    width: calc(100% + 20px);
    border-top: 2px solid var(--bs-dark);
    border-bottom: 2px solid var(--bs-dark);
}


/*** Navbar ***/
.sticky-top {
    top: -150px;
    transition: .5s;
}
.navbar {
    background-color: #FFF;
    color: #6f4304;
    height: 110px !important;
    border-bottom: #f2f2f2 inset 1px;

}
    .navbar .navbar-nav .nav-link {
    margin: 0 12px;
    padding: 0;
    outline: none;
   /* font-family: "Playfair Display", serif;*/
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--bs-dark);
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary)
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .dropdown-menu .dropdown-item:hover,
.navbar .dropdown-menu .dropdown-item.active {
    color: var(--bs-white);
    background: var(--bs-primary);
}

@media (max-width: 991.98px) {
    .navbar {
        height: auto !important;
        min-height: 90px;
        flex-wrap: wrap;
    }

    .navbar-brand {
        padding: 1rem 1.5rem !important;
    }

    .navbar-toggler-icon {
        background-color:#bf9456!important;
        border-radius: 0.25rem;
    }

    .navbar-collapse {
        flex-basis: 100%;
        width: 100%;
        background: var(--bs-white);
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
    }

    .navbar .navbar-nav .nav-link  {
        margin-left: 0;
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.navbar .btn-primary {
    border-width: 2px;
    background: var(--bs-light);
}

.navbar .btn-primary:hover {
    background: var(--bs-primary);
}

/* ============================================
   HOME HERO LAYOUT (7:5)
   ============================================ */
.hero-header {
    background: radial-gradient(circle at 15% 20%, rgba(183, 128, 47, 0.35), rgba(17, 17, 17, 0.95) 50%);
}

.hero-shell {
    max-width: 1480px;
}

.hero-grid-row {
    min-height: 625px;
}

.hero-booking-col {
    display: flex;
    align-items: stretch;
}

.hero-booking-panel {
    width: 100%;
    padding: 14px 18px;
    background: linear-gradient(160deg, rgba(113, 68, 13, 0.8), rgba(41, 24, 6, 0.9));
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-brand-title {
    font-size: clamp(1.6rem, 1.5vw + 1rem, 2.35rem);
    font-weight: 700;
    letter-spacing: 0.4px;
}

.hero-booking-card {
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.95);
}

.hero-booking-card .form-control,
.hero-booking-card .form-select {
    min-height: 38px;
}

.hero-carousel-col {
    display: flex;
}

@media (min-width: 992px) {
    .hero-grid-row {
        height: clamp(640px, 74vh, 760px);
    }

    .hero-booking-col,
    .hero-carousel-col {
        height: 100%;
    }

    .hero-booking-panel {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        height: 100%;
        padding: 30px 26px;
    }

    #bookingform {
        margin-top: 6px;
        flex: 1;
        align-content: stretch;
    }

    .hero-booking-card {
        height: 100%;
        display: flex;
    }

    .hero-booking-card .card-body {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .hero-booking-card form {
        display: flex;
        flex-direction: column;
        gap: 10px;
        height: 100%;
    }

    .hero-carousel-wrapper,
    .hero-carousel-container,
    .hero-carousel-slide {
        height: 100%;
        min-height: 100%;
    }

    .hero-carousel-slide img {
        min-height: 100%;
    }
}

/* ============================================
   HERO CAROUSEL WITH SLIDING TRANSITIONS
   ============================================ */

.hero-carousel-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 625px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.hero-carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 625px;
}

.hero-carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform: scale(1.05) translateX(50px);
}

    .hero-carousel-slide.active {
        opacity: 1;
        visibility: visible;
        transform: scale(1) translateX(0);
        z-index: 2;
    }

    .hero-carousel-slide img {
        width: 100%;
        height: 100%;
        min-height: 500px;
        object-fit: cover;
    }

/* Slide Overlay */
.slide-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: 10px 25px;
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

    .slide-overlay .slide-label {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .slide-overlay .slide-caption {
        margin-top: 6px;
        color: #f6f2e8;
        font-size: 12px;
        font-weight: 500;
        letter-spacing: 0.3px;
        line-height: 1.35;
        max-width: 320px;
        text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
    }

        .slide-overlay .slide-label::before {
            content: '';
            width: 8px;
            height: 8px;
            background: #25d366;
            border-radius: 50%;
            display: inline-block;
            animation: pulse-dot 2s infinite;
        }

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

/* Carousel Controls */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .carousel-control:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: translateY(-50%) scale(1.1);
    }

    .carousel-control.prev {
        left: 20px;
    }

    .carousel-control.next {
        right: 20px;
    }

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

    .carousel-indicators .dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.4);
        cursor: pointer;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }

        .carousel-indicators .dot.active {
            background: #25d366;
            border-color: #fff;
            transform: scale(1.2);
            box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
        }

        .carousel-indicators .dot:hover {
            transform: scale(1.1);
            background: rgba(255, 255, 255, 0.7);
        }

/* Sliding Direction Animations */
.hero-carousel-slide.slide-left {
    transform: translateX(-100%) scale(0.95);
}

.hero-carousel-slide.slide-right {
    transform: translateX(100%) scale(0.95);
}

.hero-carousel-slide.active.slide-left {
    transform: translateX(0) scale(1);
}

.hero-carousel-slide.active.slide-right {
    transform: translateX(0) scale(1);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .hero-grid-row {
        min-height: unset;
    }

    .hero-booking-panel {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding: 22px 16px;
    }

    .hero-carousel-wrapper,
    .hero-carousel-container,
    .hero-carousel-slide {
        min-height: 400px;
    }

        .hero-carousel-slide img {
            min-height: 400px;
        }

    .carousel-control {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .slide-overlay {
        bottom: 20px;
        left: 20px;
        padding: 8px 18px;
        font-size: 12px;
    }

        .slide-overlay .slide-caption {
            max-width: 280px;
            font-size: 11px;
        }
}

@media (max-width: 768px) {
    .hero-carousel-wrapper,
    .hero-carousel-container,
    .hero-carousel-slide {
        min-height: 300px;
    }

        .hero-carousel-slide img {
            min-height: 300px;
        }

    .carousel-control {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }

        .carousel-control.prev {
            left: 10px;
        }

        .carousel-control.next {
            right: 10px;
        }

    .carousel-indicators {
        bottom: 15px;
        right: 15px;
        gap: 8px;
    }

        .carousel-indicators .dot {
            width: 10px;
            height: 10px;
        }

    .slide-overlay {
        bottom: 15px;
        left: 15px;
        padding: 6px 14px;
        font-size: 11px;
    }

        .slide-overlay .slide-caption {
            margin-top: 4px;
            max-width: 220px;
            font-size: 10px;
            line-height: 1.25;
        }
}

@media (max-width: 576px) {
    .hero-booking-panel {
        padding: 18px 12px;
    }

    .hero-carousel-wrapper,
    .hero-carousel-container,
    .hero-carousel-slide {
        min-height: 250px;
    }

        .hero-carousel-slide img {
            min-height: 250px;
        }

    .carousel-control {
        width: 30px;
        height: 30px;
        font-size: 10px;
    }

    .carousel-indicators .dot {
        width: 8px;
        height: 8px;
    }
}

.page-header {
    background: url(../img/page-header.jpg) center center no-repeat;
    background-size: contain;
}


/*** Service ***/
@media (max-width: 768px) {
    .service .service-item {
        border: none !important;
        box-shadow: 0 0 45px rgba(0, 0, 0, .05);
    }
}

@media (min-width: 992px) {
    .service .service-item.border-lg-end {
        border-right: 1px solid #dee2e6;
    }

    .service .service-item.border-lg-end-0 {
        border-right: none !important;
    }

    .service .service-item.border-lg-bottom-0 {
        border-bottom: none !important;
    }
}

.service .service-item .btn-primary {
    border-width: 2px;
    background: var(--bs-white);
}

.service .service-item .btn-primary:hover {
    background: var(--bs-primary);
}

.service .service-item img {
    width: 70px;
    margin-bottom: 20px;
}
.offers-snap-section {
    background-color: #dfcaab3b;
}
/*** Team ***/
.team {
    position: relative;
}

.team::before {
    position: absolute;
    content: "";
    width: 200%;
    height: 200px;
    top: 50%;
    left: -50%;
    transform: translateY(-50%);
    margin-top: 1rem;
    background: var(--bs-primary);
}

.team-item img {
    transition: .5s;
}
  
.team-item:hover img {
    transform: scale(1.2);
}
  
.team-overlay {
    position: absolute;
    padding: 30px;
    right: 30px;
    bottom: 30px;
    left: 30px;
    text-align: center;
    background: rgba(255, 255, 255, .5);
    transition: .5s;
    z-index: 1;
}

.team-item:hover .team-overlay {
    background: rgba(255, 255, 255, .9);
}

.team-overlay p {
    letter-spacing: 1px;
}

.team-overlay .btn-dark {
    border-width: 2px;
    color: var(--bs-dark);
    background: transparent;
}

.team-overlay .btn-dark:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}


/*** Testimonial ***/
.testimonial-carousel .owl-item {
    position: relative;
}

.testimonial-carousel .owl-item::before {
    position: absolute;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: .1;
}

.testimonial-carousel .owl-item img {
    position: relative;
    width: 100px;
    height: 100px;
    z-index: 1;
}

.testimonial-carousel .owl-item,
.testimonial-carousel .owl-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item span {
    letter-spacing: 2px;
}

.testimonial-carousel .owl-item.center .bg-light {
    background: var(--bs-primary) !important;
}

.testimonial-carousel .owl-item.center .bg-light * {
    color: var(--bs-dark) !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 25px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--bs-dark);
    background: var(--bs-primary);
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

.team-image {
    height: 300px;
    width: 100%;
    object-fit: cover;
}
/*** Footer ***/
@media (min-width: 992px) {
    .footer::after {
        position: absolute;
        content: "";
        width: 1px;
        height: 100%;
        top: 0;
        left: 50%;
        background: var(--bs-secondary);

    }
}

.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:hover {
    color: var(--bs-primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.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;
}


.login-container {
    width: 100%;
    max-width: 450px;
    padding: 20px;
    margin: 0 auto; /* This centers the container */
}
.login-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

    .login-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, #e83e8c, #bf9456, #e83e8c);
        background-size: 200% 100%;
        animation: shimmer 3s ease-in-out infinite;
    }

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.login-logo {
    text-align: center;
    margin-bottom: 30px;
}

    .login-logo .icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #7c5316, #bf9456);
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 36px;
        color: #ffffff;
        box-shadow: 0 8px 25px rgba(232, 62, 140, 0.3);
        margin-bottom: 15px;
    }

    .login-logo h2 {
        color: #1a1a2e;
        font-weight: 700;
        font-size: 24px;
        margin-bottom: 5px;
    }

    .login-logo p {
        color: #6c7a8a;
        font-size: 14px;
        margin-bottom: 0;
    }

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        font-weight: 600;
        color: #1a1a2e;
        font-size: 14px;
        margin-bottom: 6px;
    }

    .form-group .input-group {
        border-radius: 10px;
        overflow: hidden;
        border: 2px solid #e9ecef;
        transition: all 0.3s ease;
    }

        .form-group .input-group:focus-within {
            border-color: #bf9456;
            box-shadow: 0 0 0 3px rgba(232, 62, 140, 0.15);
        }

    .form-group .input-group-text {
        background: #f8f9fa;
        border: none;
        color: #6c7a8a;
        padding: 0 15px;
    }

    .form-group .form-control {
        border: 1px solid #b9bfc3;
        padding: 12px 15px;
        font-size: 14px;
        background: #f8f9fa;
    }

        .form-group .form-control:focus {
            box-shadow: none;
            background: #ffffff;
        }

.form-check {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

    .form-check .form-check-input {
        margin-right: 8px;
    }

    .form-check .form-check-label {
        font-size: 14px;
        color: #4a5a7a;
    }

.forgot-link {
    font-size: 14px;
    color: #bf9456;
    text-decoration: none;
}

    .forgot-link:hover {
        color: #bf9456;
        text-decoration: underline;
    }

.btn-login {
    width: 100%;
    padding: 13px;
    background: linear-gradient(135deg, #bf9456, #935905);
    border: none;
    border-radius: 10px;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

    .btn-login:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(232, 62, 140, 0.35);
        color: #ffffff;
    }

.register-link {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #4a5a7a;
}

    .register-link a {
        color: #bf9456;
        text-decoration: none;
        font-weight: 600;
    }

        .register-link a:hover {
            color: #bf9456;
            text-decoration: underline;
        }

.alert {
    border-radius: 10px;
    font-size: 14px;
    padding: 12px 15px;
}

.divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
}

    .divider::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        height: 1px;
        background: #e9ecef;
    }

    .divider span {
        background: #ffffff;
        padding: 0 15px;
        color: #6c7a8a;
        font-size: 13px;
        position: relative;
        z-index: 1;
    }

.validation-summary-errors {
    color: #bf9456;
    font-size: 14px;
    margin-bottom: 15px;
}

    .validation-summary-errors ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .validation-summary-errors ul li {
            padding: 5px 0;
        }

.phone-hint {
    font-size: 12px;
    color: #6c7a8a;
    margin-top: 4px;
}

.test-credentials {
    background: #f8f9fa;
    padding: 12px 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px dashed #dee2e6;
}

    .test-credentials p {
        margin: 0;
        font-size: 13px;
        color: #4a5a7a;
    }

    .test-credentials .badge {
        font-size: 12px;
        padding: 4px 10px;
    }

@media (max-width: 576px) {
    .login-container {
        padding: 10px;
    }

    .login-card {
        padding: 25px 20px;
    }

    .login-logo .icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .login-logo h2 {
        font-size: 20px;
    }
}
/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .whatsapp-float:hover {
        transform: scale(1.1);
        box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
        color: #ffffff;
        text-decoration: none;
    }

    .whatsapp-float::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background: #25d366;
        animation: pulse 2s infinite;
        z-index: -1;
    }

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.whatsapp-float .whatsapp-float-text {
    position: absolute;
    right: 70px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.whatsapp-float:hover .whatsapp-float-text {
    opacity: 1;
    transform: translateX(0);
}

/* Service Card WhatsApp Button */
.service-item .btn-success {
    transition: all 0.3s ease;
}

    .service-item .btn-success:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    }

/* Responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 26px;
    }

        .whatsapp-float .whatsapp-float-text {
            display: none;
        }
}

@media (max-width: 576px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}

/* WhatsApp Banner */
.whatsapp-banner {
     border-radius: 16px;
    padding: 2px 1px;
    color: #6c7a8a;
}

    .whatsapp-banner .banner-content {
        display: flex;
        align-items: center;
        gap: 15px;
        background-color: #dfcaab3b;
    }

    .whatsapp-banner .banner-icon {
        width: 50px;
        height: 50px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 26px;
        flex-shrink: 0;
    }

    .whatsapp-banner .banner-text {
        flex: 1;
    }

        .whatsapp-banner .banner-text h6 {
            margin: 0;
            font-weight: 600;
            font-size: 15px;
        }

        .whatsapp-banner .banner-text p {
            margin: 0;
            font-size: 13px;
            opacity: 0.9;
        }

    .whatsapp-banner .banner-badge {
        background: rgba(255, 255, 255, 0.2);
        padding: 4px 14px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.5px;
    }

/* Form Steps */
.form-step {
    margin-bottom: 10px;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.step-number {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #bf9456, #ffc107);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.step-header h5 {
    margin: 0;
    font-weight: 600;
    color: #6c7a8a;
}

.form-divider {
    border: none;
    border-top: 2px dashed #e9ecef;
    margin: 25px 0;
}

/* Service Detail Cards */
.service-detail-card {
    background: #f8f9fc;
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .service-detail-card .detail-label {
        font-size: 13px;
        color: #6c7a8a;
    }

    .service-detail-card .detail-value {
        font-weight: 700;
        color: #1a1a2e;
        font-size: 15px;
    }

/* Form Controls */
.form-control-lg, .form-select-lg {
    padding: 12px 16px;
    font-size: 15px;
    border-radius: 12px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

    .form-control-lg:focus, .form-select-lg:focus {
        border-color: #bf9456;
        box-shadow: 0 0 0 4px rgba(232, 62, 140, 0.1);
    }

.form-label {
    font-size: 14px;
    color: #1a1a2e;
}

/* Summary */
.appointment-summary {
    background: #f8f9fc;
    border-radius: 16px;
    padding: 20px 24px;
    margin-bottom: 25px;
}

.summary-title {
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
}

.summary-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

    .summary-item .summary-label {
        font-size: 12px;
        color: #6c7a8a;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .summary-item .summary-value {
        font-weight: 600;
        color: #1a1a2e;
        font-size: 14px;
    }

/* Form Actions */
.form-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366, #128C7E);
    color: #fff;
    border: none;
     font-weight: 600;
    padding: 10px 35px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

    .btn-whatsapp:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 35px rgba(37, 211, 102, 0.4);
        color: #fff;
    }

    .btn-whatsapp:disabled {
        opacity: 0.5;
        cursor: not-allowed;
        transform: none;
    }

/* ============================================
           WHATSAPP MODAL
           ============================================ */

.whatsapp-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

    .whatsapp-modal.show {
        display: flex;
        animation: fadeIn 0.3s ease;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.whatsapp-modal-content {
    background: #fff;
    border-radius: 24px;
    max-width: 480px;
    width: 90%;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.modal-header-custom {
    background: linear-gradient(135deg, #25d366, #128C7E);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
}

    .modal-header-custom .modal-icon {
        width: 44px;
        height: 44px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
    }

    .modal-header-custom h5 {
        flex: 1;
        margin: 0;
        font-weight: 600;
    }

    .modal-header-custom .modal-close {
        background: none;
        border: none;
        color: rgba(255, 255, 255, 0.7);
        font-size: 22px;
        cursor: pointer;
        padding: 0;
        transition: color 0.3s ease;
    }

        .modal-header-custom .modal-close:hover {
            color: #fff;
        }

.modal-body-custom {
    padding: 24px;
}

.booking-preview {
    background: #f8f9fc;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 16px;
}

    .booking-preview h6 {
        font-weight: 600;
        color: #1a1a2e;
        margin-bottom: 12px;
        font-size: 14px;
    }

    .booking-preview .preview-item {
        display: flex;
        justify-content: space-between;
        padding: 6px 0;
        font-size: 14px;
        border-bottom: 1px solid #e9ecef;
    }

        .booking-preview .preview-item:last-child {
            border-bottom: none;
        }

        .booking-preview .preview-item span {
            color: #6c7a8a;
        }

        .booking-preview .preview-item strong {
            color: #1a1a2e;
        }

.modal-message {
    font-size: 14px;
    color: #6c7a8a;
    text-align: center;
    margin: 0;
}

.modal-footer-custom {
    padding: 16px 24px 24px;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    border-top: 1px solid #e9ecef;
}

    .modal-footer-custom .btn {
        padding: 10px 24px;
        border-radius: 50px;
        font-weight: 600;
    }

/* ============================================
           RESPONSIVE
           ============================================ */

@media (max-width: 768px) {
    .appointment-page {
        padding: 20px 0;
    }

    .appointment-header h1 {
        font-size: 2rem;
    }

    .appointment-card .card-body {
        padding: 20px !important;
    }

    .whatsapp-banner .banner-content {
        flex-wrap: wrap;
    }

    .whatsapp-banner .banner-badge {
        margin-left: auto;
    }

    .summary-grid {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column;
    }

        .form-actions .btn {
            width: 100%;
        }

    .modal-footer-custom {
        flex-direction: column;
    }

        .modal-footer-custom .btn {
            width: 100%;
        }
}

@media (max-width: 576px) {
    .appointment-header h1 {
        font-size: 1.6rem;
    }

    .service-detail-card {
        flex-direction: column;
        text-align: center;
        gap: 4px;
    }

    .step-header {
        gap: 10px;
    }

    .step-number {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .step-header h5 {
        font-size: 15px;
    }

    .whatsapp-modal-content {
        width: 95%;
    }
}
#aboutus {
    background: #efd9ba;
    background-size: cover;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}
#teammembers {
    background: #efd9ba;
    background-size: cover;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}
/* ============================================
   SERVICES SECTION
   ============================================ */

/* Service Cards */
.service-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(45, 27, 105, 0.05);
    position: relative;
    overflow: hidden;
}

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(180deg, rgba(45, 27, 105, 0.02) 0%, transparent 100%);
        opacity: 0;
        transition: all 0.4s ease;
    }

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 60px rgba(45, 27, 105, 0.08) !important;
        border-color: rgba(45, 27, 105, 0.1);
    }

        .service-card:hover::before {
            opacity: 1;
        }

/* Service Icons */
.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(45, 27, 105, 0.05);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: rgba(45, 27, 105, 0.1);
    transform: scale(1.05) rotate(-5deg);
}

.service-icon img {
    transition: all 0.4s ease;
}

.service-card:hover .service-icon img {
    transform: scale(1.1);
}

/* Service Card Buttons */
.service-card .btn-light {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    color: #2d1b69;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .service-card .btn-light:hover {
        background: #25d366;
        border-color: #25d366;
        color: #fff !important;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.25);
    }

        .service-card .btn-light:hover .text-success {
            color: #fff !important;
        }

/* CTA Card */
.cta-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

    .cta-card::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
        pointer-events: none;
    }

    .cta-card .btn-light {
        transition: all 0.3s ease;
    }

        .cta-card .btn-light:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
        }

    .cta-card .btn-outline-light {
        transition: all 0.3s ease;
    }

        .cta-card .btn-outline-light:hover {
            transform: translateY(-3px);
            background: rgba(255, 255, 255, 0.1);
        }

/* Responsive */
@media (max-width: 768px) {
    .service-card {
        padding: 25px 20px !important;
    }

    .service-icon {
        width: 65px;
        height: 65px;
    }

        .service-icon img {
            height: 50px !important;
        }

    .cta-card {
        padding: 30px 20px !important;
    }

        .cta-card h3 {
            font-size: 1.5rem !important;
        }

        .cta-card .btn-lg {
            padding: 12px 25px !important;
            font-size: 0.95rem !important;
        }
}

@media (max-width: 576px) {
    .service-card h4 {
        font-size: 1.1rem;
    }

    .service-card p {
        font-size: 0.85rem !important;
    }

    .cta-card .d-flex {
        flex-direction: column;
        align-items: center;
    }

    .cta-card .btn {
        width: 100%;
        max-width: 280px;
    }
}
/* ============================================
   CSS SCROLL SNAP
   ============================================ */
/* ============================================
OFFERS CONTINUOUS SCROLL - UPDATED STYLES
============================================ */

.offers-scroll-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    background: #f8f9fa;
    cursor: grab;
    min-height: 500px;
}

    .offers-scroll-container:active {
        cursor: grabbing;
    }

.offers-scroll-track {
    display: flex;
    gap: 15px;
    will-change: transform;
    transition: none;
    width: max-content;
}

/* IMPORTANT: Use the same class names as in your JS */
.offer-snap-card {
    flex: 0 0 200px;
    height: 480px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 180px;
}

/* Ensure at least 10 items visible in one row */
@media (min-width: 1400px) {
    .offer-snap-card {
        flex: 0 0 280px;
        height: 360px;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .offer-snap-card {
        flex: 0 0 270px;
        height: 250px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .offer-snap-card {
        flex: 0 0 160px;
        height: 240px;
    }
}

@media (max-width: 991px) {
    .offer-snap-card {
        flex: 0 0 150px;
        height: 320px;
        min-width: 140px;
    }
}

.offer-snap-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    z-index: 10;
}

.offer-snap-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: zoom-in;
}

.offer-image-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.82);
    z-index: 2000;
    padding: 24px;
}

.offer-image-modal.is-open {
    display: flex;
}

.offer-image-modal-preview {
    max-width: min(92vw, 1200px);
    max-height: 88vh;
    border-radius: 14px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
    object-fit: contain;
    background: #fff;
}

.offer-image-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.offer-image-modal-close:hover {
    background: rgba(255, 255, 255, 0.32);
}

body.offer-modal-open {
    overflow: hidden;
}

.offer-snap-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    color: white;
}

.offer-snap-tag {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.offer-snap-overlay h4 {
    font-size: 14px;
    margin: 5px 0;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.offer-desc {
    font-size: 11px;
    margin: 5px 0 8px;
    opacity: 0.8;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-offer-snap {
    display: inline-block;
    padding: 4px 15px;
    background: rgba(255,255,255,0.2);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 20px;
    font-size: 11px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

    .btn-offer-snap:hover {
        background: white;
        color: #333;
        text-decoration: none;
        transform: scale(1.05);
    }

/* Tag colors */
.tag-hot {
    background: #ff4757;
    color: white;
}

.tag-popular {
    background: #ffa502;
    color: white;
}

.tag-special {
    background: #2ed573;
    color: white;
}

.tag-vip {
    background: #a29bfe;
    color: white;
}

.tag-flash {
    background: #ff6348;
    color: white;
}

.tag-free {
    background: #00d2d3;
    color: white;
}

.tag-default {
    background: #747d8c;
    color: white;
}

/* Loading spinner */
.loading-spinner {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 250px;
}

/* No offers message */
.no-offers-message {
    width: 100%;
    text-align: center;
    padding: 40px 20px;
    color: #6c757d;
}

/* Scroll pause indicator */
.offers-scroll-container.scroll-paused {
    opacity: 0.95;
}

.scroll-paused .offer-snap-card {
    transform: scale(0.98);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .offer-snap-card {
        flex: 0 0 140px;
        height: 200px;
        min-width: 120px;
    }

    .offer-snap-overlay h4 {
        font-size: 12px;
    }

    .offer-snap-tag {
        font-size: 8px;
        padding: 2px 8px;
    }

    .btn-offer-snap {
        font-size: 10px;
        padding: 3px 12px;
    }
}

@media (max-width: 480px) {
    .offer-snap-card {
        flex: 0 0 120px;
        height: 170px;
        min-width: 100px;
    }

    .offers-scroll-track {
        gap: 8px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .offer-desc {
        font-size: 0.8rem;
    }
}
/* Image Upload Container */
.image-upload-container {
    border: 2px dashed #d1d3e2;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8f9fc;
}

    .image-upload-container:hover {
        border-color: #4e73df;
        background: #f0f2f5;
    }

    .image-upload-container .image-preview {
        min-height: 200px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        overflow: hidden;
    }

        .image-upload-container .image-preview img {
            max-width: 100%;
            max-height: 300px;
            object-fit: contain;
            border-radius: 8px;
        }

        .image-upload-container .image-preview i {
            color: #d1d3e2;
        }

        .image-upload-container .image-preview p {
            margin: 10px 0 0;
            color: #6c7a8a;
        }

/* Custom Link Toggle */
#customLinkToggle {
    color: #4e73df;
    text-decoration: none;
    font-weight: 500;
}

    #customLinkToggle:hover {
        color: #224abe;
        text-decoration: underline;
    }

/* Responsive */
@media (max-width: 768px) {
    .image-upload-container .image-preview {
        min-height: 150px;
    }
}


.adminpage {
    min-height: 550px !important;
    width: 100% !important;
    margin-top: 5px;
    margin-bottom: 5px;
}

.gallery-section {
    background: #fff;
    padding: 20px 0;
    min-height: 100vh;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

    .section-title:after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #3498db, #e74c3c);
        border-radius: 2px;
    }

.section-subtitle {
    color: #7f8c8d;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

/* Gallery Grid Items */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    aspect-ratio: 4/3;
}

    .gallery-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.1);
    }

.gallery-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 20px;
    transition: bottom 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    bottom: 0;
}

.gallery-overlay h5 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.gallery-overlay p {
    margin: 5px 0 0;
    font-size: 0.8rem;
    opacity: 0.9;
}

/* Modal/Slideshow Styles */
.slideshow-modal .modal-dialog {
    max-width: 90%;
    margin: 1.75rem auto;
}

.slideshow-modal .modal-content {
    background: rgba(0,0,0,0.95);
    border-radius: 20px;
}

.slideshow-container {
    position: relative;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
}

.slideshow-slide {
    display: none;
    text-align: center;
    animation: fadeEffect 0.5s;
}

    .slideshow-slide.active {
        display: block;
    }

    .slideshow-slide img {
        max-width: 100%;
        max-height: 70vh;
        object-fit: contain;
    }

@keyframes fadeEffect {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.slideshow-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.slideshow-btn {
    background: rgba(255,255,255,0.3);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
}

    .slideshow-btn:hover {
        background: rgba(255,255,255,0.8);
        color: #000;
    }

.slideshow-dots {
    text-align: center;
    padding: 20px 0;
}

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
}

    .dot.active, .dot:hover {
        background-color: #3498db;
    }

.image-counter {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    z-index: 10;
}

.empty-gallery {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

    .empty-gallery i {
        font-size: 80px;
        color: #bdc3c7;
        margin-bottom: 20px;
    }

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }

    .slideshow-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .slideshow-controls {
        padding: 0 10px;
    }
}

.upload-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
}

.upload-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    overflow: hidden;
    animation: slideInUp 0.6s ease;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.upload-header {
    background: linear-gradient(135deg, #12a2da 0%, #dc3545 100% 100%);
    color: white;
    padding: 10px;
    text-align: center;
}

    .upload-header i {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .upload-header h2 {
        margin: 0;
        font-weight: 600;
    }

.upload-body {
    padding: 10px;
}

.dropzone {
    border: 3px dashed #dee2e6;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

    .dropzone:hover, .dropzone.dragover {
        border-color: #667eea;
        background: #f0f0ff;
        transform: scale(1.02);
    }

    .dropzone i {
        font-size: 3rem;
        color: #667eea;
        margin-bottom: 15px;
    }

.preview-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
    margin-top: 20px;
    max-height: 400px;
    overflow-y: auto;
    padding: 10px;
}

.preview-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.preview-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}



.btn-upload {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .btn-upload:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    }

.alert-custom {
    border-radius: 10px;
    border-left: 4px solid;
    animation: slideInRight 0.5s ease;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.upload-info {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
    margin-top: 20px;
}

.manage-container {
    padding: 40px 20px;
}

.gallery-stats {
    color: black;
    border-radius: 1px;
    padding: 10px;
    margin-bottom: 20px;
}

.toolbar {
    background: white;
    border-radius: 15px;
    padding: 15px 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    text-align: center;
}

.selection-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.select-all-checkbox {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.delete-selected-btn {
    background: #dc3545;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .delete-selected-btn:hover:not(:disabled) {
        background: #c82333;
        transform: translateY(-2px);
    }

    .delete-selected-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

.image-card {
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
    background: white;
    position: relative;
    cursor: pointer;
}

    .image-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    }

    .image-card.selected {
        box-shadow: 0 0 0 3px #dc3545, 0 5px 15px rgba(0,0,0,0.1);
    }

    .image-card img {
        width: 100%;
        height: 70px;
        object-fit: cover;
    }

.checkbox-wrapper {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
    background: rgba(255,255,255,0.95);
    border-radius: 8px;
    padding: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.image-checkbox {
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin: 0;
}

.image-info {
    padding: 15px;
}

.image-name {
    font-size: 0.85rem;
    word-break: break-all;
    background: #f8f9fa;
    padding: 8px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.image-size {
    font-size: 0.75rem;
    color: #6c757d;
    margin-bottom: 10px;
}

.btn-delete-single {
    background: #dc3545;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 8px;
    width: 100%;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

    .btn-delete-single:hover {
        background: #c82333;
    }

.empty-gallery {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

    .empty-gallery i {
        font-size: 5rem;
        color: #dee2e6;
        margin-bottom: 20px;
    }

.toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 99999;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #dc3545;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading-text {
    color: white;
    margin-top: 20px;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .selection-info {
        justify-content: space-between;
    }

    .image-card img {
        height: 200px;
    }
}
/* Compact Form Styles */
.form-step-compact {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 5px 10px;
    margin-bottom: 10px;
    border-left: 3px solid #bf9456;
}

.step-header-compact {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

    .step-header-compact .step-number {
        background: #bf9456;
        color: white;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        font-weight: 700;
        flex-shrink: 0;
    }

    .step-header-compact h6 {
        margin: 0;
        font-size: 15px;
        font-weight: 600;
        color: #333;
    }

    .step-header-compact .form-label {
        font-size: 13px;
        margin-bottom: 3px;
    }

    .step-header-compact .form-control,
    .step-header-compact .form-select {
        font-size: 14px;
        padding: 6px 12px;
        height: 38px;
    }

    .step-header-compact .form-control-lg,
    .step-header-compact .form-select-lg {
        font-size: 14px;
        padding: 6px 12px;
        height: 38px;
    }

/* Summary at Top */
.appointment-summary-top {
    background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
    border-radius: 10px;
    padding: 12px 16px;
    border: 2px solid #bf9456;
    margin-bottom: 16px;
}

.summary-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

    .summary-header .summary-title {
        font-size: 15px;
        font-weight: 700;
        color: #ff6b6b;
    }

.summary-grid-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 6px 12px;
}

.summary-item-top {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    background: white;
    border-radius: 6px;
    font-size: 13px;
}

    .summary-item-top .summary-label {
        color: #6c757d;
        font-weight: 500;
        min-width: 60px;
    }

    .summary-item-top .summary-value {
        color: #212529;
        font-weight: 600;
    }

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

    .form-actions .btn {
        min-width: 140px;
        font-size: 14px;
        padding: 8px 20px;
    }

.btn-whatsapp {
    background: #25D366;
    color: white;
    border: none;
}

    .btn-whatsapp:hover {
        background: #1da851;
        color: white;
    }

/* Responsive */
@media (max-width: 768px) {
    .summary-grid-top {
        grid-template-columns: 1fr 1fr;
    }

    .form-actions .btn {
        min-width: 120px;
        font-size: 13px;
        padding: 6px 16px;
    }

    .form-step-compact {
        padding: 10px 12px;
    }
}

@media (max-width: 480px) {
    .summary-grid-top {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column;
        align-items: center;
    }

        .form-actions .btn {
            width: 100%;
            min-width: unset;
        }
}
.form-select[multiple], .form-select[size]:not([size="1"]) {
  min-height:160px!important;
}

