/* === Global Styles === */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('fonts/poppins-300.ttf') format('truetype');
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/poppins-400.ttf') format('truetype');
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('fonts/poppins-600.ttf') format('truetype');
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('fonts/poppins-700.ttf') format('truetype');
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #F5F5DC 0%, #D4A373 100%);
    color: #333;
    line-height: 1.6;
}

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

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    display: block;
    border-radius: 8px;
}

/* === Header / Navbar === */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #2F4F2F 0%, #1B4332 100%);
    color: white;
    padding: 20px 40px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

header h1 {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 1px;
}

header nav a {
    margin-left: 25px;
    color: white;
    font-weight: 500;
    position: relative;
}

header nav a:hover {
    color: #DAA520;
}

header nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #DAA520;
    transition: width 0.3s ease;
}

header nav a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    padding: 6px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    margin: 5px 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.lang-btn {
    background: #DAA520;
    color: #2F4F2F;
    border: 2px solid #DAA520;
    padding: 8px 15px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 20px;
}

.lang-btn:hover {
    background: transparent;
    color: #DAA520;
}

/* === Hero Section === */
.hero {
    background-image: linear-gradient(rgba(0,0,0,0.48), rgba(0,0,0,0.48)), url("images/home-hero.jpg");
    background-size: cover;
    background-position: center;
    color: white;
    padding: 150px 20px;
    text-align: center;
    position: relative;
}

.hero h2 {
    font-size: 52px;
    margin: 0 0 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 22px;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero button {
    background: #DAA520;
    color: #2F4F2F;
    border: 2px solid #DAA520;
    padding: 18px 35px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 10px;
}

.hero button:hover {
    background: transparent;
    color: #DAA520;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(218,165,32,0.3);
}

.hero a {
    color: inherit;
    text-decoration: none;
}

/* === Page Title Sections === */
.page-title {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #e9f5f2 0%, #f0f8f0 100%);
    margin-top: -20px;
    position: relative;
}

.page-title h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2F4F2F;
    font-weight: 700;
}

.page-title p {
    font-size: 20px;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

/* === Journey Sample Section === */
.journey-sample {
    max-width: 1080px;
    margin: 40px auto 0;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    padding: 36px 28px;
}

.journey-sample h2 {
    margin: 0 0 12px;
    color: #2F4F2F;
    font-size: 32px;
}

.journey-sample p {
    margin: 0 0 20px;
    color: #4d4d4d;
    font-size: 17px;
}

.journey-list {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 10px;
}

.journey-list li {
    color: #2f2f2f;
}

/* === Packages / Cards === */
.packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    padding: 60px 40px;
    max-width: 1400px;
    margin: auto;
}

.package-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
}

.package-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.package-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.package-card:hover img {
    transform: scale(1.05);
}

.package-info {
    padding: 25px;
}

.package-info h3 {
    margin: 0 0 15px 0;
    font-size: 24px;
    color: #2F4F2F;
    font-weight: 600;
}

.package-info p {
    margin: 0 0 15px 0;
    color: #666;
    font-size: 16px;
}

.price {
    display: block;
    margin: 15px 0;
    font-weight: 700;
    font-size: 22px;
    color: #DAA520;
}

.package-info button {
    background: linear-gradient(135deg, #2F4F2F 0%, #1B4332 100%);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    width: 100%;
}

.package-info button:hover {
    background: #DAA520;
    color: #2F4F2F;
    transform: translateY(-2px);
}

/* === Why Section === */
.why {
    background: white;
    padding: 80px 20px;
    text-align: center;
    margin: 40px 0;
}

.why h2 {
    font-size: 38px;
    color: #2F4F2F;
    margin-bottom: 40px;
    font-weight: 700;
}

.why ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.why li {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-width: 250px;
    transition: transform 0.3s ease;
}

.why li:hover {
    transform: translateY(-5px);
}

.why li::before {
    content: "✓";
    color: #DAA520;
    font-size: 24px;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

/* === Safaris Section === */
.safaris {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f0f8f0 0%, #e9f5f2 100%);
    text-align: center;
}

.safaris h2 {
    font-size: 38px;
    color: #2F4F2F;
    margin-bottom: 50px;
    font-weight: 700;
}

.serengeti-card, .ngorongoro-card {
    background: white;
    margin: 20px auto;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    max-width: 600px;
    transition: transform 0.3s ease;
}

.serengeti-card:hover, .ngorongoro-card:hover {
    transform: translateY(-5px);
}

.serengeti-card h3, .ngorongoro-card h3 {
    color: #2F4F2F;
    font-size: 28px;
    margin-bottom: 15px;
}

.serengeti-card p, .ngorongoro-card p {
    color: #666;
    font-size: 18px;
}

/* === How Booking Works === */
.booking-flow {
    max-width: 1200px;
    margin: 40px auto;
    padding: 70px 24px;
    background: white;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.booking-flow h2 {
    text-align: center;
    font-size: 38px;
    color: #2F4F2F;
    margin: 0 0 14px;
    font-weight: 700;
}

.booking-intro {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 36px;
    color: #4f5a52;
    font-size: 18px;
}

.booking-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.booking-step {
    border: 1px solid #e7ece8;
    border-radius: 12px;
    padding: 22px;
    background: #fcfdfc;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #DAA520;
    color: #1f3a2c;
    font-weight: 700;
    margin-bottom: 12px;
}

.booking-step h3 {
    margin: 0 0 10px;
    font-size: 22px;
    color: #1f3a2c;
}

.booking-step p {
    margin: 0;
    color: #4f5750;
    font-size: 16px;
    line-height: 1.65;
}

.booking-note {
    margin-top: 24px;
    border-left: 4px solid #DAA520;
    background: #f8faf8;
    padding: 16px 18px;
    border-radius: 8px;
}

.booking-note p {
    margin: 0;
    color: #2f3e34;
    font-size: 15px;
}

/* === Contact Form === */
section.contact {
    max-width: 800px;
    margin: auto;
    padding: 80px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    margin: 40px auto;
}

section.contact h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 40px;
    color: #2F4F2F;
    font-weight: 700;
}

section.contact form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

section.contact form input[type="text"],
section.contact form input[type="email"],
section.contact form input[type="date"],
section.contact form input[type="number"] {
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

section.contact form input:focus {
    border-color: #DAA520;
    outline: none;
}

section.contact form textarea {
    grid-column: 1 / -1;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    resize: vertical;
    min-height: 120px;
    transition: border-color 0.3s ease;
}

section.contact form textarea:focus {
    border-color: #DAA520;
    outline: none;
}

section.contact form button {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #2F4F2F 0%, #1B4332 100%);
    color: white;
    border: none;
    padding: 18px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

section.contact form button:hover {
    background: #DAA520;
    color: #2F4F2F;
    transform: translateY(-2px);
}

/* === Contact Page Unique Layout === */
.contact-hero {
    text-align: center;
    padding: 64px 20px 24px;
    max-width: 980px;
    margin: 0 auto;
}

.contact-hero h2 {
    margin: 0 0 12px;
    color: #1f3a2c;
    font-size: 42px;
}

.contact-hero p {
    margin: 0 auto;
    max-width: 780px;
    color: #435146;
    font-size: 18px;
}

.contact-unique {
    max-width: 1200px;
    margin: 10px auto 30px;
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 28px;
    padding: 0 20px;
}

.contact-info-panel,
.contact-form-panel {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(18, 48, 30, 0.09);
    overflow: hidden;
}

.contact-info-panel {
    display: grid;
    gap: 0;
}

.info-card {
    padding: 26px;
}

.info-card + .info-card {
    border-top: 1px solid #ececec;
}

.info-card h3,
.contact-form-panel h3 {
    margin: 0 0 12px;
    color: #1f3a2c;
    font-size: 24px;
}

.info-card ul {
    margin: 0;
    padding-left: 20px;
    display: grid;
    gap: 8px;
}

.info-card p {
    color: #4b4b4b;
    margin: 10px 0;
}

.contact-form-panel {
    padding: 26px;
}

.contact-form-panel form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form-panel label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #1f3a2c;
}

.contact-form-panel input,
.contact-form-panel textarea {
    width: 100%;
    box-sizing: border-box;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    padding: 13px 14px;
    font-size: 15px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form-panel textarea {
    min-height: 140px;
    resize: vertical;
    grid-column: 1 / -1;
}

.contact-form-panel input:focus,
.contact-form-panel textarea:focus {
    border-color: #DAA520;
    outline: none;
    box-shadow: 0 0 0 3px rgba(218, 165, 32, 0.16);
}

.contact-form-panel button {
    grid-column: 1 / -1;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #2F4F2F 0%, #1B4332 100%);
    color: #fff;
    padding: 16px 18px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease;
}

.contact-form-panel button:hover {
    background: #DAA520;
    color: #2F4F2F;
    transform: translateY(-2px);
}

/* === Footer === */
footer {
    background: linear-gradient(135deg, #2F4F2F 0%, #1B4332 100%);
    color: white;
    text-align: center;
    padding: 40px 20px;
    margin-top: 60px;
}

footer p {
    margin: 0;
    font-size: 18px;
}

/* === Responsive Adjustments === */
@media (max-width: 768px) {
    header {
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
    }

    .menu-toggle {
        display: block;
        order: 1;
    }

    header h1 {
        font-size: 28px;
        margin: 0;
        order: 2;
        flex: 1;
        text-align: left;
        padding-left: 10px;
    }

    .lang-btn {
        order: 3;
        margin-left: 0;
    }

    header nav {
        order: 4;
        width: 100%;
        display: none;
        flex-direction: column;
        padding-top: 12px;
        gap: 2px;
    }

    header.nav-open nav {
        display: flex;
    }

    header nav a {
        margin: 0;
        text-align: left;
        padding: 8px 0;
    }

    header.nav-open .menu-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    header.nav-open .menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    header.nav-open .menu-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero {
        padding: 100px 20px;
    }
    .hero h2 {
        font-size: 36px;
    }
    .hero p {
        font-size: 18px;
    }
    .hero button {
        padding: 15px 25px;
        font-size: 18px;
        margin: 5px;
    }
    .packages {
        padding: 40px 20px;
        grid-template-columns: 1fr;
    }
    .journey-sample {
        margin: 24px 20px 0;
        padding: 24px 18px;
    }
    .journey-sample h2 {
        font-size: 26px;
    }
    .why ul {
        flex-direction: column;
        gap: 20px;
    }
    .booking-flow {
        margin: 24px 20px;
        padding: 44px 18px;
    }
    .booking-flow h2 {
        font-size: 30px;
    }
    .booking-intro {
        font-size: 16px;
        margin-bottom: 24px;
    }
    .booking-steps {
        grid-template-columns: 1fr;
    }
    section.contact form {
        grid-template-columns: 1fr;
    }
    .contact-hero h2 {
        font-size: 32px;
    }
    .contact-unique {
        grid-template-columns: 1fr;
    }
    .contact-form-panel form {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    header {
        padding: 12px 14px;
    }

    header h1 {
        font-size: 24px;
        margin: 0;
        padding-left: 8px;
    }

    header nav {
        gap: 0;
    }

    header nav a {
        margin: 0;
        font-size: 15px;
    }

    .lang-btn {
        margin-left: 0;
        padding: 6px 12px;
        font-size: 13px;
    }

    .hero {
        padding: 78px 16px;
    }

    .hero h2 {
        font-size: 30px;
    }

    .hero p {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .hero button {
        width: 100%;
        max-width: 320px;
        margin: 6px 0;
        font-size: 16px;
        padding: 14px 16px;
    }

    .page-title {
        padding: 56px 16px;
        margin-top: 0;
    }

    .page-title h2 {
        font-size: 30px;
    }

    .page-title p {
        font-size: 16px;
    }

    .journey-sample,
    .booking-flow,
    .contact-unique,
    section.contact,
    .about-container,
    .legal-page {
        margin-left: 12px;
        margin-right: 12px;
    }

    .contact-hero h2,
    .booking-flow h2,
    .why h2,
    .safaris h2 {
        font-size: 28px;
    }

    .about-hero h1 {
        font-size: 30px;
    }

    .about-tagline {
        font-size: 16px;
    }
}

/* === About Page Styles === */
.about-section {
    padding: 0;
}

.about-hero {
    background: linear-gradient(135deg, #2F4F2F 0%, #1B4332 100%);
    color: white;
    padding: 100px 40px;
    text-align: center;
}

.about-hero h1 {
    font-size: 52px;
    margin: 0 0 20px;
    font-weight: 700;
}

.about-tagline {
    font-size: 24px;
    margin: 0;
    font-weight: 300;
    letter-spacing: 1px;
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 40px;
}

.about-story {
    background: white;
    padding: 60px 50px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    margin-bottom: 80px;
}

.about-story h2 {
    font-size: 42px;
    color: #2F4F2F;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

.story-block {
    margin-bottom: 40px;
    border-left: 5px solid #DAA520;
    padding-left: 30px;
}

.story-block h3 {
    font-size: 28px;
    color: #1B4332;
    margin: 0 0 15px 0;
    font-weight: 600;
}

.story-block p {
    color: #444;
    font-size: 18px;
    line-height: 1.8;
    margin: 0;
}

.trust-section {
    background: linear-gradient(135deg, #f0f8f0 0%, #e9f5f2 100%);
    padding: 80px 40px;
    border-radius: 15px;
    margin-bottom: 80px;
}

.trust-section h2 {
    font-size: 42px;
    color: #2F4F2F;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.trust-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #DAA520;
}

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

.trust-card h3 {
    font-size: 22px;
    color: #1B4332;
    margin: 0 0 15px 0;
    font-weight: 600;
}

.trust-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.about-mission {
    background: white;
    padding: 60px 50px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.about-mission h2 {
    font-size: 42px;
    color: #2F4F2F;
    margin-bottom: 30px;
    font-weight: 700;
}

.about-mission > p {
    font-size: 18px;
    color: #444;
    margin-bottom: 30px;
}

.mission-list {
    list-style: none;
    padding: 0;
}

.mission-list li {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
}

.mission-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #DAA520;
    font-weight: bold;
    font-size: 24px;
}

.about-mission > p:last-child {
    font-style: italic;
    color: #1B4332;
    font-size: 18px;
    margin-top: 40px;
}

/* === Legal Pages === */
.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
    background: white;
}

.legal-page h1 {
    color: #2F4F2F;
    font-size: 38px;
    margin-bottom: 40px;
    font-weight: 700;
}

.legal-page h2 {
    color: #1B4332;
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}

.legal-page h3 {
    color: #2F4F2F;
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 600;
}

.legal-page p {
    color: #444;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-page ul {
    color: #444;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    margin-left: 25px;
}

.legal-page li {
    margin-bottom: 10px;
}

.legal-links {
    text-align: center;
    padding: 20px 0;
    margin-top: 30px;
    border-top: 1px solid #ddd;
    font-size: 14px;
}

.legal-links a {
    color: #2F4F2F;
    font-weight: 600;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #DAA520;
}

footer .legal-links {
    margin-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.3);
    padding: 15px 0 0;
}

footer .legal-links a {
    color: white;
}

footer .legal-links a:hover {
    color: #DAA520;
}

/* === Responsive for About Page === */
@media (max-width: 768px) {
    .about-hero {
        padding: 60px 20px;
    }

    .about-hero h1 {
        font-size: 36px;
    }

    .about-tagline {
        font-size: 18px;
    }

    .about-container {
        padding: 40px 20px;
    }

    .about-story {
        padding: 40px 25px;
    }

    .about-story h2 {
        font-size: 28px;
    }

    .story-block {
        margin-bottom: 30px;
    }

    .story-block h3 {
        font-size: 22px;
    }

    .story-block p {
        font-size: 16px;
    }

    .trust-section {
        padding: 40px 20px;
    }

    .trust-section h2 {
        font-size: 28px;
    }

    .about-mission {
        padding: 40px 25px;
    }

    .legal-page {
        padding: 40px 20px;
    }

    .legal-page h1 {
        font-size: 28px;
    }

    .legal-page h2 {
        font-size: 22px;
    }
}