/* styles/index.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #FEF9EF;
    color: #1E2F3A;
    line-height: 1.5;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: #F26B4F;
    color: white;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.btn-primary:hover {
    background-color: #e05538;
    transform: translateY(-2px);
}
.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: #F26B4F;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid #F26B4F;
    transition: 0.2s;
}
.btn-outline:hover {
    background-color: #F26B4F;
    color: white;
}
.small {
    padding: 6px 16px;
    font-size: 0.85rem;
}

/* Header & Navigation */
header {
    background-color: #FEF9EF;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
    border-bottom: 1px solid rgba(242,107,79,0.1);
}
.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}
.logo-text h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1E2F3A;
    letter-spacing: -0.3px;
    min-width: 220px;
}
.logo-text span {
    font-size: 0.75rem;
    color: #F26B4F;
    font-weight: 500;
    display: block;
}
.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
}
.nav-links a {
    text-decoration: none;
    font-weight: 500;
    color: #1E2F3A;
    transition: 0.2s;
}
.nav-links a:hover, .nav-links a.active {
    color: #F26B4F;
}
.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #1E2F3A;
}

/* Hero Section */
.hero {
    background-image: url('../images/tours/blue-safari/img1.jpg');
    background-size: cover;
    background-position: center 40%;
    height: 500px;
    position: relative;
    margin-bottom: 40px;
}
.hero-overlay {
    background: linear-gradient(0deg, rgba(30,47,58,0.7), rgba(30,47,58,0.4));
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    text-align: center;
}
.hero-content {
    color: white;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.hero-content h2 {
    font-size: 2.8rem;
    margin-bottom: 16px;
}
.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 24px;
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin: 60px 0 12px;
    color: #1E2F3A;
}
.section-sub {
    text-align: center;
    color: #5F6C75;
    margin-bottom: 40px;
}

/* Reviews Carousel */
.reviews-section {
    margin: 60px auto;
}
.reviews-carousel {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 40px 0 24px;
}
.review-card {
    background: white;
    border-radius: 28px;
    padding: 28px;
    width: 300px;
    flex: 1 1 280px;
    box-shadow: 0 12px 24px rgba(0,0,0,0.05);
    transition: 0.2s;
}
.review-stars {
    color: #FFB347;
    font-size: 1.2rem;
    margin-bottom: 12px;
}
.review-text {
    font-style: italic;
    color: #2c3e4e;
    margin: 15px 0;
}
.review-author {
    font-weight: 600;
    color: #F26B4F;
    margin-bottom: 12px;
}
.review-links a {
    font-size: 0.85rem;
    color: #3B9C9C;
    text-decoration: none;
}
.review-links a:hover {
    text-decoration: underline;
}
.reviews-footer {
    text-align: center;
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 16px;
}

/* Invite grid */
.invite-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin: 60px 0;
}
.invite-card {
    background: white;
    border-radius: 28px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
    transition: 0.2s;
}
.invite-card i {
    font-size: 2.2rem;
    color: #F26B4F;
    margin-bottom: 16px;
}
.invite-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}
.invite-card p {
    color: #3E5A6B;
    margin-bottom: 20px;
}

/* Footer */
footer {
    background-color: #1E2F3A;
    color: #E9F0F3;
    padding: 48px 0 24px;
    margin-top: 40px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 32px;
}
.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #F26B4F;
}
.footer-col p, .footer-col a {
    color: #cfdfe6;
    text-decoration: none;
    line-height: 1.8;
    display: block;
}
.footer-col a:hover {
    color: #F26B4F;
}
.social-icons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.social-icons a {
    font-size: 1.4rem;
}
.copyright {
    text-align: center;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background-color: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    z-index: 999;
    transition: 0.2s;
}
.whatsapp-float i {
    font-size: 1.8rem;
}
.whatsapp-text {
    font-size: 1rem;
}
.whatsapp-float:hover {
    background-color: #20b859;
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        background: #FEF9EF;
        padding: 20px 0;
        gap: 20px;
        text-align: center;
    }
    .nav-links.active {
        display: flex;
    }
    .hero {
        height: 400px;
    }
    .hero-content h2 {
        font-size: 2rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .reviews-carousel {
        flex-direction: column;
        align-items: center;
    }
    .whatsapp-float {
        padding: 10px 16px;
        bottom: 16px;
        right: 16px;
    }
    .whatsapp-text {
        font-size: 0.9rem;
    }
}

