/* Esperanza Maldives - Main Styles with Parallax Effects */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --primary: #1a535c;
    --primary-light: #2c5364;
    --accent: #4facfe;
    --accent2: #00f2fe;
    --gold: #d4af37;
    --white: #ffffff;
    --dark: #0f2027;
    --gray: #666;
    --light-gray: #f5f7fa;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    overflow-x: hidden;
    background: var(--white);
}

/* ============ NAVIGATION ============ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(15, 32, 39, 0.95);
    padding: 15px 50px;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo img {
    height: 45px;
}

.nav-logo span {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--white);
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-cta {
    padding: 12px 28px;
    background: linear-gradient(135deg, #1a6b78, var(--primary));
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    box-shadow: 0 4px 18px rgba(15, 32, 39, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(79, 172, 254, 0.4);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

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

.hero-bg {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;
    background-size: cover;
    background-position: center;
    will-change: transform;
    z-index: -2;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    /* Gradient scrim: dark only where text sits, edges stay vibrant */
    background: linear-gradient(to bottom,
        rgba(15,32,39,0.55) 0%,
        rgba(15,32,39,0.25) 30%,
        rgba(15,32,39,0.30) 55%,
        rgba(15,32,39,0.65) 100%);
}

.hero-content {
    text-align: center;
    color: var(--white);
    z-index: 1;
    padding: 120px 20px 0;
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 30px;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    animation: fadeInDown 1s ease;
}

.hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 2px 30px rgba(15, 32, 39, 0.55);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero h1 span {
    /* Gold accent instead of blue-on-blue — readable over ocean/sky */
    background: linear-gradient(135deg, #f7d774, var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 2px 12px rgba(15, 32, 39, 0.6));
}

.hero p {
    font-size: 18px;
    font-weight: 400;
    opacity: 1;
    max-width: 600px;
    margin: 0 auto 35px;
    line-height: 1.7;
    text-shadow: 0 1px 15px rgba(15, 32, 39, 0.7);
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.6s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    /* Solid ocean-teal: 7.2:1 contrast with white text (WCAG AAA) */
    background: linear-gradient(135deg, #1a6b78, var(--primary));
    color: white;
    box-shadow: 0 4px 18px rgba(15, 32, 39, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(15, 32, 39, 0.35);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
    background: white;
    color: var(--primary);
    border-color: white;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 13px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: bounce 2s infinite;
}

.hero-scroll span {
    opacity: 0.7;
}

/* ============ PARALLAX SECTIONS ============ */
.parallax-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -1;
}

.parallax-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 32, 39, 0.5);
}

/* ============ SECTION STYLES ============ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 16px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.section-header .line {
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    margin: 20px auto 0;
    border-radius: 2px;
}

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

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

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.about-image .floating-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: white;
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
}

.floating-card .number {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
}

.floating-card .text {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.5;
}

.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-content p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 25px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

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

.feature-item i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.feature-item span {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

/* ============ RESORTS SECTION ============ */
.resorts {
    background: var(--light-gray);
    padding: 100px 0;
    overflow: hidden;
}

/* Horizontal Scroll Container */
.resorts-scroll-container {
    position: relative;
    margin: 0 -20px;
    padding: 0 20px;
}

.resorts-scroll {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 20px 0 40px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) transparent;
}

.resorts-scroll::-webkit-scrollbar {
    height: 8px;
}

.resorts-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.resorts-scroll::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    border-radius: 10px;
}

.resort-card {
    flex: 0 0 350px;
    scroll-snap-align: start;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s;
    cursor: pointer;
}

/* Scroll Navigation */
.scroll-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.scroll-nav button {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-nav button:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(79, 172, 254, 0.4);
}

.scroll-nav button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* View All Link */
.view-all-container {
    text-align: center;
    margin-top: 40px;
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.view-all-link:hover {
    color: var(--accent);
    gap: 15px;
}

.resort-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.resort-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.resort-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.resort-card:hover .resort-card-image img {
    transform: scale(1.1);
}

.resort-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 14px;
    background: rgba(255,255,255,0.9);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
}

.resort-card-rating {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    background: rgba(0,0,0,0.6);
    border-radius: 20px;
    font-size: 12px;
    color: white;
    display: flex;
    align-items: center;
    gap: 5px;
}

.resort-card-rating i {
    color: var(--gold);
}

.resort-card-body {
    padding: 25px;
}

.resort-card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 8px;
}

.resort-card-body .location {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.resort-card-body p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 15px;
}

.resort-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.resort-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
}

.resort-price span {
    font-size: 13px;
    font-weight: 400;
    color: var(--gray);
}

.resort-card-footer .btn {
    padding: 10px 22px;
    font-size: 13px;
}

/* ============ CRUISER SECTION ============ */
.cruiser {
    position: relative;
    padding: 150px 0;
    color: white;
    text-align: center;
}

.cruiser-content {
    position: relative;
    z-index: 1;
}

.cruiser h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 20px;
}

.cruiser p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.cruiser-tours {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 50px;
    padding: 0 20px;
}

.tour-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 35px 25px;
    transition: all 0.3s;
    margin: 0 10px;
}

.tour-card:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

.tour-card i {
    font-size: 40px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tour-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.tour-card p {
    font-size: 13px;
    opacity: 0.8;
    margin-bottom: 0;
}

.tour-card .price {
    font-size: 20px;
    font-weight: 700;
    margin-top: 10px;
}

/* ============ GALLERY SECTION ============ */
.gallery {
    background: var(--white);
    padding: 120px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 15px;
}

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

.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

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

/* ============ TESTIMONIALS ============ */
.testimonials {
    background: var(--light-gray);
    padding: 120px 0;
}

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

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 80px;
    font-family: 'Playfair Display', serif;
    color: var(--accent);
    opacity: 0.2;
    line-height: 1;
}

.testimonial-card p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author-info h4 {
    font-size: 15px;
    color: #333;
    margin-bottom: 3px;
}

.testimonial-author-info span {
    font-size: 13px;
    color: var(--gray);
}

.testimonial-stars {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 14px;
}

/* ============ CONTACT SECTION ============ */
.contact {
    background: var(--white);
    padding: 120px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    color: var(--primary);
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.contact-item .details h4 {
    font-size: 15px;
    color: #333;
    margin-bottom: 3px;
}

.contact-item .details span {
    font-size: 14px;
    color: var(--gray);
}

.contact-form {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 20px;
}

.contact-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(79, 172, 254, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(26, 83, 92, 0.3);
}

/* ============ FOOTER ============ */
.footer {
    background: var(--dark);
    color: white;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-about img {
    height: 45px;
    margin-bottom: 15px;
}

.footer-about p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.footer h4 {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

/* ============ ANIMATIONS ============ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.reveal {
    opacity: 1;
    transform: none;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Only hide for reveal when JS is running (body.js added by main.js).
   Without JS everything stays visible — no invisible content, ever. */
body.js .reveal {
    opacity: 0;
    transform: translateY(40px);
}

body.js .reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Respect reduced-motion */
@media (prefers-reduced-motion: reduce) {
    body.js .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ============ OUR HOTELS SECTION ============ */
.our-hotels {
    background: var(--white);
    padding: 100px 0;
}

.our-hotels .section-header {
    margin-bottom: 80px;
}

.hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 35px;
}

.hotel-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.4s;
    cursor: pointer;
}

.hotel-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.hotel-card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.hotel-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.hotel-card:hover .hotel-card-image img {
    transform: scale(1.1);
}

.hotel-card-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: white;
}

.hotel-card-rating {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 14px;
    background: rgba(0,0,0,0.6);
    border-radius: 20px;
    font-size: 13px;
    color: white;
    display: flex;
    align-items: center;
    gap: 5px;
}

.hotel-card-rating i {
    color: var(--gold);
}

.hotel-card-body {
    padding: 28px;
}

.hotel-card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 8px;
}

.hotel-card-body .location {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.hotel-card-body p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 18px;
}

.hotel-services {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.hotel-service-tag {
    padding: 5px 12px;
    background: #f0f7ff;
    border-radius: 15px;
    font-size: 11px;
    color: var(--primary);
    font-weight: 500;
}

.hotel-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 18px;
    border-top: 1px solid #f0f0f0;
}

.hotel-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.hotel-price span {
    font-size: 13px;
    font-weight: 400;
    color: var(--gray);
}

.hotel-card-footer .btn {
    padding: 10px 22px;
    font-size: 14px;
}

/* ============ RESPONSIVE FIXES ============ */

/* Fix hotel cards overflowing on mobile */
@media (max-width: 480px) {
    .hotels-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 0 10px !important;
    }
    
    .hotel-card {
        margin: 0 !important;
        max-width: 100% !important;
    }
    
    .resorts-scroll-container {
        margin: 0 !important;
        padding: 0 10px !important;
    }
    
    .resort-card {
        flex: 0 0 260px !important;
        margin: 0 !important;
    }
    
    .hero-booking-widget {
        flex-direction: column !important;
        padding: 12px !important;
        gap: 8px !important;
        margin: 30px 10px 0 !important;
        max-width: calc(100% - 20px) !important;
        margin-bottom: 80px !important;
    }
    
    .hbw-field {
        width: 100% !important;
    }
    
    .hbw-field select,
    .hbw-field input {
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .hbw-btn {
        width: 100% !important;
        justify-content: center !important;
    }
    
    .container {
        padding: 0 10px !important;
    }
    
    .gallery-grid {
        padding: 0 10px !important;
    }
    
    .contact-grid {
        padding: 0 10px !important;
    }
    
    .footer-grid {
        padding: 0 10px !important;
    }
    
    .about-grid {
        padding: 0 10px !important;
    }
    
    .section-header {
        padding: 0 10px !important;
    }
    
    /* Fix hero-badge under navbar on mobile */
    .hero-badge {
        margin-top: 80px !important;
        position: relative !important;
        z-index: 5 !important;
    }
    
    /* Fix hero booking widget cutoff on mobile */
    .hero {
        height: auto !important;
        min-height: 100vh !important;
        align-items: flex-start !important;
        padding-bottom: 40px !important;
    }
    
    .hero-content {
        padding-top: 120px !important;
    }
    
    /* Fix Hope Cruiser cards overflow */
    .cruiser-tours {
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
        padding: 0 10px !important;
        margin-top: 30px !important;
    }
    
    .tour-card {
        margin: 0 !important;
        padding: 20px 15px !important;
    }
    
    .tour-card h3 {
        font-size: 16px !important;
    }
    
    .tour-card p {
        font-size: 12px !important;
    }
    
    /* Make a Reservation section mobile friendly */
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .contact-info h2 {
        font-size: 28px !important;
    }
    
    .contact-form {
        padding: 25px 20px !important;
    }
    
    .booking-section .container {
        padding: 0 10px !important;
    }
    
    .booking-form {
        padding: 25px 15px !important;
    }
    
    .form-row {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
    
    .form-group label {
        font-size: 13px !important;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px !important;
        font-size: 14px !important;
    }
    
    .btn-submit {
        padding: 14px !important;
        font-size: 15px !important;
    }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 52px;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 200px);
    }
    
    .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .hero-booking-widget {
        flex-direction: column;
        padding: 14px;
        gap: 8px;
        margin: 30px 15px 0;
        max-width: calc(100% - 30px);
    }
    
    .hbw-field {
        width: 100%;
    }
    
    .hbw-field select,
    .hbw-field input {
        width: 100%;
        box-sizing: border-box;
    }
    
    .hbw-btn {
        width: 100%;
        justify-content: center;
    }
    
    .nav-cta {
        display: none;
    }
    
    .hotels-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .hotel-card {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(15, 32, 39, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero h1 {
        font-size: 38px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .resort-card {
        flex: 0 0 300px;
    }
    
    .cruiser-tours {
        grid-template-columns: 1fr 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .cruiser h2 {
        font-size: 32px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 200px);
    }
    
    .gallery-item:nth-child(1) {
        grid-column: span 1;
    }
    
    .resort-card {
        flex: 0 0 280px;
    }
}

/* ============ BOOKING POPUP ============ */
.booking-popup {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.booking-popup-content {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
    animation: popupFadeIn 0.3s ease;
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.booking-popup-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 40px;
}

.booking-popup-icon.success {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
    color: white;
}

.booking-popup-icon.error {
    background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
    color: white;
}

.booking-popup-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #1a535c;
    margin-bottom: 10px;
}

.booking-popup-content p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* ============ DATE LABELS ============ */
.date-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #1a535c;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.days-display {
    display: none;
    padding: 12px;
    background: linear-gradient(135deg, #f0f7ff, #e3f2fd);
    border-radius: 10px;
    margin-top: 15px;
}

.days-display i {
    margin-right: 8px;
}

/* ============ CONTACT SECTION WITH MAP ============ */
.contact-section {
    background: var(--white);
    padding: 120px 0;
}

.contact-grid-map {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info-map h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 20px;
}

.contact-info-map > p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-info-map .contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-map .contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-info-map .contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.contact-info-map .contact-item .details h4 {
    font-size: 15px;
    color: #333;
    margin-bottom: 3px;
}

.contact-info-map .contact-item .details span {
    font-size: 14px;
    color: var(--gray);
}

.contact-info-map .social-links {
    display: flex;
    gap: 12px;
}

.contact-info-map .social-links a {
    width: 45px;
    height: 45px;
    background: rgba(79, 172, 254, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s;
}

.contact-info-map .social-links a:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-3px);
}

.contact-map {
    position: relative;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-container iframe {
    display: block;
}

.map-info {
    margin-top: 15px;
    padding: 15px 20px;
    background: var(--light-gray);
    border-radius: 10px;
}

.map-info p {
    font-size: 14px;
    color: var(--primary);
    font-weight: 500;
}

.map-info i {
    color: var(--accent);
    margin-right: 8px;
}

@media (max-width: 768px) {
    .contact-grid-map {
        grid-template-columns: 1fr;
    }
    
    .contact-info-map h2 {
        font-size: 26px;
    }
}

/* ============ UI/UX OVERHAUL ADDITIONS ============ */

/* Tighter section rhythm (was 100-120px, causing huge dead bands) */
.parallax-section,
.our-hotels,
.gallery,
.testimonials,
.contact {
    padding: 80px 0;
}

/* Nav scrim: subtle top gradient so links stay readable over bright sky */
.navbar {
    background: linear-gradient(to bottom, rgba(15,32,39,0.45), rgba(15,32,39,0));
    padding-top: 14px;
    padding-bottom: 18px;
}
.navbar.scrolled {
    background: rgba(15, 32, 39, 0.95);
}

/* Active nav state */
.nav-links a.active {
    color: var(--accent2);
}
.nav-links a.active::after {
    width: 100%;
    background: var(--accent2);
}

/* Focus visibility for a11y */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--accent2);
    outline-offset: 2px;
}

/* Gallery lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(15, 32, 39, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.lightbox.open {
    opacity: 1;
    pointer-events: auto;
}
.lightbox img {
    max-width: 88vw;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    background: rgba(255,255,255,0.12);
    border: none;
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: background 0.3s;
}
.lightbox-close:hover {
    background: rgba(255,255,255,0.25);
}
.lightbox-caption {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    letter-spacing: 0.5px;
}

/* Gallery hover affordance */
.gallery-item {
    cursor: zoom-in;
}
.gallery-item img {
    transition: transform 0.6s ease;
}
.gallery-item:hover img {
    transform: scale(1.06);
}

/* Sticky mobile book bar */
.mobile-book-bar {
    display: none;
}
@media (max-width: 768px) {
    .mobile-book-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1500;
        background: rgba(15, 32, 39, 0.97);
        backdrop-filter: blur(10px);
        padding: 12px 16px;
        padding-bottom: calc(12px + env(safe-area-inset-bottom));
        gap: 12px;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
    }
    .mobile-book-bar .btn {
        flex: 1;
        justify-content: center;
        padding: 13px 10px;
        font-size: 14px;
    }
    body {
        padding-bottom: 70px;
    }
}

/* Hero booking widget */
.hero-booking-widget {
    margin: 40px auto 0;
    max-width: 760px;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 14px;
    display: flex;
    gap: 10px;
    align-items: flex-end;
    box-shadow: 0 20px 60px rgba(15,32,39,0.35);
    animation: fadeInUp 1s ease 0.8s both;
    text-align: left;
}
.hbw-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.hbw-field label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--primary);
    padding-left: 6px;
}
.hbw-field select,
.hbw-field input {
    border: 1.5px solid #dce6ea;
    border-radius: 10px;
    padding: 11px 12px;
    font-size: 14px;
    font-family: inherit;
    color: #222;
    background: #fff;
    cursor: pointer;
}
.hbw-field select:focus,
.hbw-field input:focus {
    border-color: var(--primary);
    outline: none;
}
.hbw-btn {
    padding: 13px 26px;
    border-radius: 12px;
    white-space: nowrap;
}

/* Testimonial initials avatar (no external dependency) */
.avatar-initials {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a6b78, var(--primary));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    flex-shrink: 0;
}

/* Booking form microcopy */
.booking-microcopy {
    margin-top: 12px;
    font-size: 13px;
    color: #5a6b72;
    text-align: center;
}
.booking-microcopy i {
    color: var(--primary);
    margin-right: 4px;
}

/* Submit button: high-contrast primary */
.btn-submit {
    background: linear-gradient(135deg, #1a6b78, var(--primary));
    color: white;
    box-shadow: 0 6px 22px rgba(15, 32, 39, 0.28);
}
.btn-submit:hover {
    box-shadow: 0 12px 30px rgba(15, 32, 39, 0.38);
}
