* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ==============================
   NAVIGATION BAR - SOLID STYLE
============================== */
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
  background: #f9f9f9;
  color: #333;
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
}

/* Navbar container */
.navbar {
  background: lch(100% 0.01 296.81); /* Dark navy */
  width: 100%;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 8%;
  position: relative;
  padding-bottom: -15px;
}

/* Add subtle line under navbar content */
.navbar .container::after {
  content: "";
  position: absolute;
  bottom: 0; /* stays inside the navbar */
  left: 4%; /* aligns with padding */
  width: 90%; /* same inner width */
  height: 0.5px;
  background-color: #2b2a2a76; /* gold line */
  border-radius: 2px;
   bottom: 10px;
}



/* Logo */
.logo a {
  color: #f30b23;
  font-size: 1.6rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}

/* Nav links */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0;
  margin-left: auto;
}

.nav-links li a {
  color: #000;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: #f7c04a;
}

/* Booking button */
.booking-btn {
  padding: 10px 6px !important;
  background: #e7c37a;
  color: #000 !important;
  border-radius: 7px;
  font-weight: 500;
  font-size: 0.8rem;
  text-transform: none !important; /* force normal text */
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.booking-btn:hover {
  background: #eab308;
}

/* Mobile menu icon */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  transition: transform 0.4s ease;
}

.menu-toggle span {
  width: 28px;
  height: 4.5px;
  background: #f7c04a;
  border-radius: 2px;
  transition: all 0.4s ease;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: center;
    display: none;
    padding: 20px 0;
    transition: all 0.1s ease;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  /* ============================
   HAMBURGER TO X ANIMATION
============================ */
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .menu-toggle span {
    transition: all 0.3s ease;
  }
}

/* =========================
   HERO SECTION
========================= */
/* Hero Slider */
.hero-slider {
  position: relative;
  width: 100%;
  height: 95vh;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1s ease, transform 1.5s ease;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

/* Dark Overlay */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.339);
  z-index: 1;
}

/* Hero Content */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 20px;
  width: 100%;
  max-width: 800px;
}

.hero-content i.hero-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: #f7ce2a;
}

.hero-content h1 {
  font-size: 2.7rem;
  font-weight: 800;
  margin-bottom: 15px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.746);
}

.hero-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #f5f2f2;
  margin-bottom: 25px;
  text-shadow: 2px 2px 8px #000;
}

.hero-btn {
  display: inline-block;
  background: #f7c04a;
  color: #030c24;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background: #e2ae3f;
  transform: scale(1.05);
}

/* Dots */
.dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dots button.active {
  background: #fff;
  transform: scale(1.2);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hero-content i.hero-icon {
    font-size: 5.5rem;
  }
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-content p {
    font-size: 1.3rem;
  }
  .hero-btn {
    padding: 15px 30px;
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .hero-content i.hero-icon {
    font-size: 3.8rem;
  }
  .hero-content h1 {
    font-size: 1.91rem;
  }
  .hero-content p {
    font-size: 1.4rem;
  }
  .hero-btn {
    padding: 13px 24px;
    font-size: 0.85rem;
  }
}




/* =========================
   ABOUT SECTION
========================= */
.about {
  background: #fff;
  padding: 90px 8%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
  max-width: 1200px;
  width: 100%;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h2 {
  font-size: 2.15rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #030c24;
}

.about-text h2 span {
  color: #f7c04a;
}

.about-text p {
  color: #444;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.about-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #f7c04a;
  color: #030c24;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.about-btn:hover {
  background: #f63e3e;
  color: #fff;
  transform: scale(1.05);
}

.about-image {
  flex: 1;
  min-width: 300px;
}

.about-image img {
  width: 90%;
  border-radius: 5px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  object-fit: cover;
  height: 80vh;
}

/* Responsive */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .about-text h2 {
    font-size: 2rem;
  }

  .about-btn {
    padding: 10px 24px;
  }

  .about-image img {
  width: 145%;
  border-radius: 5px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  object-fit: cover;
  height: 50vh;
  margin-left: -40px;
}
}

/* =========================
   WHY CHOOSE US - Minimal Modern Layout
========================= */
.why-choose-us {
  background: #fff;
  padding: 85px 8%;
  text-align: center;
}

.why-choose-us h2 {
  font-size: 2.5rem;
  color: #222;
  font-weight: 800;
  margin-bottom: 10px;
}

.why-choose-us .subtitle {
  color: #666;
  font-size: 1rem;
  margin-bottom: 60px;
}

.why-features {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 50px;
}

.feature {
  flex: 1 1 250px;
  text-align: center;
  transition: transform 0.3s ease;
}

.feature i {
  font-size: 3rem;
  color: #f7c04a;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.feature h3 {
  font-size: 1.3rem;
  color: #111;
  margin-bottom: 10px;
  font-weight: 700;
}

.feature p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

.feature:hover {
  transform: translateY(-8px);
}

.feature:hover i {
  color: #f63e3e;
}

/* Responsive */
@media (max-width: 768px) {
  .why-features {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .feature i {
    font-size: 2.5rem;
  }

  .feature p {
    max-width: 90%;
  }
}



/* Modern Rooms Section */
.rooms-section-modern {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
}

.rooms-section-modern .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title-modern {
  font-size: 2.5rem;
  font-weight: 800;
  color: #050607;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #edbf1a 0%, #1b1e22 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Modern Slider Container */
.rooms-slider-container-modern {
  position: relative;
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 0 50px;
}

.rooms-slider-modern {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(33.333% - 20px);
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 20px 0;
}

.rooms-slider-modern::-webkit-scrollbar {
  display: none;
}

/* Modern Room Card */
.room-card-modern {
  scroll-snap-align: start;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  min-height: 450px;
}

.room-card-modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.room-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.room-card-modern.office1 .room-image {
  background-image: url("../images/twoin.jpg");
}

.room-card-modern.office2 .room-image {
  background-image: url("../images/one in.jpg");
}

.room-card-modern.annex1 .room-image {
  background-image: url("../images/twoina.jpg");
}

.room-card-modern.annex2 .room-image {
  background-image: url("../images/2in.jpg");
}

.room-card-modern.newblock .room-image {
  background-image: url("../images/2.jpg");
}

.room-card-modern.mainblock .room-image {
  background-image: url("../images/single.jpg");
}

.room-content {
  padding: 25px;
}

.room-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.room-tag {
  background: linear-gradient(135deg, #f7c04a 0%, #f59e0b 100%);
  color: white;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.room-capacity {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6b7280;
  font-size: 0.9rem;
  font-weight: 500;
}

.room-capacity i {
  color: #f7c04a;
}

.room-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
  line-height: 1.3;
}

.room-desc {
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  min-height: 45px;
}


/* Modern Navigation Buttons */
.room-btn-modern {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: 10;
  font-size: 1.2rem;
  color: #111827;
}

.room-btn-modern:hover {
  background: #f7c04a;
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.room-btn-modern.prev {
  left: 0;
}

.room-btn-modern.next {
  right: 0;
}

/* Slider Indicators */
.slider-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e5e7eb;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: #f7c04a;
  transform: scale(1.2);
}

.indicator:hover {
  background: #f59e0b;
}

/* Modern Browse Button */
.browse-rooms-modern {
  text-align: center;
  margin-top: 50px;
}

.browse-btn-modern {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #f8bc1a 0%, #232830 100%);
  color: white;
  padding: 16px 40px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.2);
}

.browse-btn-modern:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(17, 24, 39, 0.3);
  background: linear-gradient(135deg, #f7c04a 0%, #f59e0b 100%);
}

.browse-btn-modern i {
  transition: transform 0.3s ease;
}

.browse-btn-modern:hover i {
  transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .rooms-slider-modern {
    grid-auto-columns: calc(50% - 15px);
  }
  
  .section-title-modern {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .rooms-section-modern {
    padding: 70px 0;
  }
  
  .rooms-slider-container-modern {
    padding: 0 40px;
  }
  
  .rooms-slider-modern {
    grid-auto-columns: calc(100% - 10px);
    gap: 20px;
  }
  
  .room-btn-modern {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .section-title-modern {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
    padding: 0 15px;
  }
  
  .room-card-modern {
    min-height: 400px;
  }
  
  .browse-btn-modern {
    padding: 14px 30px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .rooms-slider-container-modern {
    padding: 0 30px;
  }
  
  .section-title-modern {
    font-size: 1.8rem;
  }
  
  .room-content {
    padding: 20px;
  }
  
  .room-title {
    font-size: 1.2rem;
  }
  
  .room-features {
    gap: 8px;
  }
  
  .features {
    padding: 5px 10px;
    font-size: 0.75rem;
  }
}

/* Amenities Summary */
.amenities-summary {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 40px;
  padding: 25px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.amenity-item:hover {
  background: #f3f4f6;
  transform: translateY(-2px);
}

.amenity-item i {
  color: #f7c04a;
  font-size: 1.2rem;
}

.amenity-item span {
  color: #374151;
  font-weight: 500;
  font-size: 0.95rem;
}

/* Updated Room Features */
.room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 15px;
}

.features {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #f3f4f6;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 0.8rem;
  color: #4b5563;
  font-weight: 500;
  transition: all 0.3s ease;
}

.features:hover {
  background: #e5e7eb;
  transform: translateY(-1px);
}

.features i {
  color: #f7c04a;
  font-size: 0.8rem;
}

/* Responsive Design for Amenities */
@media (max-width: 768px) {
  .amenities-summary {
    gap: 15px;
    padding: 20px;
  }
  
  .amenity-item {
    padding: 8px 15px;
  }
  
  .amenity-item i {
    font-size: 1rem;
  }
  
  .amenity-item span {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .amenities-summary {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .amenity-item {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
}


/* Location Advantage Section */
.location-section {
  padding: 50px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
}

.location-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}


.modern-gradient-title {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #d6b43b 0%, #374151 50%, #f7c04a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
  text-shadow: 0 4px 20px rgba(247, 192, 74, 0.1);
}

.title-subline {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #f7c04a, #f59e0b);
  border-radius: 2px;
}


/* Location Info */
.location-info h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #222;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #111827 0%, #374151 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.location-info h3 {
  font-size: 1.5rem;
  color: #f8ab07;
  margin-bottom: 20px;
  font-weight: 600;
}

.location-info > p {
  font-size: 1.1rem;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 500px;
}

/* Proximity List */
.proximity-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 500px;
}

.proximity-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(247, 192, 74, 0.1);
}

.proximity-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: rgba(247, 192, 74, 0.3);
}

.proximity-item i {
  font-size: 1.8rem;
  color: #f59607;
  margin-top: 5px;
  flex-shrink: 0;
}

.proximity-item h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 5px;
}

.proximity-item p {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.5;
}

/* Location Map */
.location-map {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  height: 400px;
  position: relative;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
   background:url("../images/map.jpg") ;
}

.map-placeholder i {
  font-size: 4rem;
  color: #ef8d05;
  margin-bottom: 20px;
  opacity: 0.8;
}

.map-placeholder p {
  font-size: 1.3rem;
  color: #374151;
  font-weight: 600;
  margin-bottom: 25px;
  max-width: 300px;
  line-height: 1.5;
}

.view-map-btn {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, #f7c04a 0%, #f59e0b 100%);
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(247, 192, 74, 0.3);
}

.view-map-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(247, 192, 74, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .location-content {
    gap: 40px;
  }
  
  .proximity-list {
    grid-template-columns: 1fr;
  }
  
  .location-info h2 {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .location-section {
    padding: 80px 0;
  }
  
  .location-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .location-info {
    text-align: center;
  }
  
  .location-info > p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .proximity-list {
    grid-template-columns: repeat(2, 1fr);
    max-width: 600px;
    margin: 0 auto;
  }
  
  .proximity-item {
    padding: 15px;
  }
  
  .map-placeholder {
    padding: 30px;
  }
  
  .map-placeholder i {
    font-size: 3.5rem;
  }
  
  .map-placeholder p {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .proximity-list {
    grid-template-columns: 1fr;
  }
  
  .location-info h2 {
    font-size: 2rem;
  }
  
  .location-info h3 {
    font-size: 1.3rem;
  }
  
  .location-info > p {
    font-size: 1rem;
  }
  
  .proximity-item h4 {
    font-size: 1.2rem;
  }
  
  .map-placeholder i {
    font-size: 3rem;
  }
  
  .map-placeholder p {
    font-size: 1.1rem;
  }
  
  .view-map-btn {
    padding: 10px 25px;
    font-size: 0.95rem;
  }
}




/* =========================
   FULL-WIDTH BOOKING BANNER
========================= */
.booking-banner {
  position: relative;
  background: url('../images/book.jpg') center/cover no-repeat;
  width: 90%;
  max-width: 1200px;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 25px;
  text-align: center;
  margin: 40px auto; /* Centered instead of left offset */
  overflow: hidden;
}

.booking-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(1, 3, 7, 0.737);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  border-radius: 25px;
}

.booking-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 0 15px;
}

.booking-content h2 {
  font-size: 2.3rem;
  color: #f7c04a;
  margin-bottom: 15px;
}

.booking-content p {
  font-size: 1rem;
  color: #ddd;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* Booking button */
.booking-btn {
  display: inline-block;
  background: #f7c04a;
  color: #030c24;
  padding: 14px 35px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.booking-btn:hover {
  background: #f63e3e;
  color: #fff;
  transform: scale(1.05);
}

/* Features under the button */
.booking-features {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #fff;
}

.feature-item i {
  color: #f7c04a;
  font-size: 1.4rem;
}

/* Responsive */
@media (max-width: 992px) {
  .booking-banner {
    width: 95%;
    height: 50vh;
  }

  .booking-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .booking-banner {
    width: 95%;
    height: 350px;
    
    margin: 20px auto;
  }

  .booking-content h2 {
    font-size: 1.6rem;
  }

  .booking-content p {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }

  .booking-btn {
    padding: 12px 28px;
    font-size: 0.95rem;
  }

  .booking-features {
    gap: 15px;
    flex-direction: column;
    text-align: left;
  }
}


/* Modern Footer */
.footer-modern {
  background: #111827;
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo h3 {
  font-size: 1.8rem;
  color: #f30b23;
  margin-bottom: 10px;
  font-weight: 700;
}

.footer-logo p {
  color: #9CA3AF;
  line-height: 1.6;
}

.footer-contact h4,
.footer-social h4 {
  font-size: 1.2rem;
  color: #f7c04a;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #D1D5DB;
}

.footer-contact i {
  color: #f7c04a;
  width: 20px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 45px;
  height: 45px;
  background: rgba(247, 192, 74, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #f7c04a;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: #9CA3AF;
  margin-bottom: 10px;
}

.footer-links a {
  color: #f7c04a;
  text-decoration: none;
  margin: 0 10px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-hero-modern {
    padding: 120px 0 80px;
    margin-top: 70px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-btn {
    padding: 12px 25px;
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .methods-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .form-container {
    padding: 30px;
  }
  
  .info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .contact-hero-modern {
    padding: 100px 0 60px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .method-card {
    padding: 25px;
  }
  
  .form-container {
    padding: 20px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-contact p {
    justify-content: center;
  }
}