:root {
  --primary-color: #0b4b7a; /* Professional trust blue */
  --primary-dark: #073456;
  --accent-color: #f7941d; /* Warm accent for CTA */
  --bg-light: #f8f9fa;
  --text-dark: #333333;
  --text-muted: #6c757d;
}
.w-90 {
  width: 90% !important;
}
body {
  color: var(--text-dark);
  background-color: #ffffff;
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}
/* Compact, Aligned Header */
.landing-header {
  background: var(--primary-dark);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 5px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.istay-landing-logo {
  display: flex;
  align-items: center;
  height: 100%;
}
.istay-landing-logo img {
  max-height: 65px;
  width: auto;
  transition: 0.3s;
}
.header-top-sec-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
}
.header-top-sec-right a {
  color: #ffffff;
  font-weight: 600;
  font-size: 1.05rem;
  margin-left: 20px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}
.header-top-sec-right a:hover {
  color: var(--accent-color);
}
.header-top-sec-right a i {
  color: var(--accent-color);
  font-size: 1.1rem;
}
/* Elegant Hero Banner */
#banner-sec {
  position: relative;
  background: linear-gradient(rgba(7, 52, 86, 0.6), rgba(7, 52, 86, 0.6)), url('https://www.hotelistay.com/wp-content/themes/istay/assets/images/landing-image/banner-image.jpg') center/cover no-repeat;
  padding: 80px 0;
  color: #fff;
}
.banner-content-inner {
  background: rgba(11, 75, 122, 0.85);
  padding: 40px;
  border-radius: 12px;
  border-left: 5px solid var(--accent-color);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.banner-content-inner h1 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 2.6rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}
.banner-content-inner h4 {
  font-weight: 400;
  color: #f8f9fa;
  margin-bottom: 35px;
}
/* Modern Pricing List */
.pricing-list {
  list-style: none;
  padding: 0;
  margin-bottom: 35px;
}
.pricing-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 12px 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pricing-list li:last-child {
  border-bottom: none;
}
.pricing-list li span:first-child {
  font-size: 1.1rem;
}
.pricing-list li span:last-child {
  font-weight: bold;
  font-size: 1.3rem;
  color: var(--accent-color);
}
/* Inline CTA Button */
.btn-cta {
  background: var(--accent-color);
  color: #fff;
  padding: 14px 35px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: auto;
  transition: 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-cta:hover {
  background: #e08012;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(247, 148, 29, 0.4);
  text-decoration: none;
}
/* Form Card & Gravity Forms Customization */
.reserve-form-wrapper {
  background: #fff;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  color: var(--text-dark);
}
.reserve-form-wrapper h3 {
  margin-bottom: 8px;
  font-size: 1.6rem;
  color: var(--primary-color);
  font-weight: bold;
  text-align: left;
}
.form-catchy-line {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #eee;
  text-align: left;
  font-style: italic;
}
/* Targeting Gravity Forms Submit Button - Left Aligned */
.reserve-form-wrapper .gform_footer input[type="submit"], .reserve-form-wrapper .gform_button {
  background-color: var(--primary-color) !important;
  color: #ffffff !important;
  padding: 12px 40px !important;
  border-radius: 30px !important;
  border: none !important;
  font-size: 1.1rem !important;
  font-weight: bold !important;
  display: inline-block !important;
  width: auto !important;
  margin: 20px 0 0 0 !important;
  transition: all 0.3s ease !important;
  cursor: pointer !important;
}
.reserve-form-wrapper .gform_footer input[type="submit"]:hover, .reserve-form-wrapper .gform_button:hover {
  background-color: var(--accent-color) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1) !important;
}
/* Section Title Styling */
.section-title {
  text-align: center;
  margin-bottom: 50px;
  font-weight: 700;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.section-title::after {
  content: "";
  width: 70px;
  height: 3px;
  background: var(--accent-color);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.section-title.left-align {
  text-align: left;
  color: #fff;
}
.section-title.left-align::after {
  left: 0;
  transform: none;
}
.section-padding {
  padding: 90px 0;
}
.bg-light-sec {
  background-color: var(--bg-light);
}
/* Room Cards */
.room-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  margin-bottom: 30px;
  border: 1px solid #eaeaea;
}
.room-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}
.room-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.room-card-content {
  padding: 25px 20px;
  text-align: center;
  font-weight: bold;
  color: var(--primary-color);
  font-size: 1.2rem;
  background: #fff;
}
/* Enhanced Features Section */
.feature-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 35px;
}
.feature-icon {
  background: #eaf2f8;
  border-radius: 50%;
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.feature-icon i {
  color: var(--primary-color);
  font-size: 1.8rem;
}
.feature-text h5 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.feature-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}
/* Trustworthy Reviews Section */
.review-left-panel {
  background: var(--primary-dark);
  padding: 40px;
  border-radius: 12px;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.review-left-panel .btn-cta {
  background: #fff;
  color: var(--primary-dark);
  border: 2px solid transparent;
}
.review-left-panel .btn-cta:hover {
  background: var(--primary-dark);
  color: #fff;
  border-color: #fff;
  box-shadow: none;
}
.review-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  border: 1px solid #e2e8f0;
  position: relative;
}
.google-trust {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #6c757d;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
}
.google-trust img {
  width: 16px;
}
.review_info_header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}
.review_icon img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 2px solid #eee;
}
.review_info_author h6 {
  margin: 0;
  font-weight: bold;
  color: var(--text-dark);
  font-size: 1.1rem;
}
.review_info_author p {
  margin: 0;
  font-size: 0.85rem;
  color: #888;
}
.review-stars {
  color: #fbbc05;
  margin-bottom: 15px;
  font-size: 1.1rem;
}
.review-text {
  color: #4a4a4a;
  font-style: italic;
  line-height: 1.6;
  font-size: 0.95rem;
}
/* Swiper Pagination Enhancement */
.swiper-pagination-bullet {
  background: #cbd5e1;
  opacity: 1;
  width: 10px;
  height: 10px;
  transition: 0.3s;
  margin: 0 6px !important;
}
.swiper-pagination-bullet-active {
  background: var(--accent-color);
  width: 25px;
  border-radius: 5px;
}
.reviewSwiper {
  padding-bottom: 60px;
}
/* Footer Links */
.footer-links li {
  margin-bottom: 8px;
}
.footer-links a {
  text-decoration: none;
  color: #d1d5db;
  transition: 0.2s;
}
.footer-links a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}
/* ==========================================
           MOBILE OPTIMIZATION & SPACING FIXES 
           ========================================== */
@media (max-width: 991px) {
  .review-left-panel {
    margin-bottom: 30px;
    text-align: center;
    padding: 30px 20px;
  }
  .section-title.left-align {
    text-align: center;
  }
  .section-title.left-align::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .header-top-sec-right {
    justify-content: center;
    margin-top: 10px;
  }
  .istay-landing-logo {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  /* Reduce section spacing */
  .section-padding {
    padding: 50px 0;
  }
  #banner-sec {
    padding: 50px 0;
  }
  /* Header alignment */
  .istay-landing-logo img {
    max-height: 55px;
  }
  .header-top-sec-right {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .header-top-sec-right a {
    margin-left: 0;
    font-size: 1rem;
  }
  /* Banner Content */
  .banner-content-inner {
    padding: 25px 20px;
    margin-bottom: 30px;
  }
  .banner-content-inner h1 {
    font-size: 1.6rem;
  } /* Reduced Mobile Font Size */
  .banner-content-inner h4 {
    font-size: 1.05rem;
  }
  .pricing-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  /* Button Full Width on Mobile Only */
  .btn-cta {
    width: 100%;
    justify-content: center;
  }
  /* Feature Box Layout */
  .feature-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }
  /* Room Cards */
  .room-card img {
    height: 250px;
  }
}