:root {
    /* Colors extracted from your Logo */
    --primary-green: #009640; /* The main green in BRASK */
    --primary-orange: #f37021; /* The orange in International */
    --light-green: #6cc24a; /* The lighter green accent */
    --dark-text: #333333;
    --light-text: #666666;
    --white: #ffffff;
    --bg-light: #f9f9f9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    color: var(--dark-text);
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-orange { color: var(--primary-orange); }
.text-green { color: var(--primary-green); }
.bg-light { background-color: var(--bg-light); }
.section-padding { padding: 80px 0; }

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary {
    background-color: var(--primary-orange);
    color: var(--white);
    border: 2px solid var(--primary-orange);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-orange);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    margin-left: 10px;
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-green);
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 20px;
}

.social-links a {
    color: var(--white);
    margin-left: 15px;
}

/* Navbar */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    display: block;
    max-height: 70px;
    width: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-orange);
}

.btn-nav {
    background-color: var(--primary-green);
    color: white !important;
    padding: 8px 20px;
    border-radius: 4px;
}

.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 85vh;
    background: url('https://images.unsplash.com/photo-1523240795612-9a054b0db644?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 150, 64, 0.7); /* Green overlay matching logo */
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero h1 span {
    color: #ffbb7d; /* Lighter orange for contrast on green */
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Stats */
.stats {
    display: flex;
    justify-content: space-around;
    background: var(--white);
    padding: 40px;
    margin-top: -50px;
    position: relative;
    z-index: 3;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.stat-box {
    text-align: center;
}

.stat-box i {
    font-size: 40px;
    color: var(--primary-orange);
    margin-bottom: 10px;
}

.stat-box h3 {
    font-size: 2rem;
    color: var(--primary-green);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.sub-heading {
    color: var(--primary-orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 10px;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.check-list {
    list-style: none;
    margin: 20px 0;
}

.check-list li {
    margin-bottom: 10px;
    font-size: 18px;
}

.check-list i {
    color: var(--primary-green);
    margin-right: 10px;
}

/* Services */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

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

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-bottom: 4px solid var(--primary-green);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card i {
    font-size: 50px;
    color: var(--primary-green);
    margin-bottom: 20px;
}

/* Destinations */
.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.dest-card {
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.dest-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    color: white;
}

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact-form button {
    border: none;
    cursor: pointer;
}

.info-item {
    background: var(--white);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.info-item i {
    font-size: 24px;
    color: var(--primary-orange);
    margin-bottom: 10px;
}

/* Footer */
footer {
    background: #222;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-links ul {
    list-style: none;
    margin-top: 20px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    line-height: 2;
}

.social-icons a {
    color: white;
    font-size: 20px;
    margin-right: 15px;
}

.copyright {
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 20px;
    color: #777;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .top-bar { display: none; }
    
    .nav-links {
        position: fixed;
        right: -100%;
        top: 70px;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding-top: 50px;
    }

    .nav-links.nav-active {
        right: 0;
    }

    .nav-links li {
        margin: 20px 0;
    }

    .hamburger {
        display: block;
        color: var(--primary-green);
    }

    .hero h1 { font-size: 2.5rem; }
    
    .about-grid, .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .stats {
        flex-direction: column;
        gap: 20px;
    }
}