/*
    ============================
        Girfa IT Services
         www.girfa.co.in
    ============================
*/
:root {
  --color-yellow: #cea367;
  --color-orange : #ff6600;
  
}
.g-contact-box{
    background: linear-gradient(90deg, #ff0f6d, #6a11cb);
        border-top-left-radius: 50px;
        border-bottom-right-radius: 50px
}
.g-border-radius{
    border-radius: 20px !important;
}
.g-color-white{
    color:white !important;
}
.g-maincontain-margin{
    margin-top: -80px;
}
.g-color-yellow{
    color:var(--color-yellow)
}
.g-color-orange{
    color:var(--color-orange)
}
.g-bgcolor-yellow {
    background-color: var(--color-yellow)
}

.g-bgcolor-orange {
    background-color: var(--color-orange)
}
.g-center{
    display:block;margin:auto;
}
.g-center-inline{
    display:block;text-align:center;
}
.g-justify{
    text-align:justify;
}
.g-font-itelic {
  font-family: "Passions Conflict", cursive;
  font-weight: 400;
  font-style: normal;
}
.g-font1 {
    font-family: 'Dosis', sans-serif !important;
}

.g-font2 {
    font-family: 'Josefin Sans', sans-serif !important;
}

.g-font3 {
    font-family: 'Source Sans Pro', sans-serif !important;
}
#fade {
    display: none;
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 200%;
    background-color: #ababab;
    z-index: 1151;
    -moz-opacity: 0.8;
    opacity: .20;
    filter: alpha(opacity=80);
}

#modal {
    display: none;
    position: absolute;
    top: 75%;
    left: 48%;
    z-index: 1002;
    text-align: center;
}

.fileUpload {
    position: relative;
    overflow: hidden;
    /*margin: 10px;*/
    margin-top: 0px;
}
    .fileUpload input.upload {
        position: absolute;
        top: 0;
        right: 0;
        margin: 0;
        padding: 0;
        font-size: 20px;
        cursor: pointer;
        opacity: 0;
        filter: alpha(opacity=0);
    }
.facility {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.facility .item {
    width: calc(33.33% - 14px);
}

.facility i {
    color: #cea367;
}
.g-form {
}

    .g-form input[type=text], [type=email], [type=password], [type=number], [type=date], textarea {
        border: solid #ababab 1px !important;
        border-radius: 0px;
        margin-bottom: 10px !important;
        width: 100%;
    }

    .g-form select {
        padding: 2px;
        border: solid #ababab 1px !important;
        border-radius: 0px;
        width: 100%;
        margin-bottom: 10px !important;
    }

@media (max-width:700px) {
    .g-form input {
        width: 100%;
        display: block;
        margin: auto;
    }
}

.g-mandate {
    font-weight: bold;
    color: red;
}

.g-drop-shadow {
    -webkit-box-shadow: 1px 1px 8px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 1px 1px 8px 0px rgba(0,0,0,0.75);
    box-shadow: 1px 1px 8px 0px rgba(0,0,0,0.75);
}
.g-bold {
    font-weight: bolder;
}

.g-web-show {
    display: block;
}

@media(max-width:700px) {
    .g-web-show {
        display: none !important;
    }
}

.g-mob-show {
    display: none;
}

@media(max-width:700px) {
    .g-mob-show {
        display: block !important;
    }
}

.g-img-border-radius {
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
}
.g-img-padding-border{
    border:solid 1px #ababab;
    padding:7px;
}
.g-list{

}
.g-list li{
    list-style:disc !important;
    margin-left:5% !important;
}
.g-bg-section {
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.g-p-border-top-bottom {
    border-top: solid 1px black;
    border-bottom: solid 1px black;
    padding : 20px;
}

.g-font1 {
    font-family: 'Dosis', sans-serif !important;
}

.g-font2 {
    font-family: 'Josefin Sans', sans-serif !important;
}

.g-font3 {
    font-family: 'Source Sans Pro', sans-serif !important;
}

.g-color-red{
    color:#fd5001 !important;    

}
/*========== Vertical Scroll div ===========*/
.card {
    
    transition: 0.3s;
    width: 100%;
    height: 500px;
    overflow: auto;
  }
  

  
  .cardcontainer {
    padding: 22px 16px;
  }
  

  
  
  
  /*========== // Vertical Scroll div ===========*/
  /*==========  Review Slider ===========*/
  .g-review-slider {
    position: relative;
    max-width: 100%;
    width: 90%; /* Responsive width */
    margin: auto;
    overflow: hidden;
    border: 1px solid #ccc;
    padding: 20px;
    text-align: center;
}

.g-slides {
   
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.g-slides img:first-of-type 
{
    width: 60px;height: 60px;
}
.g-slides p{
   
   padding:20px;
}
.g-slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 0 20px; /* Add padding for better spacing on small screens */
}

.g-review-slider button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10; /* Ensure buttons are above slides */
}

    .g-review-slider button.prev {
        left: 10px;
    }

    .g-review-slider button.next {
        right: 10px;
    }

/* Responsive adjustments */
@media (max-width: 600px) {
    .g-review-slider {
        padding: 10px;
    }

        .g-review-slider button {
            padding: 8px;
            font-size: 14px;
        }
}
/*========== // Review Slider ===========*/

.g-strong-theme-color{
    
}

.g-strong-theme-color strong{
    color:#fd5001 !important;
}

.g-img-phone-responsive{
  
}
@media(max-width:700px){
    .g-img-phone-responsive{
         width: 100%;
         padding:10px;
    }
}
/* ============== Search Availability =================== */
.booking-section{
    
    width:100%;
    position:relative;
    margin-top:-170px;
    z-index:10;
}

.booking-box{
    max-width:1200px;
    margin:auto;
    background:#fff;
    padding:30px 40px;
    display:flex;
    align-items:center;
    gap:30px;
    box-shadow:0 18px 40px rgba(0,0,0,0.08);
}

.booking-field{
    flex:1;
}

.booking-field label{
    display:block;
    font-size:10px;
    letter-spacing:2px;
    color:#999;
    margin-bottom:15px;
    font-weight:500;
}

.input-box{
    position:relative;
    
    padding-bottom:10px;
}

.input-box input{
    width:100%;
    border:none;
    outline:none;
    font-size:15px;
    color:#757577;
    background:transparent;
    padding-right:35px;
}

.icon{
    position:absolute;
    right:0;
    top:50%;
    transform:translateY(-50%);
    width:20px;
    height:20px;
}

.icon svg{
    width:100%;
    height:100%;
    fill:none;
    stroke:#c1c1c1;
    stroke-width:2;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.booking-btn button{
    margin-top:10px;
    background:#c99a57;
    border:none;
    color:#fff;
    padding:22px 40px;
    font-size:14px;
    letter-spacing:3px;
    cursor:pointer;
    font-weight:600;
    transition:.3s;
    white-space:nowrap;
}

.booking-btn button:hover{
    opacity:.9;
}

input[type="date"]::-webkit-calendar-picker-indicator{
    opacity:0;
    position:absolute;
    width:100%;
    cursor:pointer;
}

@media(max-width:991px){
    .booking-box{
        flex-wrap:wrap;
    }

    .booking-field,
    .booking-btn{
        width:100%;
    }

    .booking-btn button{
        width:100%;
    }
    .booking-section{
    
 
    margin-top:-100px;
    
}

}
/* ============== // Search Availability =================== */
/* ==============  Flex Box =================== */
.g-flex-container{
    display: flex !important;
        gap: 20px;
        /* Modern way to add space between boxes */
        padding: 10px;
        flex-wrap: wrap;
}
.g-flex-box{
    flex: 1;
        /* Makes all three boxes equal width */
        min-width: 250px;
        /* Prevents boxes from getting too narrow */
        background-color: #f9f9f9;
        padding: 25px;
        border-radius: 8px;
        border: 1px solid #ddd;
        text-align: center;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
   
}
/* ============== // Flex Box =================== */
/* ==============  Image Gallery =================== */
 .slider {
     position: relative;
     max-width: 100%;
     overflow: hidden;
 }

 .slides {
     display: flex;
     transition: transform 0.5s ease-in-out;
     width: 100%;
 }

 .slides img {
     width: 100%;
     flex-shrink: 0;
 }

 /* Navigation buttons */

 .prev,
 .next {

     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     background: rgba(0, 0, 0, 0.5);
     color: #fff;
     padding: 10px;
     cursor: pointer;
     border: none;
     font-size: 18px;
     z-index: 10;
 }



 .prev {
     left: 10px;
 }



 .next {
     right: 10px;
 }

 /* Responsive */

 @media (max-width: 768px) {

     .prev,
     .next {
         font-size: 14px;
         padding: 8px;
     }

 }
/* ============== // Image Gallery =================== */
/* ==============  Room =================== */
.g-room-section {
    padding: 100px 20px;
    background: #f9f8f5;
}

.g-room-container {
    max-width: 1300px;
    margin: auto;
}

.g-room-heading {
    text-align: center;
    margin-bottom: 60px;
}

.g-room-heading span {
    display: block;
    font-size: 18px;
    color: #c6a26b;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.g-room-heading h2 {
    font-size: 48px;
    font-weight: 500;
    color: #111;
}

.g-room-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.g-room-card {
    position: relative;
    overflow: hidden;
    height: 500px;
    cursor: pointer;
}

.g-room-image {
    width: 100%;
    height: 100%;
}

.g-room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s ease;
}

/* Elegant dark overlay */
.g-room-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .35);
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    text-align: center;
    z-index: 2;
    padding: 30px;
}

.g-room-overlay h3 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 500;
    letter-spacing: 1px;
}

.g-room-overlay a {
    text-decoration: none;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .7);
    padding: 14px 30px;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: .4s ease;
}

/* Hover zoom only */
.g-room-card:hover .g-room-image img {
    transform: scale(1.12);
}

.g-room-overlay a:hover {
    background: #c6a26b;
    border-color: #c6a26b;
}

/* Infinite Border Animation */
.g-border-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #c6a26b, transparent);
    z-index: 3;
}

.g-border-top {
    
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    animation: g-border-top-run 3s linear infinite;
}

.g-border-right {
    
    top: 0;
    right: 0;
    width: 5px;
    height: 100%;
    animation: g-border-right-run 3s linear infinite;
}

.g-border-bottom {
    
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    animation: g-border-bottom-run 3s linear infinite;
}

.g-border-left {
    
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    animation: g-border-left-run 3s linear infinite;
}

@keyframes g-border-top-run {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

@keyframes g-border-right-run {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100%);
    }
}

@keyframes g-border-bottom-run {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes g-border-left-run {
    0% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(-100%);
    }
}

/* Responsive */
@media(max-width:991px) {
    .g-room-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .g-room-heading h2 {
        font-size: 38px;
    }

    .g-room-card {
        height: 420px;
    }
}

@media(max-width:767px) {
    .g-room-grid {
        grid-template-columns: 1fr;
    }

    .g-room-heading h2 {
        font-size: 30px;
    }

    .g-room-card {
        height: 380px;
    }

    .g-room-overlay h3 {
        font-size: 24px;
    }
}


/* ============== // Room =================== */
/* ==============  Home Video  =================== */
.g-video-section {
    padding: 20px 20px;
    background: #f8f8f8;
}

.g-video-container {
    max-width: 1300px;
    margin: auto;
}

.g-video-box {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.g-video-box video {
    width: 100%;
    height: 650px;
    object-fit: cover;
    display: block;
}

/* Dark elegant overlay */
.g-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .70),
            rgba(0, 0, 0, .20));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.g-video-subtitle {
    font-size: 18px;
    color: #c6a26b;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.g-video-title {
    font-size: 58px;
    color: #fff;
    line-height: 1.2;
    font-weight: 500;
    max-width: 850px;
}

/* Tablet */
@media(max-width:991px) {
    .g-video-box video {
        height: 500px;
    }

    .g-video-title {
        font-size: 42px;
    }

    .g-video-subtitle {
        font-size: 16px;
    }
}

/* Mobile */
@media(max-width:767px) {
    .g-video-section {
        padding: 70px 15px;
    }

    .g-video-box video {
        height: 380px;
    }

    .g-video-title {
        font-size: 28px;
        line-height: 1.4;
    }

    .g-video-subtitle {
        font-size: 14px;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }
}


/* ============== // Home Video  =================== */
/* ==============  Why Choose Us =================== */
.g-why-section {
    padding: 120px 20px;
    background: #f9f6f0;
}

.g-why-container {
    max-width: 1300px;
    margin: auto;
}

.g-why-heading {
    text-align: center;
    margin-bottom: 80px;
}

.g-why-heading span {
    display: block;
    color: #c6a26b;
    font-size: 18px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.g-why-heading h2 {
    font-size: 52px;
    font-weight: 500;
    line-height: 1.2;
    color: #111;
    max-width: 800px;
    margin: auto;
}

.g-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.g-why-card {
    position: relative;
    overflow: hidden;
    height: 550px;
    border-radius: 8px;
    cursor: pointer;
}

.g-why-image {
    width: 100%;
    height: 100%;
}

.g-why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s ease;
}

/* Elegant dark overlay */
.g-why-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .85),
            rgba(0, 0, 0, .35),
            rgba(0, 0, 0, .10));
    z-index: 1;
}

/* Content Box */
.g-why-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    z-index: 2;
    color: #fff;
    box-sizing: border-box;
    /* important fix */
}

.g-why-content span {
    display: inline-block;
    font-size: 48px;
    color: rgba(255, 255, 255, .20);
    margin-bottom: 15px;
    font-weight: 600;
}

.g-why-content h3 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 16px;
    line-height: 1.35;
}

.g-why-content p {
    font-size: 15px;
    line-height: 1.9;
    color: rgba(255, 255, 255, .88);
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

/* Luxury hover animation */
.g-why-card:hover .g-why-image img {
    transform: scale(1.10);
}

.g-why-card::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 30px;
    right: 30px;
    bottom: 30px;
    border: 1px solid rgba(255, 255, 255, .20);
    z-index: 2;
    transition: .4s ease;
    pointer-events: none;
}

.g-why-card:hover::before {
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border-color: rgba(198, 162, 107, .8);
}

/* Gold line animation */
.g-why-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #c6a26b;
    z-index: 3;
    transition: .5s ease;
}

.g-why-card:hover::after {
    width: 100%;
}

/* Tablet */
@media(max-width:991px) {
    .g-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .g-why-heading h2 {
        font-size: 40px;
    }

    .g-why-card {
        height: 480px;
    }
}

/* Mobile */
@media(max-width:767px) {
    .g-why-section {
        padding: 80px 15px;
    }

    .g-why-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .g-why-heading h2 {
        font-size: 30px;
    }

    .g-why-card {
        height: 420px;
    }

    .g-why-content {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 55px;
        z-index: 2;
        color: #fff;
        box-sizing: border-box;
    }

    .g-why-content h3 {
        font-size: 24px;
        color:white !important;
    }

    .g-why-content {
        padding: 30px;
        /* reduced from 55px */
    }

    .g-why-content span {
        display: inline-block;
        font-size: 42px;
        color: white
        margin-bottom: 12px;
        font-weight: 600;
        line-height: 1;
    }
}


/* ============== // Why Choose Us =================== */
/* ==============  Room Form =================== */
.g-room-form{
    padding: 20px 20px;
background: #182930;
    background: linear-gradient(174deg, rgba(24, 41, 48, 1) 0%, rgba(21, 35, 43, 1) 50%, rgba(87, 10, 3, 1) 100%);            
        color:#f8f8f8;
}
.g-room-form input[type="text"],
.g-room-form input[type="date"],
.g-room-form input[type="number"] {
    width: 100%;
        padding: 10px 0;
        border: 0 !important;
        border-bottom: 1px solid #ccc !important;
        outline: none;
        background: transparent;
        border-radius: 0 !important;
        box-shadow: none !important;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: textfield;
        color:white;
}
.g-room-form input[type="date"] {
    color: #999;
}

.g-room-form input[type="submit"] {
    background: transparent;
    text-align: center;
    border:solid 1px white;
    width: 100%;
}
.g-room-form input[type="submit"]:hover {
    background-color: #c6a26b;
}
/* ============== // Room Form =================== */
  .rotating-object {
      animation: rotateObject 15s linear infinite;
  }

  @keyframes rotateObject {
      from {
          transform: rotate(0deg);
      }

      to {
          transform: rotate(360deg);
      }
  }


  /*==================    Home Slider   ==================*/
  .g-home-slide-container {
      position: relative;
      width: 100%;
      overflow: hidden;
      top:-70px;
  }

  .g-home-slide-slider {
      display: flex;
      align-items: center;
      transition: transform 0.5s ease;
  }

  .g-home-slide {
      min-width: 70%;
      margin: 0 15px;
      transition: opacity 0.4s ease;
      opacity: 0.5;
      position: relative;
  }

  .g-home-slide::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.1));
      border-radius: 10px;
  }

  .g-home-slide-content {
      position: absolute;
      bottom: 40px;
      left: 40px;
      z-index: 2;
      color: #fff;
      max-width: 500px;
  }

  .g-home-slide-content h2 {
      font-size: 28px;
      margin-bottom: 10px;
      color:white !important;
    font-family: 'Josefin Sans', sans-serif !important;
    font-weight: 500;
     line-height: 1.2;
  }

  .g-home-slide-content p {
      font-size: 16px;
      margin-bottom: 15px;
  }

  .g-home-slide-btn {
      display: inline-block;
      background: #27508c;
      color: #fff;
      padding: 10px 20px;
      border-radius: 25px;
      text-decoration: none;
      font-size: 14px;
  }

  /* REMOVE SCALE — keep same size */
  .g-home-slide.active {
      opacity: 1;
  }

  .g-home-slide img,
  .g-home-slide video {
      display: block;
      width: 100%;
      height: 600px;
      object-fit: cover;
      border-radius: 10px;

  }

  /* Indicators */
  .g-home-slide-indicators {
      display: flex;
      justify-content: center;
      margin-top: 15px;
  }

  .g-home-slide-indicators span {
      width: 40px;
      height: 4px;
      background: #ccc;
      margin: 0 5px;
      cursor: pointer;
      transition: 0.3s;
  }

  .g-home-slide-indicators span.active {
      background: #b3002d;
  }


  /*==================   // Home Slider   ==================*/
  /*==================    Meradon Opus  Slider   ==================*/
   :root {
     
      --gold-accent: #ffe5c2;
      --white: #ffffff;
  }

  .g-hero-slider {    
      position: relative;
      width: 100%;
      height: 100vh;
      
      overflow: hidden;
      background-color: #000;
  }

  .slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      visibility: hidden;
      transition: opacity 1.2s ease-in-out, visibility 1.2s ease-in-out;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1;
  }

  .slide.active {
      opacity: 1;
      visibility: visible;
      z-index: 2;
  }

  /* Background image with luxury slow zoom */
  .slide-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      
      transform: scale(1.18);
      filter: blur(3px);
      
      transition: transform 5s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 1.2s ease-in-out;
  }

  .slide.active .slide-bg {
      transform: scale(1.03);
      filter: blur(0);
  }

  .slide:not(.active) .slide-bg {
      transition: none;
      transform: scale(1.18);
      filter: blur(3px);
  }

  
  .slide-overlay {
      position: absolute;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
  }

  /* Text & Button Layout */
  .slide-content {
      position: relative;
      z-index: 3;
      text-align: center;
      color: var(--white);
      padding: 0 20px;
      max-width: 800px;
  }

  .slide-subtitle {
      font-family: var(--secondary-font);
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 4px;
      margin-bottom: 15px;
      color: var(--gold-accent);
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.8s ease out 0.3s;
  }

  .slide-title {
      font-family: var(--primary-font);
      font-size: 54px;
      font-weight: 400;
      line-height: 1.2;
      margin-bottom: 30px;
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s ease out 0.5s;
  }

  .btn-book-now {
      display: inline-block;
      font-family: var(--secondary-font);
      font-size: 13px;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--white);
      border: 1px solid var(--white);
      padding: 15px 35px;
      text-decoration: none;
      background: transparent;
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.8s ease out 0.7s, background 0.3s ease, border-color 0.3s ease;
  }

  .btn-book-now:hover {
      background: var(--gold-accent);
      border-color: var(--gold-accent);
  }

  
  .slide.active .slide-subtitle,
  .slide.active .slide-title,
  .slide.active .btn-book-now {
      opacity: 1;
      transform: translateY(0);
  }

  
  .slider-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: transparent;
      border: none;
      color: var(--white);
      font-size: 24px;
      cursor: pointer;
      z-index: 10;
      padding: 15px;
      opacity: 0.6;
      transition: opacity 0.3s ease;
  }

  .slider-arrow:hover {
      opacity: 1;
  }

  .slider-arrow.prev {
      left: 30px;
  }

  .slider-arrow.next {
      right: 30px;
  }

  .slider-dots {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 12px;
      z-index: 10;
  }

  .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.4);
      cursor: pointer;
      transition: all 0.3s ease;
  }

  .dot.active {
      background: var(--gold-accent);
      transform: scale(1.2);
  }

  /* Responsive Scaling for smaller displays */
  @media (max-width: 768px) {
      .slide-title {
          font-size: 36px;
          margin-bottom: 20px;
      }

      .slide-subtitle {
          font-size: 12px;
          letter-spacing: 3px;
      }

      .btn-book-now {
          padding: 12px 28px;
          font-size: 12px;
      }

      .slider-arrow {
          display: none;
      }

      
      .hero-slider {
          height: 80vh;
      }

      
  }

  
  /*==================   // Meradon Opus  Slider   ==================*/
  /*==================    About Meradon Opus     ==================*/
  :root {
      --font-serif: 'Playfair Display', serif;
      --font-sans: 'Montserrat', sans-serif;
      --gold: #c5a880;
      --dark: #1a1a1a;
      --white-bg: #ffffff;
      --text-muted: #555555;
      --border-color: #eae5dd;
  }

  .about-section {
      background-color: var(--white-bg);
      padding: 120px 20px;
      position: relative;
      overflow: hidden;
  }

  .about-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      /* Split grid: 45% description narrative, 55% image composition space */
      grid-template-columns: 45fr 55fr;
      gap: 80px;
      align-items: center;
  }

  /* Narrative Text Content Layout */
  .about-content {
      z-index: 2;
  }

  .about-subtitle {
      font-family: var(--font-sans);
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 4px;
      color: var(--gold);
      margin-bottom: 12px;
  }

  .about-title {
      font-family: var(--font-serif);
      font-size: 40px;
      font-weight: 400;
      line-height: 1.3;
      color: var(--dark);
      margin-bottom: 20px;
  }

  .about-divider {
      width: 60px;
      height: 1px;
      background-color: var(--gold);
      margin-bottom: 30px;
  }

  .about-lead {
      font-family: var(--font-sans);
      font-size: 16px;
      font-weight: 500;
      line-height: 1.7;
      color: var(--dark);
      margin-bottom: 20px;
  }

  .about-description {
      font-family: var(--font-sans);
      font-size: 14px;
      line-height: 1.8;
      color: var(--text-muted);
      margin-bottom: 35px;
  }

  .about-signature-block {
      border-top: 1px solid var(--border-color);
      padding-top: 20px;
      display: inline-block;
  }

  .signature-text {
      font-family: var(--font-serif);
      font-size: 18px;
      font-style: italic;
      color: var(--gold);
  }

  /* Interactive Visual Composition Frame */
  .about-gallery {
      position: relative;
      width: 100%;
      display: flex;
      justify-content: flex-end;
  }

  .main-image-wrapper {
      width: 85%;
      height: 520px;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  }

  .accent-image-wrapper {
      position: absolute;
      bottom: -40px;
      left: 0;
      width: 45%;
      height: 300px;
      overflow: hidden;
      border: 8px solid var(--white-bg);
      /* Elegant masking frame border */
      box-shadow: 0 30px 50px rgba(0, 0, 0, 0.1);
  }

  .about-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  /* Subtle, cinematic zoom effect when hovering over the images */
  .main-image-wrapper:hover .main-img,
  .accent-image-wrapper:hover .accent-img {
      transform: scale(1.05);
  }

  /* Responsive Structural Breakpoints */
  @media (max-width: 1024px) {
      .about-container {
          gap: 40px;
      }

      .about-title {
          font-size: 34px;
      }

      .main-image-wrapper {
          height: 420px;
      }

      .accent-image-wrapper {
          height: 240px;
          bottom: -20px;
      }
  }

  @media (max-width: 768px) {
      .about-container {
          grid-template-columns: 1fr;
          /* Switch to stack structure */
          gap: 60px;
      }

      .about-section {
          padding: 70px 15px;
      }

      .about-content {
          text-align: center;
      }

      .about-divider {
          margin: 0 auto 30px auto;
      }

      .about-gallery {
          justify-content: center;
          margin-bottom: 40px;
          /* Leave space for the overlapping accent frame */
      }

      .main-image-wrapper {
          width: 100%;
          height: 380px;
      }

      .accent-image-wrapper {
          width: 50%;
          height: 220px;
          left: 10px;
          bottom: -40px;
      }
  }
  /*==================   // About Meradon Opus     ==================*/
  