:root {
    --navy: #1a2b4b;
    --teal: #43c1b6;
    --white: #ffffff;
    --bg-light: #f4f7f9;
}

* {
    margin: 0; padding: 0; box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, sans-serif;
}

html { scroll-behavior: smooth; }

/* Navigation */
header {
    background: var(--white);
    padding: 10px 5%;
    position: sticky; top: 0; z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

nav {
    display: flex; justify-content: space-between; align-items: center;
    max-width: 1200px; margin: 0 auto;
}

.main-logo { height: 75px; }

.nav-links { list-style: none; display: flex; align-items: center; }
.nav-links li { margin-left: 20px; }
.nav-links a { text-decoration: none; color: var(--navy); font-weight: 600; transition: 0.3s; }
.nav-links a:hover { color: var(--teal); }
.nav-cta { background: var(--teal); color: white !important; padding: 8px 18px; border-radius: 4px; }

/* Hero Section */
.hero {
    position: relative; height: 85vh; display: flex; align-items: center; justify-content: center;
    color: white; text-align: center;
    background: url('https://images.unsplash.com/photo-1570710891163-6d3b5c47248b?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
}

.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(26, 43, 75, 0.82); }
.hero-content { position: relative; z-index: 1; max-width: 800px; padding: 0 20px; }
.hero-content h1 { font-size: 3rem; margin-bottom: 10px; }
.accent { color: var(--teal); }
.hero-subtitle { font-size: 1.3rem; margin-bottom: 30px; }

.escort-highlight {
    background: rgba(255,255,255,0.1); border: 1px solid var(--teal);
    padding: 20px; border-radius: 8px; display: flex; align-items: center; gap: 20px;
    margin-bottom: 30px; text-align: left;
}

.escort-highlight i { font-size: 2rem; color: var(--teal); }

.btn-primary { background: var(--teal); color: white; padding: 12px 25px; text-decoration: none; border-radius: 4px; font-weight: bold; display: inline-block; margin: 5px; }
.btn-secondary { border: 2px solid white; color: white; padding: 10px 25px; text-decoration: none; border-radius: 4px; font-weight: bold; display: inline-block; margin: 5px; }

/* General Sections */
.section { padding: 60px 5%; }
.container { max-width: 1200px; margin: 0 auto; }
.section-title { text-align: center; font-size: 2rem; color: var(--navy); margin-bottom: 40px; }
.alt-bg { background: var(--bg-light); }

/* Grid Layouts */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }
.card { background: white; padding: 30px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); text-align: center; }
.card i { font-size: 2.2rem; color: var(--teal); margin-bottom: 15px; }
.card.outline { border: 1px solid var(--navy); box-shadow: none; }

/* Contact & Address Section */
.address-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px;
    margin-bottom: 50px;
}

.address-card { background: var(--bg-light); padding: 20px; border-radius: 8px; border-left: 5px solid var(--teal); }
.address-card h3 { color: var(--navy); margin-bottom: 8px; font-size: 1.1rem; }

.contact-methods {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px;
    text-align: center; border-top: 1px solid #ddd; padding-top: 40px;
}

.contact-item i { font-size: 1.5rem; color: var(--teal); margin-bottom: 10px; display: block; }
.contact-item p, .contact-item a { color: var(--navy); font-weight: 600; text-decoration: none; }

footer { background: var(--navy); color: white; text-align: center; padding: 25px 0; font-size: 0.9rem; }

/* Responsive adjustments for Mobile */
@media (max-width: 768px) {
    .nav-links { display: none; } /* Consider adding a burger menu later */
    .hero-content h1 { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .escort-highlight { flex-direction: column; text-align: center; }
    .section { padding: 40px 5%; }
}

/* NEXT TRIP BANNER STYLES */
.next-trip-banner {
    background: #1a2b4b; /* Deep Navy */
    color: white;
    padding: 12px 20px;
    border-bottom: 3px solid #ffd700; /* Gold Accent */
}

.trip-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.trip-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.trip-badge {
    background: #ffd700;
    color: #1a2b4b;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    animation: flash 1.5s infinite;
}

.trip-info p {
    margin: 0;
    font-size: 1rem;
}

.trip-btn {
    background: #25D366; /* WhatsApp Green */
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.trip-btn:hover {
    background: #128C7E;
    transform: scale(1.05);
}

@keyframes flash {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    /* NEW: This hides the logo on mobile */
    .main-logo {
        display: none !important;
    }

    /* NEW: This centers your "three dots" menu now that the logo is gone */
    nav {
        justify-content: center !important;
    }

    /* Your existing banner adjustments */
    .trip-container {
        justify-content: center;
        text-align: center;
    }
    .trip-info {
        flex-direction: column;
        gap: 8px;
    }
}