/* ── Monolith Yacht Booking — Frontend Styles ── */
/* Matches original Tailwind design with scoped classes */

#myb-wrap * { box-sizing: border-box; }
#myb-wrap { font-family: 'Hind Siliguri', sans-serif; color: #1e293b; }

/* ── NAV ── */
.myb-nav { background: rgba(255,255,255,.92); backdrop-filter: blur(12px); box-shadow: 0 1px 8px rgba(0,0,0,.08); position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; }
.myb-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.myb-nav-inner { display: flex; justify-content: space-between; align-items: center; height: 70px; }
.myb-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: #0f172a; }
.myb-brand i, .myb-brand .fa-anchor { color: #2563eb; font-size: 26px; }
.myb-brand-name { display: block; font-weight: 700; font-size: 18px; line-height: 1.2; }
.myb-brand-sub { display: block; font-size: 10px; font-weight: 700; color: #2563eb; letter-spacing: 1px; }
.myb-nav-links { display: flex; align-items: center; gap: 24px; }
.myb-nav-links a { text-decoration: none; color: #475569; font-weight: 500; transition: color .2s; }
.myb-nav-links a:hover { color: #2563eb; }
.myb-btn-primary { background: #2563eb; color: #fff !important; padding: 10px 24px; border-radius: 999px; font-weight: 600; transition: background .2s; }
.myb-btn-primary:hover { background: #1d4ed8 !important; }
.myb-hamburger { display: none; background: none; border: none; font-size: 22px; color: #475569; cursor: pointer; padding: 8px; }
.myb-mobile-menu { display: none; background: #fff; border-top: 1px solid #f1f5f9; padding: 8px 0; }
.myb-mobile-menu a { display: block; padding: 10px 24px; color: #374151; text-decoration: none; font-weight: 500; }
.myb-mobile-menu a:hover { color: #2563eb; background: #f8fafc; }
@media(max-width:768px) {
    .myb-nav-links { display: none; }
    .myb-hamburger { display: block; }
    .myb-mobile-menu.open { display: block; }
}

/* ── HERO ── */
.myb-hero {
    background-image: linear-gradient(rgba(15,23,42,.7), rgba(15,23,42,.8)),
        url('https://images.unsplash.com/photo-1569263979104-865ab7cd8d13?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover; background-position: center; background-attachment: fixed;
    min-height: 100vh; display: flex; flex-direction: column; justify-content: center;
    position: relative; padding: 120px 0 140px;
}
.myb-hero-content { position: relative; z-index: 2; }
.myb-hero-text { max-width: 700px; text-align: center; margin: 0 auto; }
.myb-badge-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(59,130,246,.2); color: #93c5fd; border: 1px solid rgba(96,165,250,.3); padding: 5px 14px; border-radius: 99px; font-size: 14px; font-weight: 600; margin-bottom: 16px; }
.myb-hero-text h1 { font-size: clamp(32px, 5vw, 56px); font-weight: 700; color: #fff; line-height: 1.2; margin: 0 0 20px; }
.myb-hero-text h1 span { color: #60a5fa; }
.myb-hero-text p { font-size: 18px; color: #cbd5e1; margin: 0 0 28px; line-height: 1.7; }
.myb-hero-btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.myb-btn-ghost { background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.3); padding: 12px 28px; border-radius: 999px; font-size: 16px; font-weight: 600; text-decoration: none; display: flex; align-items: center; gap: 8px; transition: .2s; backdrop-filter: blur(6px); }
.myb-btn-ghost:hover { background: rgba(255,255,255,.2); }
.myb-btn-primary { font-size: 16px; padding: 12px 28px; text-decoration: none; display: flex; align-items: center; gap: 8px; }
.myb-wave { position: absolute; bottom: 0; left: 0; width: 100%; overflow: hidden; line-height: 0; }
.myb-wave svg { display: block; width: 100%; height: 80px; }

/* ── SECTIONS ── */
.myb-section { padding: 80px 0; background: #f8fafc; }
.myb-pricing-section { background: #fff; }
.myb-section-header { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.myb-section-header h2 { font-size: clamp(26px, 3.5vw, 38px); font-weight: 700; color: #0f172a; margin: 0 0 12px; }
.myb-section-header p { color: #64748b; font-size: 17px; margin: 0; }
.myb-section-header-dark h2, .myb-section-header-dark p { color: #fff; }
.myb-section-header-dark p { opacity: .8; }

/* ── ABOUT ── */
.myb-card { background: #fff; border-radius: 20px; box-shadow: 0 1px 10px rgba(0,0,0,.06); border: 1px solid #e2e8f0; padding: 40px; max-width: 900px; margin: 0 auto; text-align: center; }
.myb-card h2 { font-size: 28px; font-weight: 700; color: #0f172a; margin: 0 0 32px; }
.myb-about-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.myb-about-item { background: #eff6ff; border-radius: 16px; padding: 28px 20px; }
.myb-icon-box { width: 60px; height: 60px; background: #dbeafe; color: #2563eb; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; margin: 0 auto 14px; }
.myb-about-item h3 { font-size: 17px; font-weight: 700; color: #0f172a; margin: 0 0 8px; }
.myb-about-item p { font-size: 14px; color: #64748b; margin: 0; line-height: 1.6; }

/* ── PRICING ── */
.myb-pricing-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; margin-bottom: 28px; }
.myb-price-card { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 18px; padding: 24px; text-align: center; cursor: pointer; transition: .3s; position: relative; overflow: hidden; }
.myb-price-card:hover, .myb-price-card.selected { background: #2563eb; color: #fff; box-shadow: 0 8px 30px rgba(37,99,235,.3); transform: translateY(-4px); }
.myb-price-card h3 { font-size: 15px; font-weight: 600; color: #94a3b8; margin: 0 0 8px; transition: .3s; }
.myb-price-card:hover h3, .myb-price-card.selected h3 { color: #bfdbfe; }
.myb-price { font-size: 26px; font-weight: 700; color: #0f172a; transition: .3s; }
.myb-price-card:hover .myb-price, .myb-price-card.selected .myb-price { color: #fff; }
.myb-popular-card { border-color: #2563eb; }
.myb-popular-badge { position: absolute; top: 0; right: 0; background: #3b82f6; color: #fff; font-size: 9px; font-weight: 700; padding: 4px 8px; border-radius: 0 0 0 8px; }
.myb-price-card:hover .myb-popular-badge, .myb-popular-card.selected .myb-popular-badge { background: #fff; color: #2563eb; }
.myb-pricing-extras { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.myb-extra-item { display: flex; align-items: center; gap: 14px; padding: 16px 24px; border-radius: 14px; border: 1px solid; font-size: 14px; }
.myb-extra-green { background: #f0fdf4; color: #14532d; border-color: #bbf7d0; }
.myb-extra-purple { background: #f5f3ff; color: #4c1d95; border-color: #ddd6fe; }
.myb-extra-item i { font-size: 22px; }
.myb-extra-item strong { display: block; font-weight: 700; margin-bottom: 2px; }

/* ── FACILITIES ── */
.myb-facilities-section { background: #0f172a; padding: 80px 0; position: relative; overflow: hidden; }
.myb-facilities-section::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 80%; height: 80%; background: rgba(59,130,246,.07); filter: blur(100px); border-radius: 50%; pointer-events: none; }
.myb-facilities-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; position: relative; z-index: 1; }
.myb-facility-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 18px; padding: 32px; transition: .3s; position: relative; overflow: hidden; }
.myb-facility-card::before { content: ''; position: absolute; top: -40px; right: -40px; width: 100px; height: 100px; background: radial-gradient(circle, rgba(59,130,246,.15), transparent); border-radius: 50%; transition: .3s; }
.myb-facility-card:hover { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.2); transform: translateY(-4px); }
.myb-facility-card:hover::before { transform: scale(2); }
.myb-facility-icon { width: 52px; height: 52px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 22px; color: #fff; margin-bottom: 20px; transition: .3s; }
.myb-facility-card:hover .myb-facility-icon { background: rgba(59,130,246,.3); }
.myb-facility-card h4 { font-size: 18px; font-weight: 700; color: #fff; margin: 0 0 10px; }
.myb-facility-card p { font-size: 14px; color: rgba(255,255,255,.75); line-height: 1.65; margin: 0; }
.myb-amenities-tag { display: inline-block; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: #fff; padding: 4px 14px; border-radius: 99px; font-size: 12px; font-weight: 700; letter-spacing: 1px; margin-bottom: 12px; }

/* ── BOOKING ── */
.myb-booking-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 48px; align-items: start; }
@media(max-width:900px) { .myb-booking-grid { grid-template-columns: 1fr; } }
.myb-booking-info h2 { font-size: 28px; font-weight: 700; color: #0f172a; margin: 0 0 12px; }
.myb-booking-info > p { color: #64748b; margin: 0 0 20px; }
.myb-booking-info ul { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 12px; }
.myb-booking-info li { display: flex; align-items: flex-start; gap: 10px; color: #374151; font-size: 15px; }
.myb-booking-info li i { color: #2563eb; margin-top: 3px; flex-shrink: 0; }
.myb-payment-info-box { background: #fff; border: 1px solid #e2e8f0; border-radius: 18px; padding: 24px; margin-bottom: 24px; }
.myb-payment-info-box h3 { font-size: 17px; font-weight: 700; color: #0f172a; margin: 0 0 10px; display: flex; align-items: center; gap: 8px; }
.myb-payment-info-box h3 i { color: #db2777; }
.myb-payment-info-box > p { font-size: 14px; color: #64748b; margin: 0 0 14px; }
.myb-bkash-box { background: #fdf2f8; border: 1px solid #fbcfe8; border-radius: 14px; padding: 16px 20px; display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.myb-bkash-label { font-size: 11px; font-weight: 700; color: #9d174d; margin-bottom: 4px; }
.myb-bkash-number { font-size: 20px; font-weight: 700; color: #db2777; letter-spacing: 1px; }
.myb-bkash-box > i { font-size: 28px; color: #fbcfe8; }
.myb-note { font-size: 12px; color: #94a3b8; display: flex; align-items: center; gap: 6px; margin: 0; }
.myb-contact h3 { font-size: 18px; font-weight: 700; color: #0f172a; margin: 0 0 12px; }
.myb-contact a { display: flex; align-items: center; gap: 12px; color: #475569; text-decoration: none; margin-bottom: 10px; font-size: 15px; transition: .2s; }
.myb-contact a:hover { color: #2563eb; }
.myb-contact-icon { width: 40px; height: 40px; background: #dbeafe; color: #2563eb; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* Form */
.myb-form-card { background: #fff; border-radius: 24px; padding: 36px; border: 1px solid #e2e8f0; box-shadow: 0 4px 30px rgba(0,0,0,.08); }
.myb-form-card h3 { font-size: 22px; font-weight: 700; color: #0f172a; margin: 0 0 24px; }
.myb-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media(max-width:640px) { .myb-form-row { grid-template-columns: 1fr; } }
.myb-form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.myb-form-group label { font-size: 13px; font-weight: 600; color: #374151; }
.myb-form-group input, .myb-form-group select, .myb-form-group textarea {
    border: 1px solid #e2e8f0; border-radius: 12px; padding: 0 16px; height: 50px;
    font-size: 15px; font-family: 'Hind Siliguri', sans-serif; outline: none;
    background: #f8fafc; transition: .2s; color: #0f172a; width: 100%;
}
.myb-form-group textarea { height: auto; padding: 12px 16px; resize: vertical; }
.myb-form-group input:focus, .myb-form-group select:focus, .myb-form-group textarea:focus {
    border-color: #2563eb; box-shadow: 0 0 0 3px rgba(37,99,235,.12); background: #fff;
}
.myb-checkbox-label { display: flex; align-items: center; gap: 10px; cursor: pointer; font-size: 14px; font-weight: 500; color: #374151; margin-bottom: 16px; }
.myb-checkbox-label input { width: 18px; height: 18px; accent-color: #2563eb; flex-shrink: 0; }
.myb-cost-box { background: #eff6ff; border: 1px solid #bfdbfe; border-radius: 14px; padding: 18px 22px; display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.myb-cost-label { font-size: 14px; font-weight: 700; color: #1e40af; display: block; }
.myb-cost-sub { font-size: 12px; color: #64748b; }
.myb-cost-total { font-size: 30px; font-weight: 700; color: #2563eb; }
.myb-submit-btn { width: 100%; background: #2563eb; color: #fff; border: none; border-radius: 14px; padding: 16px; font-size: 16px; font-weight: 700; font-family: 'Hind Siliguri', sans-serif; cursor: pointer; transition: .2s; display: flex; align-items: center; justify-content: center; gap: 10px; }
.myb-submit-btn:hover { background: #1d4ed8; }
.myb-submit-btn:active { transform: scale(.98); }

/* ── PAYMENT SECTION ── */
.myb-payment-section { padding-top: 4px; }
.myb-payment-header { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.myb-payment-header h4 { font-size: 18px; font-weight: 700; color: #0f172a; margin: 0; }
.myb-back-btn { background: #f1f5f9; border: none; border-radius: 10px; padding: 8px 14px; font-size: 14px; cursor: pointer; color: #475569; font-family: 'Hind Siliguri', sans-serif; display: flex; align-items: center; gap: 6px; transition: .2s; flex-shrink: 0; }
.myb-back-btn:hover { background: #e2e8f0; }
.myb-booking-summary { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 14px; padding: 16px 20px; margin-bottom: 16px; font-size: 14px; }
.myb-booking-summary .myb-sum-row { display: flex; justify-content: space-between; padding: 5px 0; color: #475569; }
.myb-booking-summary .myb-sum-row strong { color: #0f172a; }
.myb-advance-box { background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 14px; padding: 16px 20px; margin-bottom: 20px; display: flex; justify-content: space-between; align-items: center; }
.myb-advance-box > div:first-child { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 600; color: #14532d; }
.myb-advance-box strong { font-size: 24px; color: #16a34a; }
.myb-advance-note { font-size: 12px; color: #64748b; }
.myb-payment-methods { margin-bottom: 20px; }
.myb-method-title { font-size: 14px; font-weight: 700; color: #374151; margin: 0 0 12px; }
.myb-method-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.myb-method-card input[type="radio"] { display: none; }
.myb-method-inner { border: 2px solid #e2e8f0; border-radius: 14px; padding: 16px 12px; text-align: center; cursor: pointer; transition: .2s; background: #f8fafc; }
.myb-method-inner:hover { border-color: #93c5fd; background: #fff; }
.myb-method-card input:checked + .myb-method-inner { border-color: #2563eb; background: #eff6ff; box-shadow: 0 0 0 3px rgba(37,99,235,.12); }
.myb-method-name { display: block; font-size: 15px; font-weight: 700; color: #0f172a; margin: 6px 0 4px; }
.myb-method-num { display: block; font-size: 12px; color: #64748b; word-break: break-all; }
.myb-txn-fields { margin-top: 4px; }
.myb-txn-instruction { background: #fef9c3; border: 1px solid #fde68a; border-radius: 12px; padding: 14px 16px; font-size: 14px; color: #78350f; margin-bottom: 16px; line-height: 1.6; }
.myb-confirm-btn { margin-top: 8px; }

/* ── LOCATION ── */
.myb-location-section { padding: 60px 0; background: #fff; }
.myb-location-card { background: #0f172a; border-radius: 24px; overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; box-shadow: 0 20px 60px rgba(0,0,0,.15); }
@media(max-width:768px) { .myb-location-card { grid-template-columns: 1fr; } }
.myb-location-info { padding: 48px; }
.myb-location-tag { font-size: 12px; font-weight: 700; color: #60a5fa; letter-spacing: 1px; display: block; margin-bottom: 8px; }
.myb-location-info h2 { font-size: 28px; font-weight: 700; color: #fff; margin: 0 0 16px; }
.myb-location-info p { color: #94a3b8; font-size: 15px; margin: 0 0 8px; display: flex; align-items: center; gap: 8px; }
.myb-location-info p i { color: #60a5fa; }
.myb-location-sub { font-size: 14px !important; }
.myb-map-btn { display: inline-flex; align-items: center; gap: 8px; background: #fff; color: #0f172a; padding: 12px 24px; border-radius: 99px; font-weight: 700; text-decoration: none; margin-top: 20px; transition: .2s; }
.myb-map-btn:hover { background: #eff6ff; }
.myb-map-btn i { color: #2563eb; }
.myb-map-embed { min-height: 300px; position: relative; }
.myb-map-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; }

/* ── FOOTER ── */
.myb-footer { background: #020617; color: #94a3b8; padding: 48px 0; }
.myb-footer-top { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 24px; border-bottom: 1px solid #1e293b; padding-bottom: 32px; margin-bottom: 24px; }
.myb-footer .myb-brand { color: #fff; }
.myb-footer .myb-brand i { color: #60a5fa; }
.myb-footer .myb-brand span { font-size: 18px; font-weight: 700; }
.myb-footer p { font-size: 14px; color: #94a3b8; margin: 8px 0 0; }
.myb-footer-social { display: flex; gap: 12px; }
.myb-footer-social a { width: 40px; height: 40px; border-radius: 50%; background: #1e293b; color: #94a3b8; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: .2s; }
.myb-footer-social a:hover { background: #2563eb; color: #fff; }
.myb-footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 13px; }

/* ── MODAL ── */
.myb-modal { position: fixed; inset: 0; background: rgba(15,23,42,.65); backdrop-filter: blur(6px); z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 20px; }
.myb-modal-content { background: #fff; border-radius: 24px; padding: 44px 36px; max-width: 440px; width: 100%; text-align: center; animation: mybModalIn .3s ease; }
@keyframes mybModalIn { from { transform: scale(.92); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.myb-modal-icon { width: 72px; height: 72px; background: #dcfce7; color: #16a34a; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 32px; margin: 0 auto 20px; }
.myb-modal-content h3 { font-size: 22px; font-weight: 700; color: #0f172a; margin: 0 0 10px; }
.myb-modal-content p { color: #64748b; font-size: 15px; margin: 0 0 28px; line-height: 1.6; }
