/* COLORS (logo se match kar lena) */


body{
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
}

 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
  
      background-color: #fff9f9;
      color: #1e2a2f;
      overflow-x: hidden;
    }
    
    h1, h2, h3, h4, .logo, .section-title, .about-title {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 600;
    }
    
    :root {
      --gold: #f42728;
      --gold-dark: #a90101;
      --dark: #2c2c2c;
      --light-bg: #fff9f2;
      --shadow-sm: 0 10px 30px rgba(0,0,0,0.05);
      --shadow-md: 0 20px 40px rgba(0,0,0,0.08);
    }
    
    /* Navbar */
    .navbar {
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(12px);
      padding: 5px 0;
      box-shadow: 0 2px 25px rgba(0,0,0,0.05);
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1030;
      transition: all 0.3s;
    }
    
    .logo {
      font-size: 1.8rem;
      font-weight: 700;
      background: linear-gradient(135deg, var(--gold), var(--gold-dark));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      letter-spacing: -0.5px;
      font-family: 'Cormorant Garamond', serif;
    }
    
    .logo span {
      font-size: 0.75rem;
      display: block;
      background: none;
      -webkit-background-clip: unset;
      background-clip: unset;
      color: #8b7a6b;
      font-family: 'Montserrat', sans-serif;
      letter-spacing: 1px;
    }
    
    .nav-link {
      font-weight: 500;
      color: #2c3e2f;
      transition: 0.3s;
      margin: 0 6px;
      font-size: 0.95rem;
      position: relative;
    }
    
    .nav-link:hover, .nav-link.active {
      color: var(--gold);
    }
    
    .nav-link::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0%;
      height: 2px;
      background: var(--gold);
      transition: 0.3s;
    }
    
    .nav-link:hover::after {
      width: 100%;
    }
    
    .btn-gold {
      background: var(--gold)!important;
      border: none !important;
      color: white!important ;
      font-weight: 600 !important;
      padding: 10px 28px !important;
      border-radius: 50px !important;
      transition: all 0.3s ease !important;
      font-family: 'Montserrat', sans-serif !important;
    }
    
    .btn-gold:hover {
      background: var(--gold-dark) !important;
      transform: translateY(-2px) !important;
      box-shadow: 0 8px 20px rgba(196,154,108,0.4) !important;
      color: white !important;
    }
    
    .btn-outline-gold {
      border: 1.5px solid var(--gold)!important;
      background: transparent !important;
      color: var(--gold-dark) !important;
      font-weight: 600!important;
      padding: 8px 28px !important;
      border-radius: 50px !important;
      transition: 0.3s !important;
    }
    
    .btn-outline-gold:hover {
      background: var(--gold) !important;
      color: white !important;
      border-color: var(--gold) !important;
    }
    
    /* Hero Slider */
    .hero-slider-section {
      margin-top: 70px;
      position: relative;
    }
    
    .heroSwiper {
      width: 100%;
      height: 85vh;
    
    }
    
    .swiper-slide {
      position: relative;
      background-size: cover;
      background-position: center;
    }
    
    /* .slide-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.2) 100%);
    } */
    
    .slide-content {
      position: absolute;
      bottom: 38%;
      left: 0;
      right: 0;
      text-align: center;
      color: white;
      z-index: 2;
      padding: 0 20px;
    }
    
    .slide-content h1 {
      font-size: 4rem;
      font-weight: 700;
     text-shadow: 
  2px 2px 3px rgb(24, 24, 24),
  -2px 2px 3px rgb(24, 24, 24),
  2px -2px 3px rgb(24, 24, 24),
  -2px -2px 3px rgb(24, 24, 24);
      margin-bottom: 1rem;
      font-family: 'Cormorant Garamond', serif;
    }
    
    .slide-content p {
      font-size: 1.3rem;
      max-width: 700px;
      margin: 0 auto;
      text-shadow: 1px 1px 12px rgba(0,0,0,0.4);
      font-weight: 400;
    }
    
    .swiper-button-next, .swiper-button-prev {
      color: var(--gold);
      background: rgba(255,255,255,0.2);
      width: 50px!important;
      height: 50px!important;
      border-radius: 50%;
      backdrop-filter: blur(4px);
    }

    .swiper-button-next:after, .swiper-button-prev:after{
      font-size: 24px!important;
      color: #fff!important;
    }
    
    .swiper-pagination-bullet-active {
      background: var(--gold)!important;
    }
    
    /* Section Styles */
    .section-padding {
      padding: 60px 0;
    }
    .swiper-pagination-bullet{
      height: 10px !important;
      border-radius: 5px!important;
      width: 30px!important;
    
    }
    .section-title {
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 1rem;
      color: #2c2c2c;
      position: relative;
      display: inline-block;
    }
    
    .section-title:after {
      content: '';
      position: absolute;
      bottom: -12px;
      left: 50%;
      transform: translateX(-50%);
      width: 70px;
      height: 3px;
      background: var(--gold);
      border-radius: 3px;
    }
    
    .section-sub {
      color: #7a6a5c;
      max-width: 700px;
      margin: 1.5rem auto 0;
      font-size: 1.1rem;
    }
    
    /* About Section */
    .about-text {
      font-size: 1.05rem;
      line-height: 1.8;
      color: #4a4a4a;
    }
    
    .about-feature {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 20px;
    }
    
    .about-feature i {
      font-size: 28px;
      color: var(--gold);
      width: 45px;
    }
    
    /* Room Cards */
    .room-card {
      background: white;
      border-radius: 28px;
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: all 0.4s ease;
      height: 100%;
    }
    
    .room-card:hover {
      transform: translateY(-12px);
      box-shadow: var(--shadow-md);
    }
    
    .room-img {
  
      overflow: hidden;
    }
    
    .room-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s;
    }
    
    .room-card:hover .room-img img {
      transform: scale(1.08);
    }
    
    .room-badge {
      position: absolute;
      top: 18px;
      right: 18px;
      background: var(--gold);
      color: white;
      padding: 6px 18px;
      border-radius: 40px;
      font-size: 0.75rem;
      font-weight: 700;
      z-index: 2;
      letter-spacing: 1px;
    }
    
    .price-tag {
      font-size: 1.6rem;
      font-weight: 800;
      color: var(--gold-dark);
      font-family: 'Montserrat', sans-serif;
    }
    
    .plan-badge {
      background: #f8f5f0;
      padding: 5px 14px;
      border-radius: 25px;
      font-size: 0.75rem;
      font-weight: 600;
      color: #5a4a3a;
    }
    
    .amenities-list {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 18px 0;
    }
    
    .amenities-list span {
      background: #f5ede4;
      padding: 5px 14px;
      border-radius: 25px;
      font-size: 0.75rem;
      font-weight: 500;
      color: #5a4a3a;
    }
    
    /* Amenities Grid */
    .amenity-card {
      background: white;
      border-radius: 24px;
      padding: 30px 20px;
      text-align: center;
      transition: 0.3s;
      height: 100%;
      border: 1px solid #f0e8de;
      box-shadow: var(--shadow-sm);
    }
    
    .amenity-card:hover {
      transform: translateY(-8px);
      border-color: var(--gold);
      box-shadow: var(--shadow-md);
    }
    
    .amenity-card i {
      font-size: 48px;
      color: var(--gold);
      margin-bottom: 18px;
    }
    
    .amenity-card h5 {
      font-weight: 700;
      margin-bottom: 8px;
    }
    
    /* Contact Section with Booking Form */
    /* .contact-wrapper {
      background: linear-gradient(135deg, #fff8f0 0%, #ffffff 100%);
      border-radius: 40px;
      padding: 50px;
      box-shadow: var(--shadow-md);
    } */
    
    .contact-info-item {
      display: flex;
      align-items: center;
      gap: 18px;
      margin-bottom: 30px;
    }
    
    .contact-info-item i {
      width: 55px;
      height: 55px;
      background: var(--gold);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      transition: 0.3s;
    }
    
    .contact-info-item:hover i {
      transform: scale(1.05);
      background: var(--gold-dark);
    }
    
    .social-icons a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      background: #f0e8de;
      border-radius: 50%;
      color: var(--gold-dark);
      margin-right: 12px;
      transition: 0.3s;
      font-size: 20px;
    }
    
    .social-icons a:hover {
      background: var(--gold);
      color: white;
      transform: translateY(-3px);
    }
    
    .booking-form {
      background: white;
      border-radius: 28px;
      padding: 35px;
      box-shadow: var(--shadow-md);
    }
    
    .form-label-custom {
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--gold-dark);
      margin-bottom: 8px;
    }
    
    /* Offcanvas Mobile Menu - Bottom to Top */
    .offcanvas-bottom-mobile {
      width: 100% !important;
      height: 85vh !important;
      top: auto !important;
      bottom: 0 !important;
      transform: translateY(100%) !important;
      border-radius: 30px 30px 0 0;
      background: linear-gradient(135deg, #fffaf5, #ffffff);
    }
    
    .offcanvas-bottom-mobile.show {
      transform: translateY(0) !important;
    }
    
    .offcanvas-header {
      border-bottom: 1px solid rgba(196,154,108,0.2);
      padding: 20px 25px;
    }
    
    .offcanvas-body {
      padding: 25px;
    }
    
    .mobile-nav-link {
      font-size: 1.2rem;
      padding: 14px 0;
      display: block;
      color: #2c2c2c;
      text-decoration: none;
      font-weight: 500;
      transition: 0.2s;
      border-bottom: 1px solid #f0e8de;
    }
    
    .mobile-nav-link:hover {
      color: var(--gold);
      padding-left: 10px;
    }
    
    .menu-btn {
      background: var(--gold);
      border: none;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      color: white;
      font-size: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 12px rgba(196,154,108,0.3);
    }
    
    .footer-section {
  background:  #1a1c1f;
  color: #fff;
}

.footer-text {
  color: #cbd5e1;
  font-size: 15px;
  line-height: 1.7;
}

.footer-title {
  font-weight: 600;
  position: relative;
}

.footer-title::after {
  content: "";
  width: 40px;
  height: 2px;
  background: var(--gold);
  position: absolute;
  left: 0;
  bottom: -6px;
}

.footer-links li {
  margin-bottom: 10px;
}

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

.footer-links a i {
  margin-right: 6px;
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.footer-contact a {
  color: #cbd5e1;
  text-decoration: none;
  display: block;
  margin-bottom: 12px;
  transition: 0.3s;
}

.footer-contact a:hover {
  color: var(--gold);
}

.footer-contact i {
  margin-right: 10px;
  color: var(--gold);
}

.footer-social a {
  display: inline-block;
  width: 38px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  border-radius: 50%;
  background: #1e293b;
  color: #fff;
  margin-right: 10px;
  transition: 0.3s;
}

.footer-social a:hover {
  background: var(--gold);
  transform: translateY(-3px);
}

.footer-line {
  border-color: rgba(255,255,255,0.1);
  margin-top: 30px;
}

.footer-bottom {
  font-size: 14px;
  color: #94a3b8;
}
    
    @media (max-width: 991px) {
      .section-padding {
        padding: 40px 0;
      }
      .section-title {
        font-size: 2.2rem;
      }
      .slide-content h1 {
        font-size: 2.2rem;
      }
      .contact-wrapper {
        padding: 10px;
      }
    }
    
    @media (max-width: 768px) {
      .hero-slider-section {
        margin-top: 0px;
      }
      .swiper {
        height: 70vh;
      }
      .navbar{
        position: inherit;
      }
      .amenity-card{
        padding: 20px 15px;
      }
      .amenity-card h5{
        font-size: 17px;
      }
      .viraj-testimonial-sec{
        padding: 80px 0 0px;
      }
      .contact-wrapper .row{
       --bs-gutter-y: 1rem !important;
           --bs-gutter-x: 1rem !important;
      }
      .booking-form{
        padding: 25px;
        margin-top: 40px;
      }
      .footer-section{
        padding-left: 10px ;
      }
    }


    .viraj-testimonial-sec {
    padding: 80px 0;
    background: url(../img/viraj-banners/1.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    z-index: 2;

}

.overlay{
   position: absolute;
      top: 0;
      left: 0;
      z-index: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.6) 100%);
}

.viraj-testimonial-sec .container{
  position: relative;
  z-index: 11;
}

.viraj-title small {
    color: var(--gold);
    letter-spacing: 2px;
    font-weight: 600;
}

.viraj-title h2 {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
}

.viraj-title p {
    color: #e0e0e0;
}

/* CARD */
.viraj-card {
    background: rgb(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s;
    color: #fff;
    border: 1px solid #bdbdbd;
}

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

.viraj-quote {
    width: 50px;
    height: 50px;
    background: #c10000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

/* ARROWS */
.viraj-nav {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.viraj-prev,
.viraj-next {
    width: 45px;
    height: 45px;
    background: #c10000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(193,0,0,0.4);
}

.viraj-prev:hover,
.viraj-next:hover {
    background: #000;
    transform: scale(1.1);
}

.viraj-breadcrumb-section {
  position: relative;
  height: 350px;
  padding-top: 100px;
  background: url('../img/about-banner.jpg') no-repeat center center/cover;
}

.viraj-breadcrumb-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(0, 0, 0, 0.6));
}

.viraj-breadcrumb-section .container {
  position: relative;
  z-index: 2;
}

.viraj-breadcrumb-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.viraj-breadcrumb {
  background: transparent;

}

.viraj-breadcrumb a {
  color: var(--gold);
  text-decoration: none;
  transition: 0.3s;
}

.viraj-breadcrumb a:hover {
  color: #fff;
}

.viraj-breadcrumb .breadcrumb-item.active {
  color: #e2e8f0;
}


.viraj-room-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #eee;
  align-items: stretch;
}

/* Image */
.viraj-room-img img {
  width: 280px;
  height: 100%;
  object-fit: cover;
}

/* Content */
.viraj-room-content {
  padding: 25px;
  flex: 1;
}

.viraj-room-content h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.viraj-room-content p {
  color: #666;
  font-size: 14px;
}

.viraj-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 15px;
  gap: 10px;
  font-size: 13px;
  color: #333;
}

/* Price Box */
.viraj-room-price {
  width: 200px;
  border-left: 1px solid #eee;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stars {
  color: var(--gold);
  margin-bottom: 10px;
}

.price-list div {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.price-list span {
  font-size: 12px;
  color: #999;
}

.per-night {
  font-size: 12px;
  color: #777;
  margin: 10px 0;
}

.viraj-btn {
  background: var(--gold);
  border: none;
  color: #fff;
  padding: 8px;
  border-radius: 20px;
}

/* Responsive */
@media (max-width: 991px) {
  .viraj-room-card {
    flex-direction: column;
  }

  .viraj-room-img img {
    width: 100%;
    height: 200px;
  }

  .viraj-room-price {
    width: 100%;
    border-left: none;
    border-top: 1px solid #eee;
  }
  .price-list{
        display: flex;
    gap: 17px;
    justify-content: center;
  }
  .viraj-room-content {
    padding: 15px;
    flex: 1;
}
}

.viraj-lightbox {
  display: none;
  position: fixed;   /* IMPORTANT */
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
}

.viraj-lightbox img {
  max-width: 90%;
  max-height: 90%;
}

.viraj-thumb {
  width: 100%;
  cursor: pointer;
}

.viraj-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 35px;
  cursor: pointer;
}

.breadcrumb-item+.breadcrumb-item::before{
  color: rgb(255 255 255 / 75%);
}

.viraj-lightbox .viraj-prev, .viraj-lightbox .viraj-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  color: #fff;
  cursor: pointer;
  padding: 10px;
  user-select: none;
}

.viraj-lightbox .viraj-prev {
  left: 20px;
}

.viraj-lightbox .viraj-next {
  right: 20px;
}



.viraj-float-wrapper {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

.viraj-float-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  margin-top: 10px;
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  animation: viraj-blink 1.8s infinite;
}

.viraj-call-btn {
  background: #007bff;
}

.viraj-wa-btn {
  background: #25D366;
}

@keyframes viraj-blink {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.viraj-float-btn:hover {
  animation: none;
  transform: scale(1.15);
}

.viraj-float-btn i {
  font-size: 24px;
}