 /* Background Image Styling */
.booking-hero-section {

    background-size: cover;          /* keeps aspect ratio */
    background-position: center;     /* centers image */
    background-repeat: no-repeat;
    min-height: 10%;               /* fits screen height */
    width: 100%;
    position: relative;
}

@media (min-width: 990px) and (max-width: 1450px) {
  .resp-conatiner {
    margin-left: 4% !important;
  }
}

    @media (max-width: 768px) {
    .row-gap {
        flex-direction: column;
        gap: 10px;
    }
        }
            @media (max-width: 688px) {
            .row-items {
                flex-direction: row;
                gap: 10px;
            }
        }

            /* Responsive Background Image */
            @media (max-width: 768px) {
                .booking-hero-section {
                    background-attachment: scroll;
                    background-position: center center;
                }
            }
            
            @media (max-width: 576px) {
                .booking-hero-section {
                    background-size: cover;
                    background-position: center;
                }
            }
            
            /* Add overlay for better text readability */
            .booking-hero-section::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: rgba(255, 255, 255, 0.1);
                pointer-events: none;
            }
            
            .booking-hero-section .container {
                position: relative;
                z-index: 1;
            }
            
            .row-gap {
            display: flex;
            justify-content: space-between;
            
            }
           .booking-tabs {
    display: flex;
    gap: 10px;  
    margin-bottom: 25px;
    justify-content: flex-start;
}

.icon-img {
  width: 80px;
  height: 80px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}


/* Mobile Responsive */
@media (max-width: 768px) {
    .booking-tabs {
        flex-direction: column;   /* stack items vertically */
        gap: 15px;                /* slightly more gap for touch */
    }
}

            .tab-btn {
            background-color: transparent;
            color: #666;
            padding: 10px 30px;
            border: 2px solid #e0e0e0;
            border-radius: 50px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            /* text-transform: uppercase; */
                    }
            .tab-btn:hover {
            border-color: #a6bcffff;
            color: #333;
                    }
            .tab-btn.active {
            background-color: var(--bs-danger);
            color: white;
            border-color: var(--bs-danger);
                    }
            .btn-book {
            background-color: var(--bs-danger);
            color: #ffffffff;
            padding: 14px 40px;
            border-radius: 6px;
            font-weight: 700;
            font-size: 16px;
            border: none;
            width: 100%;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
                    }
            .btn-book:hover {
            background-color: #9f0505ff;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(166, 188, 255, 0.4);
                    }



/* ================================
   Layout 9 – Rich Text Content
   ================================ */

.layout-9.rich-text {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
  color: #333;
  line-height: 1.7;
  word-wrap: break-word;
}

/* Headings */
.layout-9.rich-text h1,
.layout-9.rich-text h2,
.layout-9.rich-text h3,
.layout-9.rich-text h4,
.layout-9.rich-text h5,
.layout-9.rich-text h6 {
  font-weight: 600;
  line-height: 1.3;
  margin: 28px 0 16px;
  color: #1f2937;
}

.layout-9.rich-text h1 {
  font-size: 2.25rem;
  border-bottom: 2px solid #e5e7eb;
  padding-bottom: 10px;
}

.layout-9.rich-text h2 {
  font-size: 1.75rem;
}

.layout-9.rich-text h3 {
  font-size: 1.4rem;
}

/* Paragraphs */
.layout-9.rich-text p {
  margin: 14px 0;
  font-size: 1rem;
  color: #374151;
}

/* Alignment fixes for Quill */
.layout-9.rich-text .ql-align-justify {
  text-align: justify;
}

.layout-9.rich-text .ql-align-center {
  text-align: center;
}

.layout-9.rich-text .ql-align-right {
  text-align: right;
}

/* Links */
.layout-9.rich-text a {
  color: #d81d1d;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
}

.layout-9.rich-text a:hover {
  color: #d81d1d;
  border-bottom-color: #d81d1d;
}

/* Lists */
.layout-9.rich-text ul,
.layout-9.rich-text ol {
  margin: 18px 0 18px 28px;
  padding: 0;
}

.layout-9.rich-text li {
  margin: 10px 0;
  font-size: 0.95rem;
  color: #374151;
}

/* Monospace (URLs / code-like text from Quill) */
.layout-9.rich-text .ql-font-monospace,
.layout-9.rich-text code {
  font-family: "JetBrains Mono", Consolas, monospace;
  background: #f3f4f6;
  padding: 3px 6px;
  border-radius: 4px;
  font-size: 0.9rem;
  color: #111827;
}

/* Blockquote */
.layout-9.rich-text blockquote {
  margin: 24px 0;
  padding: 18px 22px;
  background: #f9fafb;
  border-left: 4px solid #d81d1d;
  font-style: italic;
  color: #4b5563;
}

/* Strong / Emphasis */
.layout-9.rich-text strong {
  font-weight: 600;
  color: #111827;
}

.layout-9.rich-text em {
  font-style: italic;
}

/* Highlighted text (Quill background colors) */
.layout-9.rich-text span[style*="background-color"] {
  padding: 2px 4px;
  border-radius: 3px;
}

/* Strikethrough & underline */
.layout-9.rich-text s {
  color: #9ca3af;
}

.layout-9.rich-text u {
  text-decoration-thickness: 2px;
}

/* Images (if Quill adds later) */
.layout-9.rich-text img {
  max-width: 100%;
  height: auto;
  margin: 20px 0;
  border-radius: 10px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .layout-9.rich-text {
    padding: 24px 16px;
  }

  .layout-9.rich-text h1 {
    font-size: 1.8rem;
  }

  .layout-9.rich-text h2 {
    font-size: 1.5rem;
  }

  .layout-9.rich-text h3 {
    font-size: 1.25rem;
  }
}

.row_hero {
  display: flex;
  justify-content: flex-end;
}

