/* ============================================
    FONT IMPORT (LOCAL)
============================================ */
@font-face {
    font-family: "Didot";
    src: url("../font-didot/Didot.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Didot";
    src: url("../font-didot/Didot Bold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Didot";
    src: url("../font-didot/Didot Italic.otf") format("opentype");
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: "Didot";
    src: url("../font-didot/Didot Title.otf") format("opentype");
    font-weight: 600;
    font-style: normal;
}

/* Loverica Font */
@font-face {
    font-family: "Loverica";
    src: url("../font-didot/Loverica.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
}

/* ============================================
      VARIABLES
  ============================================ */
:root {
    --white: #ffffff;
    --black: #000000;
    --gray: #666666;
    --brown: #423725;
    --orange: #ff7a00;
    --light-brown: #CCC0B0;
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.5rem;
    --space-6: 2rem;
    --space-7: 2.5rem;
    --space-8: 3rem;
    --space-9: 3.5rem;
    --space-10: 4rem;
}

/* DARK THEME VARIABLES */
body.dark-theme {
    --white: #000000;
    /* background now black */
    --black: #ffffff;
    /* text now white */
    --gray: #999999;
    /* softer gray for text */
    --brown: #b58b5a;
    /* lighter brown for contrast */
    --orange: #ff9b26;
    /* slightly brighter orange for dark bg */
    /* Spacing variables remain the same */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.5rem;
    --space-6: 2rem;
    --space-7: 2.5rem;
    --space-8: 3rem;
    --space-9: 3.5rem;
    --space-10: 4rem;
}

/* ============================================
      RESET + BASE STYLES
  ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    /* font-family: "Didot", serif !important; */
    font-family: "Loverica", serif !important;

}

body {
    /* font-family: "Didot", serif; */
    font-family: "Loverica", serif !important;
    color: var(--black);
    overflow-x: hidden;
    /* Performance optimization */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.section-bg {
    background-image: url("../assets/bg-light.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

body.dark-theme .section-bg {

    background-image: url("../assets/bg-dark.webp");

}

.inter-font,
.inter-font * {
    font-family: "Inter", sans-serif !important;
}

.loverica-font,
.loverica-font * {
    font-family: "Loverica", serif !important;
}

.overflow-x-hidden {
    overflow-x: hidden !important;
}

/* ============================================
      FLEX UTILITIES
  ============================================ */
.flex {
    display: flex !important;
}

.inline-flex {
    display: inline-flex !important;
}

.flex-col {
    flex-direction: column !important;
}

.flex-row {
    flex-direction: row !important;
}

.justify-start {
    justify-content: flex-start !important;
}

.justify-center {
    justify-content: center !important;
}

.justify-end {
    justify-content: flex-end !important;
}

.justify-between {
    justify-content: space-between !important;
}

.items-start {
    align-items: flex-start !important;
}

.items-center {
    align-items: center !important;
}

.items-end {
    align-items: flex-end !important;
}

/* ============================================
      SPACING UTILITIES
  ============================================ */
.p-1 {
    padding: var(--space-1) !important;
}

.p-2 {
    padding: var(--space-2) !important;
}

.p-3 {
    padding: var(--space-3) !important;
}

.p-4 {
    padding: var(--space-4) !important;
}

.p-5 {
    padding: var(--space-5) !important;
}

.pt-1 {
    padding-top: var(--space-1) !important;
}

.pt-2 {
    padding-top: var(--space-2) !important;
}

.pt-3 {
    padding-top: var(--space-3) !important;
}

.pt-4 {
    padding-top: var(--space-4) !important;
}

.pt-5 {
    padding-top: var(--space-5) !important;
}

.pb-1 {
    padding-bottom: var(--space-1) !important;
}

.pb-2 {
    padding-bottom: var(--space-2) !important;
}

.pb-3 {
    padding-bottom: var(--space-3) !important;
}

.pb-4 {
    padding-bottom: var(--space-4) !important;
}

.pb-5 {
    padding-bottom: var(--space-5) !important;
}

.py-1 {
    padding-top: var(--space-1) !important;
    padding-bottom: var(--space-1) !important;
}

.py-2 {
    padding-top: var(--space-2) !important;
    padding-bottom: var(--space-2) !important;
}

.py-3 {
    padding-top: var(--space-3) !important;
    padding-bottom: var(--space-3) !important;
}

.py-4 {
    padding-top: var(--space-4) !important;
    padding-bottom: var(--space-4) !important;
}

.py-5 {
    padding-top: var(--space-5) !important;
    padding-bottom: var(--space-5) !important;
}

.py-6 {
    padding-top: var(--space-6) !important;
    padding-bottom: var(--space-6) !important;
}

.py-7 {
    padding-top: var(--space-7) !important;
    padding-bottom: var(--space-7) !important;
}

.py-8 {
    padding-top: var(--space-8) !important;
    padding-bottom: var(--space-8) !important;
}

.py-9 {
    padding-top: var(--space-9) !important;
    padding-bottom: var(--space-9) !important;
}

.py-10 {
    padding-top: var(--space-10) !important;
    padding-bottom: var(--space-10) !important;
}

.m-1 {
    margin: var(--space-1) !important;
}

.m-2 {
    margin: var(--space-2) !important;
}

.m-3 {
    margin: var(--space-3) !important;
}

.m-4 {
    margin: var(--space-4) !important;
}

.m-5 {
    margin: var(--space-5) !important;
}

.mt-1 {
    margin-top: var(--space-1) !important;
}

.mt-2 {
    margin-top: var(--space-2) !important;
}

.mt-3 {
    margin-top: var(--space-3) !important;
}

.mt-4 {
    margin-top: var(--space-4) !important;
}

.mt-5 {
    margin-top: var(--space-5) !important;
}

.mb-1 {
    margin-bottom: var(--space-1) !important;
}

.mb-2 {
    margin-bottom: var(--space-2) !important;
}

.mb-3 {
    margin-bottom: var(--space-3) !important;
}

.mb-4 {
    margin-bottom: var(--space-4) !important;
}

.mb-5 {
    margin-bottom: var(--space-5) !important;
}

.ml-1 {
    margin-left: var(--space-1) !important;
}

.ml-2 {
    margin-left: var(--space-2) !important;
}

.ml-3 {
    margin-left: var(--space-3) !important;
}

.ml-4 {
    margin-left: var(--space-4) !important;
}

.ml-5 {
    margin-left: var(--space-5) !important;
}

.mr-1 {
    margin-right: var(--space-1) !important;
}

.mr-2 {
    margin-right: var(--space-2) !important;
}

.mr-3 {
    margin-right: var(--space-3) !important;
}

.mr-4 {
    margin-right: var(--space-4) !important;
}

.mr-5 {
    margin-right: var(--space-5) !important;
}

.mx-1 {
    margin-inline: var(--space-1) !important;
}

.mx-2 {
    margin-inline: var(--space-2) !important;
}

.mx-3 {
    margin-inline: var(--space-3) !important;
}

.mx-auto {
    margin-inline: auto !important;
}

.my-1 {
    margin-top: var(--space-1) !important;
    margin-bottom: var(--space-1) !important;
}

.my-2 {
    margin-top: var(--space-2) !important;
    margin-bottom: var(--space-2) !important;
}

/* ============================================
      SIZE UTILITIES
  ============================================ */
.w-full {
    width: 100% !important;
}

.h-full {
    height: 100% !important;
}

.w-auto {
    width: auto !important;
}

.h-auto {
    height: auto !important;
}

.w-screen {
    width: 100vw !important;
}

.h-screen {
    height: 100vh !important;
}

/* ============================================
      TEXT COLORS
  ============================================ */
.text-white {
    color: var(--white) !important;
}

.text-white-static {
    color: #ffffff !important;
}

.text-black {
    color: var(--black) !important;
}

.text-gray {
    color: var(--gray) !important;
}

.text-brown {
    color: var(--brown) !important;
}

.text-orange {
    color: var(--orange) !important;
}

/* ============================================
      BACKGROUND COLORS
  ============================================ */
.bg-white {
    background-color: var(--white) !important;
}

.bg-black {
    background-color: var(--black) !important;
}

.bg-gray {
    background-color: var(--gray) !important;
}

.bg-brown {
    background-color: var(--brown) !important;
}

.bg-orange {
    background-color: var(--orange) !important;
}

/* ============================================
      HOVER STATES
  ============================================ */
.hover-bg-orange:hover {
    background-color: var(--orange) !important;
}

.hover-text-orange:hover {
    color: var(--orange) !important;
}

.hover-bg-black:hover {
    background-color: var(--black) !important;
}

.hover-text-black:hover {
    color: var(--black) !important;
}

/* ============================================
      BORDER + RADIUS
  ============================================ */
.border {
    border: 1px solid var(--gray) !important;
}

.border-white {
    border-color: var(--white) !important;
}

.border-black {
    border-color: var(--black) !important;
}

.border-orange {
    border-color: var(--orange) !important;
}

.rounded {
    border-radius: 0.25rem !important;
}

.rounded-md {
    border-radius: 0.5rem !important;
}

.rounded-lg {
    border-radius: 1rem !important;
}

/* ============================================
      SHADOW
  ============================================ */
.shadow {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
}

.shadow-md {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
}

.shadow-lg {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15) !important;
}

/* ============================================
      TEXT SIZE + WEIGHT
  ============================================ */
.text-xs {
    font-size: 0.75rem !important;
}

.text-sm {
    font-size: 0.875rem !important;
}

.text-base {
    font-size: 1rem !important;
}

.text-lg {
    font-size: 1.125rem !important;
}

.text-xl {
    font-size: 1.25rem !important;
}

.text-xxl {
    font-size: 1.85rem !important;
}

.text-2xl {
    font-size: clamp(1.5rem, 5vw, 2rem);
}

.text-3xl {
    font-size: clamp(1.5rem, 5vw, 3rem);
}

.text-4xl {
    font-size: clamp(1.5rem, 5vw, 4rem);
}

.text-5xl {
    font-size: clamp(3rem, 10vw, 180px);
}


.font-light {
    font-weight: 300 !important;
}

.font-medium {
    font-weight: 500 !important;
}

.font-semibold {
    font-weight: 600 !important;
}

.font-bold {
    font-weight: 700 !important;
}

/* ============================================
      POSITION
  ============================================ */
.relative {
    position: relative !important;
}

.absolute {
    position: absolute !important;
}

.fixed {
    position: fixed !important;
}

.top-0 {
    top: 0 !important;
}

.left-0 {
    left: 0 !important;
}

.right-0 {
    right: 0 !important;
}

.bottom-0 {
    bottom: 0 !important;
}

/* ============================================
      TRANFORM
  ============================================ */
.uppercase {
    text-transform: uppercase !important;
}

.lowercase {
    text-transform: lowercase !important;
}

.capitalize {
    text-transform: capitalize !important;
}

/* ============================================
      TEXT ALIGN
  ============================================ */
.text-left {
    text-align: left !important;
}

.text-center {
    text-align: center !important;
}

.text-right {
    text-align: right !important;
}

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

.btn-primary {
    padding: 10px 18px;
    border-radius: 12px;
    background-color: var(--gray);
    color: var(--white);
    border: none;
}

.btn-secondary {
    padding: 10px 18px;
    border-radius: 12px;
    background-color: var(--white);
    color: var(--black);
    border: none;
}



/* ============================================
      OPACITY
  ============================================ */
.opacity-0 {
    opacity: 0 !important;
}

.opacity-30 {
    opacity: 0.3 !important;
}

.opacity-50 {
    opacity: 0.5 !important;
}

.opacity-75 {
    opacity: 0.75 !important;
}

/* ============================================
      type utilities
  ============================================ */
#animatedText {
    font-size: 3rem;
    font-family: sans-serif;
    color: #333;
}

.char {
    opacity: 0;
    transition: opacity 0.2s ease;
}


/* ============================================
      NAVBAR
  ============================================ */
.menu-dropdown ul {
    display: none;
    background-color: #EDEDED;
    list-style: none;

}

.menu-dropdown ul li a {
    text-decoration: none;
    color: black;
}

.menu-dropdown img {
    cursor: pointer;
}

.menu-dropdown:hover ul {
    display: block;
}

header {
    border-bottom: 1px solid #EDEDED;
    border-top: 1px solid #EDEDED;
    backdrop-filter: blur(4px);
    filter: brightness(100%) !important;
    position: sticky;
    z-index: 99;
    top: 0;
    background-color: #ffffff8c;
}

body.dark-theme header {
    background-color: #9b9b9b87;
}


body.dark-theme .logo-img {
    filter: brightness(0) invert(1);
}

/* Hero Section */
.hero-img {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: end;
}

/* Performance optimization - reduce repaints/reflows */
.hero-img video {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Image Styling + Animation */
.hero-img img {
    animation: zoomInSmooth 4s ease-in-out forwards;
    object-fit: cover;
}

/* Keyframes for Smooth Zoom Animation */
@keyframes zoomInSmooth {
    0% {
        height: 150px;
        width: 200px;
        opacity: 0.5;
    }

    50% {
        height: 80vh;
        width: 30vw;
        opacity: 0.8;
    }

    100% {
        height: 100vh;
        width: 100vw;
        opacity: 1;
    }
}

header .lucide {
    width: 16px;
    height: 16px;

}

.service-container {
    width: 50%;
    margin: 0 auto;
    white-space: nowrap;
}

/*  Divider line */
.service-line {
    width: 100%;
    height: .5px;
    background-color: #ffffff51;
}

.container {
    width: 90%;
    margin: 0 auto;
    max-width: 1440px;
}

/* about  */
.about-section {
    background-image: url('../assets/bg-dark.webp');
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
}

body.dark-theme .about-section {
    background-image: url('../assets/bg-light.webp') !important;
}

.about-section .content {
    width: 80%;
    margin: 0 auto;
}

.about-cards-contaier {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.about-card {
    height: 460px;
    overflow: hidden;
}

.about-card img {

    object-fit: cover;
}


.about-overlay {
    opacity: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
    transition: opacity 0.3s ease;
}

.about-card:hover .about-overlay {
    opacity: 1;
}

/* testimonial section  */
.testimonial-section {
    background-image: url('../assets/testimonial-bg.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}




/* ============================================
      SWIPER GALLERY SLIDER
  ============================================ */



/* Main Gallery Swiper */
.gallery-swiper {
    width: 100%;
    height: 500px;
    margin-bottom: 30px;
    /* border-radius: 20px; */
    /* overflow: visible; */
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); */
}

.slide-content {
    width: 100%;
    height: 100%;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.4;
    transform: scale(0.8);
}

.slide-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    will-change: transform, opacity;
}

/* Active slide (center) */
.gallery-swiper .swiper-slide-active .slide-content {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

/* Non-active slides */
.gallery-swiper .swiper-slide:not(.swiper-slide-active) .slide-content {
    opacity: 0.4;
    transform: scale(0.8);
}

/* Swiper Navigation Buttons */
.swiper-button-next,
.swiper-button-prev,
.testimonial-swiper-button-prev,
.testimonial-swiper-button-next {
    color: var(--black) !important;
    background: var(--white) !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    margin-top: -25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hide default Swiper arrows */
.swiper-button-next:after,
.swiper-button-prev:after,
.testimonial-swiper-button-next:after,
.testimonial-swiper-button-prev:after {
    display: none !important;
}



.swiper-button-next:hover,
.swiper-button-prev:hover,
.testimonial-swiper-button-next:hover,
.testimonial-swiper-button-prev:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.swiper-button-prev,
.testimonial-swiper-button-prev {
    left: 20px !important;
}

.swiper-button-next,
.testimonial-swiper-button-next {
    right: 20px !important;
}

.testimonial-slider-container {
    width: 100%;

    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
}

/* .testimonial-slider-container .swiper-slide{
    width: 100%;
    height: 200px;
} */
/* Swiper Pagination */
.testimonial-slider-container .swiper-pagination {
    bottom: 0px !important;
}

.testimonial-slider-container .swiper-pagination-bullet {
    background: #C2C2C2;
    opacity: 1;
    width: 10px;
    height: 10px;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.testimonial-slider-container .swiper-pagination-bullet-active {
    background: #ffffff;

    transform: scale(1.29);
}

/* Thumbnail Swiper */
.thumbnail-swiper {
    width: 70%;
    height: 100px;
    padding: 10px 0;
}

.thumbnail-content {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    opacity: 0.6;
}

.thumbnail-content:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.thumbnail-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
}

/* Active thumbnail */
.thumbnail-swiper .swiper-slide-thumb-active .thumbnail-content {
    opacity: 1;
    border-color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

/* ============================================
      TESTIMONIALS SWIPER SLIDER
  ============================================ */
.testimonial-section {
    min-height: 800px;
}

.testimonial-card {
    width: 100%;
    height: 100%;
    border-radius: 14px;
    backdrop-filter: blur(6.800000190734863px);
    background-color: #FFFFFF80;
    padding: 22px;
    height: 260px;
    color: black;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery-swiper {
        height: 350px;
        margin-bottom: 20px;
    }

    /* Mobile pe single slide view with center effect */
    .gallery-swiper .swiper-slide:not(.swiper-slide-active) .slide-content {
        opacity: 0.3;
        transform: scale(0.7);
    }

    .swiper-button-next,
    .swiper-button-prev,
    .testimonial-swiper-button-next,
    .testimonial-swiper-button-prev {
        width: 40px !important;
        height: 40px !important;
        margin-top: -20px;
    }

    .swiper-button-prev,
    .testimonial-swiper-button-prev {
        left: 10px !important;
    }

    .swiper-button-next,
    .testimonial-swiper-button-next {
        right: 10px !important;
    }

    /* .thumbnail-swiper {
        height: 80px;
    } */
}

@media (max-width: 480px) {
    .gallery-swiper {
        height: 280px;
    }

    /* Small mobile pe more pronounced effect */
    .gallery-swiper .swiper-slide:not(.swiper-slide-active) .slide-content {
        opacity: 0.2;
        transform: scale(0.6);
    }

    .swiper-button-next,
    .swiper-button-prev,
    .testimonial-swiper-button-next,
    .testimonial-swiper-button-prev {
        width: 35px !important;
        height: 35px !important;
        margin-top: -17.5px;
    }

    /* .thumbnail-swiper {
        height: 70px;
    } */
}

/* Custom scrollbar for thumbnails */
.thumbnail-swiper::-webkit-scrollbar {
    height: 4px;
}

.thumbnail-swiper::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.thumbnail-swiper::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.thumbnail-swiper::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* ============================================
      CONTACT SECTION
  ============================================ */
.contact-us-section {
    padding: 60px 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: #EDEDED;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

body.dark-theme .contact-container {
    background: #1A1A1A;
}

/* Contact Info Section */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}


.opening-hours {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}



.time.closed {
    color: #ff7a00;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    width: 30px;
    height: 30px;
    color: var(--black);
    border: 1px solid var(--light-brown);
    padding: 6px;
    stroke-width: 1.5;
    border-radius: 6px;
}





.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 15px 60px 15px 15px;
    border: none;
    border-radius: 8px;
    background: var(--white);

    color: var(--black);
    transition: all 0.3s ease;
    position: relative;
    resize: none;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;

}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--gray);
}

.form-icon {
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    height: 100%;
    border-radius: 0 8px 8px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    border-left: 1px solid var(--light-brown);
    background-color: var(--white);
}

.text-area-icon {
    border-bottom-left-radius: 12px !important;
    border-top-right-radius: 12px !important;
    border-bottom: 1px solid var(--light-brown);
}

.form-icon .lucide,
.icons-color .lucide {
    width: 18px;
    height: 18px;
    color: var(--black);
    stroke-width: 1.5;
    stroke: var(--black);
}





.form-group:has(.form-textarea) .form-icon {
    height: 50px;
    border-radius: 0 8px 0 12px;
}


/* ============================================
      BOOK NOW BUTTON
  ============================================ */
.book-now-button {
    background-color: #0000001A;
    padding: 10px 20px;
    display: block;
    text-decoration: none;
}

body.dark-theme .book-now-button {
    background-color: #0000008e !important;

}

/* ============================================
    FOOTER STYLES
============================================ */
.footer {
    background-color: var(--white);
    padding: 60px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Brand Identity Section */
.footer-brand {
    max-width: 300px;
}




.footer li {
    margin-bottom: 8px;
    list-style: none;
}

.footer a {
    text-decoration: none;
    color: var(--black);


}

/* Footer Separator */
.footer-separator {
    width: 100%;
    height: 1px;
    background-color: #e0e0e0;
    margin: 40px 0 20px;
}


/* toast  */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #333;
    color: white;
    padding: 12px 18px;
    border-radius: 6px;
    opacity: 0;
    transition: opacity 0.4s, transform 0.4s;
    transform: translateY(20px);
    z-index: 1000;
  }

  .toast.show {
    opacity: 1;
    transform: translateY(0);
  }

  .toast.success {
    background-color: #28a745;
  }

  .toast.error {
    background-color: #dc3545;
  }
  button[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
  }
/* Responsive Design for Contact Section */
@media (max-width: 1024px) {
    .contact-container {
        gap: 40px;
        padding: 40px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .about-cards-contaier {

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

@media (max-width: 768px) {
    .gallery-swiper .swiper-slide .slide-content {
        max-width: 350px;
        margin-inline: auto;
    }

    .testimonial-card {
        max-width: 350px;
        margin-inline: auto;
    }

    .footer-brand {
        margin-inline: auto;
        max-width: 400px;
    }

    .about-cards-contaier {

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

    .thumbnail-swiper {
        width: 100%;
    }

    .about-card {
        max-width: 400px;
        margin-inline: auto;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 30px;
        margin: 0 20px;
    }

    header .book-now-button {
        display: none;
    }

    header .logo-img {
        width: 150px;
        height: auto;
    }

    .service-container {
        width: 100%;

    }

    /* .service-line{
        display: none;
    } */
    header .menu-dropdown img {
        width: 50px;
    }

    header .menu-dropdown ul {
        width: 90px !important;
    }

    .hours-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .form-input,
    .form-textarea {
        padding: 12px 50px 12px 12px;
    }

    .form-icon {
        width: 45px;
    }

    .form-icon i {
        width: 18px;
        height: 18px;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .footer-copyright {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

}

@media (max-width: 480px) {
    .contact-us-section {
        padding: 40px 0;
    }

    .contact-container {
        padding: 20px;
        margin: 0 10px;

    }



    .opening-hours {
        gap: 12px;
    }

    .contact-details {
        gap: 15px;
    }



    .footer {
        padding: 30px 0 15px;
    }

    .footer-container {
        padding: 0 15px;
        gap: 20px;
    }


}

/* ============================================
    FIXED BOOK NOW BUTTON STYLES
============================================ */
.fixed-book-now-btn {
    position: fixed;
    bottom: 20px;
    right: 10px;
    background: var(--black);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.fixed-book-now-btn:hover {
    transform: translateY(-2px);
    text-decoration: none;
}


a,
button {
    text-decoration: none;
    cursor: pointer !important;

}

.thumbnail-swiper .swiper-wrapper {
    justify-content: center !important;
}