/* ===== GLOBAL ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== TOPBAR ===== */
.topbar {
    background-color: #fafafa;
    color: #0a3d6b;
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid #ebebeb;
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.topbar span i {
    margin-right: 6px;
    color: #f9c74f;
}

/* ===== HEADER ===== */
.header {
    background: #0a3d6b;
    padding: 6px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(10,61,107,0.4);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 90px;
    width: 200px;
    object-fit: contain;
}

.navbar ul {
    display: flex;
    gap: 28px;
}

.navbar ul li a {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    transition: color 0.3s, background 0.3s;
    position: relative;
    padding: 8px 14px;
    border-radius: 8px;
}

.navbar ul li a::after {
    display: none;
}

.navbar ul li a:hover,
.navbar ul li a.active {
    color: #0a3d6b;
    background-color: #f9c74f;
}

.btn-book {
    background-color: #f9c74f;
    color: #0a3d6b;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 14px;
    transition: background 0.3s, transform 0.2s;
}

.btn-book:hover {
    background-color: #f3a800;
    transform: scale(1.05);
}

/* ===== HAMBURGER ===== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    border-radius: 3px;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .topbar { display: none; }

    .hamburger { display: flex; }

    .navbar {
        display: none;
        position: absolute;
        top: 104px;
        left: 0;
        width: 100%;
        background: #0a3d6b;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

    .navbar.open { display: block; }
    .navbar ul { flex-direction: column; gap: 16px; }
    .btn-book { display: inline-block; font-size: 12px; padding: 8px 16px; }
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.carousel {
    position: absolute;
    inset: 0;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 1s ease-in-out, transform 6s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1);
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,30,60,0.35), rgba(0,30,60,0.2));
    z-index: 1;
}

/* Hero content animations */
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 0 20px;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    background-color: #f9c74f;
    color: #0a3d6b;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    animation: heroFadeUp 1s ease 0.2s both;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 18px;
    animation: heroFadeUp 1s ease 0.4s both;
}

.hero-content h1 span {
    color: #f9c74f;
}

.hero-content > p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
    animation: heroFadeUp 1s ease 0.6s both;
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
    animation: heroFadeUp 1s ease 0.8s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    animation: heroFadeUp 1s ease 1s both;
}

.hero-stats .stat h3 {
    font-size: 36px;
    font-weight: 800;
    color: #f9c74f;
}

.hero-stats .stat p {
    font-size: 14px;
    opacity: 0.85;
}

/* Carousel Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.5);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.carousel-btn:hover { background: rgba(255,255,255,0.4); }
.carousel-btn.prev { left: 24px; }
.carousel-btn.next { right: 24px; }

/* Carousel Dots */
.carousel-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.dot.active {
    background: #f9c74f;
    transform: scale(1.3);
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 34px; }
    .hero-content > p { font-size: 15px; }
    .hero-stats { gap: 28px; }
    .hero-stats .stat h3 { font-size: 28px; }
    .carousel-btn { width: 36px; height: 36px; font-size: 13px; }
}

/* ===== BUTTONS ===== */
.btn-primary {
    background-color: #f9c74f;
    color: #0a3d6b;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 15px;
    transition: background 0.3s, transform 0.2s;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #f3a800;
    transform: scale(1.05);
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 15px;
    border: 2px solid #fff;
    transition: background 0.3s, color 0.3s;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: #fff;
    color: #0a3d6b;
}

.btn-outline {
    display: inline-block;
    border: 2px solid #0a3d6b;
    color: #0a3d6b;
    font-weight: 700;
    padding: 12px 32px;
    border-radius: 30px;
    font-size: 15px;
    transition: background 0.3s, color 0.3s;
}

.btn-outline:hover {
    background-color: #0a3d6b;
    color: #fff;
}

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    background-color: #e8f4ff;
    color: #0a3d6b;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0a3d6b;
    margin-bottom: 12px;
}

.section-header p {
    font-size: 16px;
    color: #666;
    max-width: 550px;
    margin: 0 auto;
}

/* ===== FEATURES ===== */
.features {
    padding: 90px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.features::before,
.features::after,
.about-snippet::before,
.packages-preview::before,
.gallery-preview::before,
.testimonials::before {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(10, 61, 107, 0.07);
    border: 2px solid rgba(10, 61, 107, 0.1);
    animation: floatUp 10s infinite ease-in;
    pointer-events: none;
}

.features::before { width: 80px; height: 80px; left: 5%; animation-duration: 9s; }
.features::after { width: 50px; height: 50px; right: 8%; animation-duration: 12s; animation-delay: 3s; }
.about-snippet::before { width: 60px; height: 60px; left: 3%; animation-duration: 10s; animation-delay: 1s; }
.packages-preview::before { width: 70px; height: 70px; right: 5%; animation-duration: 11s; animation-delay: 2s; }
.gallery-preview::before { width: 55px; height: 55px; left: 7%; animation-duration: 9s; animation-delay: 4s; }
.testimonials::before { width: 65px; height: 65px; right: 6%; animation-duration: 10s; animation-delay: 1.5s; }

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: #fff;
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0a3d6b, #1a6bbf);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 28px;
    color: #f9c74f;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0a3d6b;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

@media (max-width: 992px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
    .features-grid { grid-template-columns: 1fr; }
    .section-header h2 { font-size: 26px; }
}

/* ===== ABOUT SNIPPET ===== */
.about-snippet {
    padding: 90px 0;
    background-color: #f9fbff;
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img {
    position: relative;
}

.about-collage {
    position: relative;
    height: 480px;
}

.collage-img {
    position: absolute;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s;
}

.collage-img:hover {
    transform: scale(1.03);
    z-index: 10;
}

.img1 {
    width: 65%;
    height: 320px;
    top: 0;
    left: 0;
    z-index: 3;
}

.img2 {
    width: 55%;
    height: 260px;
    bottom: 0;
    left: 15%;
    z-index: 2;
    border: 4px solid #fff;
}

.img3 {
    width: 48%;
    height: 220px;
    top: 60px;
    right: 0;
    z-index: 1;
    border: 4px solid #fff;
}

.about-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    white-space: nowrap;
    background: linear-gradient(135deg, #f9c74f, #f3a800);
    color: #0a3d6b;
    padding: 20px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(249,199,79,0.4);
    z-index: 10;
}

.about-badge h3 {
    font-size: 36px;
    font-weight: 800;
}

.about-badge p {
    font-size: 13px;
    font-weight: 600;
}

.about-text h2 {
    font-size: 34px;
    font-weight: 800;
    color: #0a3d6b;
    margin: 12px 0 18px;
    line-height: 1.3;
}

.about-text p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 14px;
}

.about-list {
    margin: 20px 0 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about-list li {
    font-size: 14px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-list li i {
    color: #0a3d6b;
    font-size: 16px;
}

/* ===== PACKAGES PREVIEW ===== */
.packages-preview {
    padding: 90px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.package-card {
    background-color: #fff;
    border-radius: 20px;
    padding: 36px 28px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.package-card.featured {
    background: linear-gradient(135deg, #0a3d6b, #1a6bbf);
    color: #fff;
}

.package-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f9c74f;
    color: #0a3d6b;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 16px;
    border-radius: 20px;
    white-space: nowrap;
}

.package-top {
    text-align: center;
    margin-bottom: 24px;
}

.package-top i {
    font-size: 40px;
    color: #f9c74f;
    margin-bottom: 12px;
}

.package-top h3 {
    font-size: 22px;
    font-weight: 700;
}

.package-card:not(.featured) .package-top h3 {
    color: #0a3d6b;
}

.package-card ul {
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.package-card ul li {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
}

.package-card.featured ul li {
    color: rgba(255,255,255,0.9);
}

.package-card ul li i {
    color: #f9c74f;
}

.package-card .btn-primary {
    display: block;
    text-align: center;
}

.packages-cta {
    text-align: center;
    margin-top: 40px;
}

/* ===== GALLERY PREVIEW ===== */
.gallery-preview {
    padding: 90px 0;
    background-color: #f9fbff;
    position: relative;
    overflow: hidden;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 220px 220px;
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item.large {
    grid-row: span 2;
}

.gallery-item img,
.home-video-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.gallery-item:hover img,
.home-video-item:hover video { transform: scale(1.04); }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,61,107,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 28px;
    color: #fff;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 90px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-6px);
}

.stars {
    margin-bottom: 14px;
}

.stars i {
    color: #f9c74f;
    font-size: 16px;
}

.testimonial-card > p {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, #0a3d6b, #1a6bbf);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-author h4 {
    font-size: 15px;
    font-weight: 700;
    color: #0a3d6b;
}

.testimonial-author span {
    font-size: 13px;
    color: #888;
}

/* ===== CONTACT CTA ===== */
.contact-cta {
    padding: 90px 0;
    background: linear-gradient(135deg, rgba(10,61,107,0.85), rgba(26,107,191,0.85)), url('../images/carousel2.webp') center center / cover no-repeat;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.contact-cta h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 14px;
}

.contact-cta p {
    font-size: 17px;
    opacity: 0.9;
    margin-bottom: 32px;
}

.cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
    background-color: #0a3d6b;
    color: #ccc;
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 50px;
    align-items: start;
}

.footer-logo {
    height: 120px;
    margin-bottom: 16px;
}

.footer-col {
    text-align: left;
}

.footer-col:first-child {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-col p {
    font-size: 13px;
    line-height: 1.8;
    color: #aaa;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.social-links a {
    width: 38px;
    height: 38px;
    background-color: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    transition: background 0.3s;
}

.social-links a:hover {
    background-color: #f9c74f;
    color: #0a3d6b;
}

.footer-col h4 {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 14px;
    color: #aaa;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #f9c74f;
}

.footer-contact li {
    font-size: 14px;
    color: #aaa;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 12px;
    line-height: 1.6;
}

.footer-contact li i {
    color: #f9c74f;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: #aaa;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .about-grid,
    .packages-grid,
    .testimonials-grid,
    .footer-grid { grid-template-columns: 1fr 1fr; }

    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-item.large { grid-row: span 1; }
}

@media (max-width: 768px) {
    .about-grid,
    .packages-grid,
    .testimonials-grid,
    .footer-grid { grid-template-columns: 1fr; }

    .about-img img { height: 300px; }
    .about-badge { right: 10px; bottom: 10px; }
    .contact-cta h2 { font-size: 26px; }
    .gallery-grid { grid-template-columns: 1fr; }
}

.section-bubble {
    position: absolute;
    bottom: -100px;
    border-radius: 50%;
    background: rgba(10, 61, 107, 0.12);
    border: 2px solid rgba(10, 61, 107, 0.18);
    animation: floatUp 8s infinite ease-in;
    pointer-events: none;
    z-index: 1;
}

/* ===== BUBBLES ===== */
.bubbles {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    overflow-x: hidden;
    position: relative;
}

.bubbles span {
    position: absolute;
    bottom: -100px;
    border-radius: 50%;
    background: rgba(10, 61, 107, 0.15);
    border: 2px solid rgba(10, 61, 107, 0.2);
    animation: floatUp 8s infinite ease-in;
}

.bubbles span:nth-child(1) { width: 40px; height: 40px; left: 10%; animation-delay: 0s; animation-duration: 7s; }
.bubbles span:nth-child(2) { width: 20px; height: 20px; left: 25%; animation-delay: 1.5s; animation-duration: 9s; }
.bubbles span:nth-child(3) { width: 60px; height: 60px; left: 40%; animation-delay: 3s; animation-duration: 8s; }
.bubbles span:nth-child(4) { width: 30px; height: 30px; left: 55%; animation-delay: 0.5s; animation-duration: 10s; }
.bubbles span:nth-child(5) { width: 50px; height: 50px; left: 65%; animation-delay: 2s; animation-duration: 7s; }
.bubbles span:nth-child(6) { width: 25px; height: 25px; left: 75%; animation-delay: 4s; animation-duration: 9s; }
.bubbles span:nth-child(7) { width: 35px; height: 35px; left: 85%; animation-delay: 1s; animation-duration: 8s; }
.bubbles span:nth-child(8) { width: 45px; height: 45px; left: 90%; animation-delay: 3.5s; animation-duration: 11s; }

@keyframes floatUp {
    0% { transform: translateY(0) scale(1); opacity: 0.6; }
    100% { transform: translateY(-110vh) scale(1.2); opacity: 0; }
}

/* ===== WAVE DIVIDER ===== */
.wave-top {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
}

.wave-top svg {
    width: 100%;
    height: 60px;
}

.features {
    position: relative;
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== FAQ ===== */
.faq {
    padding: 90px 0;
    background-color: #f9fbff;
    position: relative;
    overflow: hidden;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: #0a3d6b;
    gap: 16px;
}

.faq-question i {
    color: #f9c74f;
    font-size: 14px;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.open .faq-question i,
.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: #f9c74f;
}

.faq-item.open .faq-question,
.faq-item.active .faq-question {
    background: linear-gradient(135deg, #0a3d6b, #1a6bbf);
    color: #fff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 24px;
}

.faq-answer p {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    padding: 16px 0;
}

.faq-item.open .faq-answer {
    max-height: 200px;
}

@media (max-width: 768px) {
    .faq-question { font-size: 14px; padding: 16px 18px; }
}

/* ===== BOOKING MODAL ===== */
.booking-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.booking-modal-overlay.active {
    display: flex;
}

.booking-modal {
    background: #fff;
    border-radius: 20px;
    padding: 40px 36px;
    width: 100%;
    max-width: 520px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: modalSlideUp 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes modalSlideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.booking-modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 22px;
    color: #888;
    cursor: pointer;
    transition: color 0.2s;
}

.booking-modal-close:hover { color: #0a3d6b; }

.booking-modal h2 {
    font-size: 26px;
    font-weight: 800;
    color: #0a3d6b;
    margin-bottom: 6px;
}

.booking-modal p.modal-sub {
    font-size: 14px;
    color: #888;
    margin-bottom: 24px;
}

.booking-modal .form-group {
    margin-bottom: 16px;
}

.booking-modal .form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #0a3d6b;
    margin-bottom: 6px;
}

.booking-modal .form-group input,
.booking-modal .form-group select,
.booking-modal .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: #333;
    outline: none;
    transition: border 0.3s;
    background: #fafafa;
}

.booking-modal .form-group input:focus,
.booking-modal .form-group select:focus,
.booking-modal .form-group textarea:focus {
    border-color: #0a3d6b;
    background: #fff;
}

.booking-modal .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.booking-modal-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #0a3d6b, #1a6bbf);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 8px;
}

.booking-modal-submit:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 24px rgba(10,61,107,0.3);
}

.booking-modal-success {
    text-align: center;
    padding: 20px 0;
    display: none;
}

.booking-modal-success i {
    font-size: 60px;
    color: #25d366;
    margin-bottom: 16px;
}

.booking-modal-success h3 {
    font-size: 22px;
    font-weight: 800;
    color: #0a3d6b;
    margin-bottom: 10px;
}

.booking-modal-success p {
    font-size: 14px;
    color: #666;
}

@media (max-width: 480px) {
    .booking-modal { padding: 28px 20px; }
    .booking-modal .form-row { grid-template-columns: 1fr; }
}

/* ===== FLOATING SOCIAL BUTTONS ===== */
.floating-socials {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9998;
}

.float-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
}

.float-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.float-whatsapp { background: #25d366; }
.float-instagram { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%); }

@media (max-width: 480px) {
    .floating-socials { bottom: 16px; right: 16px; }
    .float-btn { width: 46px; height: 46px; font-size: 20px; }
}
