/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    overflow: hidden;
    background: var(--navy);
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11,29,53,0.7), rgba(11,29,53,0.45) 40%, rgba(11,29,53,0.75) 100%);
    z-index: 1;
}

.hero-bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}



.hero-content {
    position: relative;
    z-index: 2;
    padding: 160px 0 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.35);
    color: var(--gold-light);
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--gold);
}

.hero-desc {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    max-width: 540px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}


.hero-form-card h4 {
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.hero-form-card .form-subtitle {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 24px;
}

.hero-form-card .form-control,
.hero-form-card .form-select {
    border: 1.5px solid #e4e4ee;
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 0.92rem;
    transition: var(--transition);
    background: var(--white);
}

.hero-form-card .form-control:focus,
.hero-form-card .form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}

.hero-form-card label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-stats {
    position: relative;
    z-index: 2;
    margin-top: -40px;
    margin-bottom: 0;
}

.stat-card {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(15px);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stat-card .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
}

.stat-card .stat-number span {
    color: var(--gold);
}

.stat-card .stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 6px;
    font-weight: 500;
}

/* ===== ABOUT ===== */
.about-section {
    background: var(--white);
}

.about-img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-img-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-gold);
}

.about-img-badge .badge-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.about-img-badge .badge-text {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 30px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.about-feature-item .feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--sand);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
    transition: var(--transition);
}

.about-feature-item:hover .feature-icon {
    background: var(--gold);
    color: var(--white);
}

.about-feature-item .feature-text h6 {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.about-feature-item .feature-text p {
    font-size: 0.82rem;
    color: var(--text-light);
    margin: 0;
}

/* ===== PACKAGES / TOURS ===== */
.packages-section {
    background: var(--sand-light);
}

.package-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.package-card .card-img-top {
    height: 230px;
    object-fit: cover;
    transition: var(--transition);
}

.package-card:hover .card-img-top {
    transform: scale(1.05);
}

.package-card .card-img-wrapper {
    overflow: hidden;
    position: relative;
}

.package-card .card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.package-card .card-body {
    padding: 26px;
}

.package-card .card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.package-card .card-text {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 18px;
}

.package-meta {
    display: flex;
    gap: 18px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.package-meta span {
    font-size: 0.83rem;
    color: var(--text-body);
    display: flex;
    align-items: center;
    gap: 6px;
}

.package-meta span i {
    color: var(--gold);
    font-size: 0.9rem;
}

.package-card .card-footer {
    background: transparent;
    border-top: 1px solid #f0ece3;
    padding: 18px 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.package-price {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
}

.package-price em {
    font-style: normal;
    font-size: 0.78rem;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
}

.btn-package {
    background: var(--navy);
    color: var(--white);
    border: none;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.84rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-package:hover {
    background: var(--gold);
    color: var(--navy);
}

/* ===== BOATS ===== */
.boats-section {
    background: var(--white);
}

.boat-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    height: 100%;
}

.boat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.boat-card .boat-img {
    height: 260px;
    object-fit: cover;
    width: 100%;
    transition: var(--transition);
}

.boat-card:hover .boat-img {
    transform: scale(1.05);
}

.boat-card .boat-img-wrapper {
    overflow: hidden;
}

.boat-card .boat-body {
    padding: 26px;
}

.boat-card .boat-name {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.boat-card .boat-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 16px;
}

.boat-specs {
    display: flex;
    gap: 20px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.boat-specs .spec {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-body);
}

.boat-specs .spec i {
    color: var(--gold);
}

.btn-boat-detail {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--navy);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-boat-detail:hover {
    color: var(--gold);
    gap: 12px;
}

/* ===== MENU ===== */
.menu-section {
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.menu-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=1920&q=80') center/cover no-repeat;
    opacity: 0.08;
}

.menu-section .section-header h2 { color: var(--white); }
.menu-section .section-header p { color: rgba(255,255,255,0.6); }

.menu-card {
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.menu-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-6px);
    border-color: var(--gold);
}

.menu-card .menu-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 1.6rem;
    color: var(--navy);
}

.menu-card h4 { color: var(--white); font-size: 1.3rem; margin-bottom: 14px; }
.menu-card ul { list-style: none; padding: 0; margin: 0; }
.menu-card ul li { color: rgba(255,255,255,0.7); font-size: 0.92rem; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.menu-card ul li:last-child { border-bottom: none; }
.menu-card ul li i { color: var(--gold); margin-right: 8px; font-size: 0.8rem; }

.menu-food-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-top: 20px;
    opacity: 0.9;
    transition: var(--transition);
}

.menu-card:hover .menu-food-img { opacity: 1; }

/* ===== WHY US ===== */
.why-section { background: var(--sand-light); }
.why-card { text-align: center; padding: 36px 24px; background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); transition: var(--transition); height: 100%; }
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.why-card .why-icon { width: 72px; height: 72px; background: linear-gradient(135deg, var(--sand), var(--sand-light)); border-radius: 18px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 1.6rem; color: var(--gold); transition: var(--transition); }
.why-card:hover .why-icon { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--white); }
.why-card h5 { font-family: 'Inter', sans-serif; font-size: 1.05rem; font-weight: 600; margin-bottom: 10px; }
.why-card p { font-size: 0.88rem; color: var(--text-light); margin-bottom: 0; }

/* ===== GALLERY ===== */
.gallery-section { background: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: auto; gap: 16px; }
.gallery-item { position: relative; overflow: hidden; border-radius: var(--radius-md); cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .gallery-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(11,29,53,0.7) 100%); opacity: 0; transition: var(--transition); display: flex; align-items: flex-end; justify-content: center; padding: 20px; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: var(--white); font-weight: 600; font-size: 0.95rem; letter-spacing: 0.5px; }
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(1) img { height: 100%; min-height: 420px; }
.gallery-item:not(:first-child) img { height: 200px; }

/* ===== ROUTES / EXPERIENCE ===== */
.routes-section { background: var(--sand-light); }
.route-card { position: relative; overflow: hidden; border-radius: var(--radius-lg); height: 280px; transition: var(--transition); }
.route-card img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.route-card:hover img { transform: scale(1.08); }
.route-card .route-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(11,29,53,0.85) 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 28px; }
.route-card .route-overlay h5 { color: var(--white); font-size: 1.2rem; margin-bottom: 4px; }
.route-card .route-overlay p { color: rgba(255,255,255,0.7); font-size: 0.85rem; margin: 0; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--white); }
.testimonial-card { background: var(--white); border: 1px solid #eee; border-radius: var(--radius-lg); padding: 36px 30px; transition: var(--transition); height: 100%; }
.testimonial-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); }
.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: 18px; }
.testimonial-text { font-size: 1rem; font-style: italic; color: var(--text-body); line-height: 1.8; margin-bottom: 22px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-author img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 2px solid var(--sand); }
.testimonial-author .author-info h6 { font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 600; margin-bottom: 2px; }
.testimonial-author .author-info span { font-size: 0.8rem; color: var(--text-light); }
.quote-icon { color: var(--gold); font-size: 2rem; opacity: 0.3; position: absolute; top: 20px; right: 24px; }

/* ===== FAQ ===== */
.faq-section { background: var(--sand-light); }
.faq-accordion .accordion-item { background: var(--white); border: 1px solid #eee; border-radius: var(--radius-md) !important; margin-bottom: 14px; overflow: hidden; }
.faq-accordion .accordion-button { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 1rem; color: var(--text-dark); padding: 20px 28px; background: var(--white); box-shadow: none; }
.faq-accordion .accordion-button:not(.collapsed) { background: var(--sand-light); color: var(--navy); }
.faq-accordion .accordion-button::after { background-image: none; content: '\f078'; font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: 0.8rem; color: var(--gold); transition: var(--transition); }
.faq-accordion .accordion-button:not(.collapsed)::after { transform: rotate(180deg); }
.faq-accordion .accordion-body { padding: 4px 28px 24px; font-size: 0.95rem; color: var(--text-body); line-height: 1.8; }

/* ===== RESPONSIVE (Index) ===== */
@media (max-width: 991.98px) {
    .hero-section { display: flex; flex-direction: column; }
    .hero-bg { position: relative; inset: auto; aspect-ratio: 16 / 9; background: #0b1d35; }
    .hero-bg::before { background: linear-gradient(180deg, rgba(11,29,53,0.05) 0%, rgba(11,29,53,0.3) 100%); }
    .hero-bg video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; min-width: unset; min-height: unset; transform: none; object-fit: cover; }
    .hero-content { background: var(--navy); padding: 40px 0 50px; }
    .hero-title { font-size: 2.8rem; }
    .about-title { font-size: 2rem; }
    .hero-form-card { margin-top: 40px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
    .gallery-item:nth-child(1) img { min-height: 260px; }
    .gallery-item:not(:first-child) img { height: 180px; }
}
@media (max-width: 767.98px) {
    .hero-title { font-size: 2.2rem; }
    .hero-content { padding: 32px 0 40px; }
    .hero-bg { background: #000; }
    .hero-bg video { object-fit: contain; }
    .hero-bg::before { display: none; }
    .hero-desc { font-size: 1rem; margin-bottom: 24px; }
    .hero-form-card { padding: 28px 22px; margin-top: 32px; }
    .about-features { grid-template-columns: 1fr; }
    .about-img-wrapper img { height: 300px; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-item:nth-child(1) { grid-column: span 2; }
    .stat-card { margin-bottom: 14px; }
}
@media (max-width: 575.98px) {
    .hero-title { font-size: 1.85rem; }
    .hero-content { padding: 24px 0 32px; }
    .hero-form-card { padding: 24px 18px; margin-top: 24px; }
    .hero-badge { font-size: 0.75rem; padding: 6px 16px; margin-bottom: 16px; }
    .hero-desc { font-size: 0.93rem; line-height: 1.7; }
    .hero-buttons { flex-direction: column; gap: 10px; }
    .hero-buttons .btn { width: 100%; justify-content: center; text-align: center; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item:nth-child(1) { grid-column: span 1; }
    .gallery-item:nth-child(1) img { min-height: 220px; }
}
