* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #fefcf8;
    color: #1a2a2f;
    scroll-behavior: smooth;
    line-height: 1.4;
}

:root {
    --primary: #3b82f6;        /* Bright Blue */
    --primary-dark: #2563eb;   /* Deep Blue */
    --secondary: #1e293b;      /* Dark Slate Grey */
    --accent-gold: #64748b;    /* Cool Grey */
    --light-bg: #f8fafc;       /* Light Grey-Blue */
    --gray-light: #e2e8f0;     /* Border Grey */
    --text-dark: #0f172a;      /* Dark Slate */
    --shadow-sm: 0 10px 30px -12px rgba(0,0,0,0.08);
    --shadow-md: 0 20px 35px -12px rgba(0,0,0,0.12);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
    background-color: white;
    box-shadow: 0 2px 15px rgba(0,0,0,0.03);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(2px);
    background: rgba(255,255,255,0.96);
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #e35f21 0%, #c24912 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.logo span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #1e3a3f;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    font-weight: 600;
    color: #2c4b52;
    transition: 0.2s;
}

.nav-links a:hover {
    color: var(--primary);
}

.btn-nav-quote {
    background: var(--primary);
    color: white !important;
    padding: 0.6rem 1.4rem;
    border-radius: 40px;
}

.btn-nav-quote:hover {
    background: var(--primary-dark);
    transform: scale(0.97);
}

.hamburger {
    display: none;
    font-size: 1.7rem;
    cursor: pointer;
    color: var(--secondary);
}

/* buttons */
.btn-primary {
    background: var(--primary);
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 60px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    text-decoration: none;
    transition: 0.2s;
}

.btn-primary i {
    font-size: 1.1rem;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(227,95,33,0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 0.8rem 1.8rem;
    border-radius: 60px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #25D366;
    color: white;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(37,211,102,0.4);
    z-index: 99;
    text-decoration: none;
    transition: 0.2s;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    background: #20b859;
}

/* hero */
.hero {
    background: linear-gradient(105deg, #ffffff 40%, #fef2e8 100%);
    padding: 4rem 0 5rem 0;
}

.hero-grid {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1.2;
}

.hero-content h1 {
    font-size: 3.3rem;
    font-weight: 800;
    line-height: 1.2;
    color: #1e3a3f;
}

.hero-accent {
    color: var(--primary);
}

.hero-destinations {
    display: flex;
    gap: 1.2rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.dest-badge {
    background: white;
    padding: 0.4rem 1.2rem;
    border-radius: 40px;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary);
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero-img {
    flex: 0.9;
    text-align: center;
}

.hero-img i {
    font-size: 12rem;
    color: var(--primary);
    opacity: 0.8;
}

.hero-img i:first-child {
    margin-right: -2rem;
}

/* section titles */
.section-title {
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1e3a3f;
    position: relative;
}

.section-title:after {
    content: '';
    width: 70px;
    height: 4px;
    background: var(--primary);
    display: block;
    margin-top: 8px;
    border-radius: 4px;
}

.section-sub {
    color: #5d757c;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* grids */
.services-grid, .steps-grid, .dest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.service-card, .step-card, .dest-card {
    background: white;
    border-radius: 28px;
    padding: 2rem 1.5rem;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.service-card:hover, .step-card:hover, .dest-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.service-icon, .step-icon {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 1.2rem;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffe3d4;
    margin-bottom: -1rem;
}

h3 {
    margin: 1rem 0 0.6rem;
    font-weight: 700;
}

.dest-card i {
    font-size: 2.4rem;
    color: var(--accent-gold);
}

/* steps background */
.steps-wrapper {
    background: var(--light-bg);
    padding: 4rem 0;
    border-radius: 3rem;
    margin: 2rem 0;
}

/* cta banner */
.cta-banner {
    background: linear-gradient(120deg, #1e3a3f, #2b565e);
    border-radius: 2rem;
    padding: 3rem;
    text-align: center;
    color: white;
    margin: 4rem 0;
}

.cta-banner h2 {
    font-size: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 1.8rem;
    flex-wrap: wrap;
}

.cta-white-btn {
    background: white;
    color: #1e3a3f !important;
}

.cta-white-btn:hover {
    background: #f0f0f0;
}

.cta-outline-light {
    border-color: white;
    color: white;
}

.cta-outline-light:hover {
    background: white;
    color: #1e3a3f;
}

/* contact */
.contact-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin: 3rem 0;
}

.contact-info {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 2rem;
    box-shadow: var(--shadow-sm);
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.8rem 0;
}

.contact-detail-item i {
    font-size: 1.6rem;
    color: var(--primary);
    width: 2rem;
}

.contact-form {
    flex: 1.5;
    background: white;
    padding: 2rem;
    border-radius: 2rem;
    box-shadow: var(--shadow-sm);
}

input, textarea, select {
    width: 100%;
    padding: 0.9rem;
    margin: 0.6rem 0 1.2rem;
    border: 1px solid #e2e0db;
    border-radius: 28px;
    font-family: inherit;
    background: #fefcf8;
}

textarea {
    border-radius: 24px;
    resize: vertical;
}

button[type="submit"] {
    background: var(--primary);
    border: none;
    width: 100%;
    padding: 0.9rem;
    font-weight: bold;
    font-size: 1rem;
}

footer {
    background: #111e21;
    color: #cbd5d1;
    padding: 3rem 0;
    margin-top: 3rem;
    text-align: center;
}

.map-mock {
    background: #e2e6e3;
    border-radius: 20px;
    padding: 15px;
    text-align: center;
    font-style: italic;
    font-size: 0.9rem;
    color: #2b565e;
}

/* responsive */
@media (max-width: 850px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background: white;
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        padding: 1.5rem;
        box-shadow: 0 15px 25px rgba(0,0,0,0.1);
        border-radius: 0 0 20px 20px;
    }
    .nav-links.active {
        display: flex;
    }
    .hamburger {
        display: block;
    }
    .hero-content h1 {
        font-size: 2.4rem;
    }
    .container {
        padding: 0 1.5rem;
    }
    .hero-img i {
        font-size: 7rem;
    }
}

/* Country flags styling */
.country-flag {
    width: 24px;
    height: auto;
    border-radius: 4px;
    margin-right: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    vertical-align: middle;
}

.dest-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.4rem 1.2rem;
    border-radius: 40px;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary);
}