/* === Hardy Cruisers — Luxury Cruise Travel === */
:root {
    --navy: #0c1b2a;
    --navy-light: #132d46;
    --gold: #c9a84c;
    --gold-light: #e0c97f;
    --cream: #faf8f4;
    --white: #ffffff;
    --text: #2c3e50;
    --text-light: #6b7c93;
    --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Playfair Display', serif; font-weight: 600; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}
.section-header { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-header h2 { font-size: 2.5rem; color: var(--navy); margin-bottom: 16px; }
.section-desc { color: var(--text-light); font-size: 1.05rem; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline { border: 1.5px solid rgba(255,255,255,0.6); color: var(--white); background: transparent; }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-full { width: 100%; text-align: center; }

/* === Navbar === */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    padding: 16px 0;
    transition: background 0.4s, padding 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
    background: rgba(12, 27, 42, 0.97);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.nav-container { display: flex; align-items: center; justify-content: space-between; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.nav-logo img { height: 52px; width: auto; transition: height 0.3s; }
.navbar.scrolled .nav-logo img { height: 42px; }
.nav-links { display: flex; align-items: center; list-style: none; gap: 32px; }
.nav-links a { color: rgba(255,255,255,0.85); font-size: 0.9rem; font-weight: 400; letter-spacing: 0.3px; transition: color var(--transition); }
.nav-links a:hover { color: var(--gold); }
.nav-cta {
    background: var(--gold); color: var(--navy) !important; padding: 10px 24px; border-radius: 4px; font-weight: 500;
}
.nav-cta:hover { background: var(--gold-light); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: white; margin: 5px 0; transition: var(--transition); }

/* === Hero === */
.hero { position: relative; height: 100vh; min-height: 600px; display: flex; align-items: center; justify-content: center; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,27,42,0.55) 0%, rgba(12,27,42,0.75) 100%); }
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 800px; padding: 0 24px; }
.hero-tagline { font-size: 0.85rem; font-weight: 500; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.hero h1 { font-size: 4rem; color: var(--white); margin-bottom: 20px; }
.hero-sub { font-size: 1.15rem; color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto 36px; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 2; }
.scroll-indicator {
    width: 24px; height: 40px; border: 2px solid rgba(255,255,255,0.4); border-radius: 12px; position: relative;
}
.scroll-indicator::after {
    content: ''; position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
    width: 3px; height: 8px; background: rgba(255,255,255,0.6); border-radius: 2px;
    animation: scrollBounce 1.5s infinite;
}
@keyframes scrollBounce { 0%,100% { opacity: 1; transform: translateX(-50%) translateY(0); } 50% { opacity: 0.3; transform: translateX(-50%) translateY(8px); } }

/* === About === */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-image { position: relative; border-radius: 8px; overflow: hidden; }
.about-image img { width: 100%; height: 420px; object-fit: cover; border-radius: 8px; }
.about-badge {
    position: absolute; bottom: -20px; right: 24px;
    background: var(--gold); color: var(--navy); padding: 16px 24px;
    border-radius: 6px; text-align: center; box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
.badge-number { display: block; font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; line-height: 1; }
.badge-text { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.about-content h2 { font-size: 2.5rem; color: var(--navy); margin-bottom: 20px; }
.about-content p { margin-bottom: 16px; color: var(--text-light); }
.about-stats { display: flex; gap: 40px; margin-top: 32px; padding-top: 24px; border-top: 1px solid #e0ddd6; }
.stat-number { display: block; font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--navy); }
.stat-label { font-size: 0.8rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; }

/* === Services === */
.services { background: var(--navy); color: var(--white); }
.services .section-header h2 { color: var(--white); }
.services .section-desc { color: rgba(255,255,255,0.6); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.service-card {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px; padding: 36px 28px; transition: var(--transition);
}
.service-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); }
.service-icon { width: 48px; height: 48px; color: var(--gold); margin-bottom: 20px; }
.service-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.service-card p { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* === Destinations === */
.destinations-regions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.region {
    background: var(--white); border-radius: 8px; padding: 32px;
    border: 1px solid #e8e5de; transition: var(--transition);
}
.region:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.06); transform: translateY(-2px); }
.region h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: 12px; }
.region p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }

/* === Map === */
.map-section { background: var(--white); }
.map-container { border-radius: 12px; overflow: hidden; box-shadow: 0 8px 40px rgba(0,0,0,0.1); }
#cruise-map { height: 520px; width: 100%; }

/* Leaflet custom popup */
.leaflet-popup-content-wrapper { border-radius: 8px; font-family: 'Inter', sans-serif; }
.leaflet-popup-content { margin: 12px 16px; font-size: 0.9rem; }
.map-popup-title { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 1rem; color: var(--navy); margin-bottom: 4px; }
.map-popup-region { font-size: 0.78rem; color: var(--text-light); }

/* Custom marker */
.custom-marker {
    width: 14px; height: 14px; background: var(--gold); border: 2.5px solid var(--navy);
    border-radius: 50%; box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    transition: transform 0.2s;
}
.custom-marker:hover { transform: scale(1.4); }

/* === Testimonials === */
.testimonials { background: var(--cream); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card {
    background: var(--white); border-radius: 8px; padding: 36px;
    border: 1px solid #e8e5de; position: relative;
}
.testimonial-card::before {
    content: '\201C'; position: absolute; top: 16px; left: 24px;
    font-family: 'Playfair Display', serif; font-size: 4rem; color: var(--gold); opacity: 0.3; line-height: 1;
}
.testimonial-quote { font-size: 0.95rem; color: var(--text-light); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.author-name { display: block; font-weight: 600; color: var(--navy); font-size: 0.9rem; }
.author-detail { font-size: 0.8rem; color: var(--text-light); }

/* === Contact === */
.contact { background: var(--navy); color: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info h2 { font-size: 2.5rem; margin-bottom: 16px; }
.contact-info > p { color: rgba(255,255,255,0.65); margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: center; gap: 16px; }
.contact-item svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; }
.contact-label { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.5); }
.contact-item a { color: var(--white); font-size: 1rem; }
.contact-item a:hover { color: var(--gold); }
.contact-motto { margin-top: 40px; font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--gold); font-style: italic; }

.contact-form-wrap { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 40px; }
.form-group { margin-bottom: 16px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 14px 16px; background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15); border-radius: 4px;
    color: var(--white); font-family: 'Inter', sans-serif; font-size: 0.9rem;
    transition: border-color var(--transition);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-group select { appearance: none; color: rgba(255,255,255,0.35); }
.form-group select option { background: var(--navy); color: var(--white); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 100px; }

/* === Footer === */
.footer { background: #081420; color: rgba(255,255,255,0.5); padding: 48px 0 24px; }
.footer-content { display: flex; justify-content: space-between; align-items: start; gap: 40px; margin-bottom: 32px; }
.footer-logo { height: 48px; margin-bottom: 12px; }
.footer-brand p { font-size: 0.85rem; max-width: 280px; }
.footer-links { display: flex; gap: 28px; }
.footer-links a { font-size: 0.85rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact a { font-size: 0.85rem; transition: color var(--transition); }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; text-align: center; font-size: 0.8rem; }

/* === Animations === */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s, transform 0.6s; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* === Responsive === */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .destinations-regions { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .hero h1 { font-size: 2.6rem; }
    .section { padding: 72px 0; }
    .section-header h2, .about-content h2, .contact-info h2 { font-size: 2rem; }

    .nav-links {
        position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
        background: var(--navy); flex-direction: column; padding: 80px 32px 32px;
        gap: 24px; transition: right 0.3s;
    }
    .nav-links.open { right: 0; }
    .nav-toggle { display: block; z-index: 1001; }
    .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .services-grid { grid-template-columns: 1fr; }
    .destinations-regions { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-content { flex-direction: column; }
    .about-stats { gap: 24px; }
    #cruise-map { height: 380px; }
}
