/* ===================================================
   CUSTOM UMRAH PREMIUM GLASS UI (Visual Structure Fixed)
=================================================== */

:root {
    --gold: #d4af37;
    --green: #00b050;
    --green-dark: #007a36;
    --white: #ffffff;
    --text: #1f1f1f;
    --font-main: 'Manrope', Roboto, Helvetica, Arial, sans-serif;
}

body {
    font-family: var(--font-main);
    color: var(--text);
    background-color: #fcfdfe;
}

/* =========================================
   HERO SECTION
========================================= */
.custom-hero {
    position: relative;
    min-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
    transform: scale(1.05);
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(rgba(15, 15, 15, 0.5), rgba(15, 15, 15, 0.5));
    backdrop-filter: blur(3px);
}

.custom-hero .container {
    position: relative;
    z-index: 5;
}

.hero-glass-box {
    max-width: 800px;
    margin: auto;
    padding: 50px 40px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.hero-tag {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.hero-glass-box h1 {
    color: #white;
    font-size: 60px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #fff;
}

.hero-glass-box h1 span {
    color: var(--gold);
    display: block;
}

.hero-glass-box p {
    color: #f0f0f0;
    font-size: 18px;
    line-height: 1.7;
    max-width: 680px;
    margin: auto;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 35px;
    flex-wrap: wrap;
}

.hero-btn-primary {
    border-radius: 50px;
    padding: 14px 35px;
    background: linear-gradient(135deg, #00c853, #009245);
    color: #fff;
    font-weight: 700;
    border: none;
    transition: .3s ease;
    box-shadow: 0 12px 30px rgba(0,200,83,.25);
    text-decoration: none;
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #d4af37, #f3cd5d);
    color: #111;
}

.hero-btn-secondary {
    border-radius: 50px;
    padding: 14px 35px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    transition: .3s ease;
    text-decoration: none;
}

.hero-btn-secondary:hover {
    background: #white;
    background: #fff;
    color: #111;
    transform: translateY(-3px);
}

/* ==================================================
        PREMIUM SMART BOOKING ENGINE
==================================================*/
.booking-engine-section {
    position: relative;
    padding: 60px 0 80px;
    background: #f8fafc;
}

.booking-engine-wrapper {
    position: relative;
    margin-top: -120px;
    z-index: 50;
}

/* Glowing backgrounds built safe */
.booking-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}
.booking-glow-1 { width: 300px; height: 300px; top: -50px; left: -100px; background: rgba(0,176,80,.08); }
.booking-glow-2 { width: 300px; height: 300px; right: -50px; top: 150px; background: rgba(212,175,55,.06); }
.booking-glow-3 { width: 200px; height: 200px; left: 40%; bottom: -50px; background: rgba(0,176,80,.05); }

/* Card Body Structural Fix */
.booking-engine-glass {
    position: relative;
    z-index: 5;
    padding: 45px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.booking-heading {
    margin-bottom: 35px;
}

.booking-heading span {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 30px;
    background: rgba(0, 176, 80, 0.1);
    color: var(--green);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.booking-heading h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
}

.booking-heading p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* ==========================================
        FORM INPUTS STRUCTURE & FIXES
========================================== */
.booking-engine-section label {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #334155;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.booking-select, .booking-input {
    display: block;
    width: 100%;
    height: 52px;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    background-color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    padding: 0 14px;
    transition: all 0.25s ease-in-out;
    box-shadow: none;
}

.booking-select:hover, .booking-input:hover {
    border-color: #94a3b8;
}

.booking-select:focus, .booking-input:focus {
    border-color: var(--green);
    outline: 0;
    box-shadow: 0 0 0 4px rgba(0, 176, 80, 0.12);
}

/* Dynamic Passenger Rows Balancing on bootstrap col-lg-2 override */
@media (min-width: 992px) {
    .col-lg-2 {
        flex: 0 0 auto;
        width: 16.66666667%; /* Ensures equal clean grids for passengers & rooms */
    }
}

/* CTA Search Button */
.booking-search-btn {
    height: 52px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #00b050, #00853c);
    color: #white;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.25s ease;
    box-shadow: 0 8px 20px rgba(0, 176, 80, 0.2);
}

.booking-search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 176, 80, 0.3);
}

.booking-search-btn i {
    margin-right: 8px;
}

/* ==================================================
        LIVE ESTIMATE SIDEBAR CARD
==================================================*/
.booking-summary-card {
    position: sticky;
    top: 80px;
    border-radius: 20px;
    padding: 30px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
}

.summary-top span {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 6px;
    background: rgba(0, 176, 80, 0.08);
    color: var(--green);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

.summary-top h3 {
    margin-top: 12px;
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}

.summary-item span {
    color: #64748b;
    font-size: 13px;
    font-weight: 500;
}

.summary-item strong {
    color: #0f172a;
    font-size: 14px;
    font-weight: 700;
}

.summary-price {
    margin: 20px 0;
    padding: 20px;
    border-radius: 14px;
    text-align: center;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.summary-price small {
    display: block;
    color: #64748b;
    font-size: 12px;
    margin-bottom: 5px;
}

.summary-price h1 {
    margin: 0;
    color: var(--green);
    font-size: 38px;
    font-weight: 800;
}

.summary-price p {
    margin: 5px 0 0;
    font-size: 12px;
    color: #94a3b8;
}

.summary-features {
    margin: 20px 0;
    padding: 0;
    list-style: none;
}

.summary-features li {
    margin-bottom: 8px;
    font-size: 13px;
    color: #334155;
    display: flex;
    align-items: center;
}

.summary-features i {
    color: var(--green);
    margin-right: 8px;
    font-size: 14px;
}

.summary-buttons a {
    display: block;
    width: 100%;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.2s ease;
}

.summary-book {
    background: var(--green);
    color: #fff;
    padding: 14px;
    margin-bottom: 10px;
}

.summary-book:hover {
    background: var(--green-dark);
    color: #fff;
}

.summary-whatsapp {
    background: #fff;
    border: 1px solid #cbd5e1;
    color: #334155;
    padding: 12px;
    margin-bottom: 8px;
}

.summary-whatsapp:hover {
    background: #f8fafc;
    color: #0f172a;
}

.summary-call {
    color: #2563eb;
    padding: 8px 0;
}

.summary-note {
    margin-top: 15px;
    color: #94a3b8;
    font-size: 11px;
    line-height: 1.5;
}

/* ==================================================
        LIVE PACKAGE RESULT CONTAINER
==================================================*/
.package-result-section {
    padding: 60px 0;
    background: #ffffff;
}

.package-result-card {
    padding: 40px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.result-badge {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 30px;
    background: rgba(0, 176, 80, 0.1);
    color: var(--green);
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 15px;
}

.result-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 5px;
}

.result-header h1 {
    font-size: 42px;
    color: var(--green);
    font-weight: 800;
    margin: 0;
}

/* GALLERY STRUCTURAL RE-ALIGNMENT */
.gallery-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    height: 100%;
}

.gallery-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.gallery-card h6 {
    margin: 15px;
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
}

/* DETAILS 2-COLUMN SYMMETRICAL GRID */
.package-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.detail-box {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.detail-box i {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(0, 176, 80, 0.1);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.detail-box small {
    display: block;
    color: #64748b;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 2px;
}

.detail-box strong {
    font-size: 14px;
    color: #0f172a;
    font-weight: 700;
}

/* RIGHT CARD PRICING ENGINE */
.booking-final-card {
    border-radius: 16px;
    padding: 30px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
}

.booking-final-card h4 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #0f172a;
}

.booking-final-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.booking-final-card li {
    padding: 8px 0;
    font-size: 13px;
    color: #475569;
    border-bottom: 1px dashed #e2e8f0;
}

.final-price {
    text-align: center;
    margin: 20px 0;
}

.final-price h2 {
    font-size: 36px;
    color: var(--green);
    font-weight: 800;
    margin: 0;
}

.final-price span {
    font-size: 12px;
    color: #64748b;
}

.result-call-btn, .result-whatsapp-btn {
    display: block;
    width: 100%;
    border-radius: 10px;
    padding: 12px;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 10px;
    border: none;
    transition: transform 0.2s;
}

.result-call-btn { background: var(--green); color: #fff; }
.result-whatsapp-btn { background: #25d366; color: #fff; }
.result-call-btn:hover, .result-whatsapp-btn:hover { color: #fff; opacity: 0.9; }

.book-note {
    font-size: 11px;
    text-align: center;
    color: #94a3b8;
    margin-top: 10px;
}

/* =========================================
   WHY CHOOSE US FEATURE CARD
========================================= */
.section-tag {
    display: inline-block;
    color: var(--green);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
}

.section-title p {
    font-size: 15px;
    color: #64748b;
}

.feature-glass-card {
    padding: 30px 20px;
    text-align: center;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease;
}

.feature-glass-card:hover {
    transform: translateY(-5px);
}

.feature-glass-card i {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 176, 80, 0.1);
    color: var(--green);
    font-size: 24px;
}

.feature-glass-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.feature-glass-card p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
}

/* ==================================================
        RESPONSIVE MEDIA BREAKPOINTS
==================================================*/
@media(max-width: 991px) {
    .hero-glass-box h1 { font-size: 38px; }
    .booking-engine-glass { padding: 30px 20px; }
    .booking-heading h2 { font-size: 28px; }
    .booking-summary-card { position: relative; top: 0; margin-top: 30px; }
    .package-details-grid { grid-template-columns: 1fr; }
    .booking-final-card { margin-top: 30px; }
}

@media(max-width: 576px) {
    .hero-glass-box { padding: 30px 20px; }
    .hero-glass-box h1 { font-size: 28px; }
    .booking-engine-wrapper { margin-top: -50px; }
    .booking-heading h2 { font-size: 24px; }
}