/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #7f8c8d;
    --accent-color: #e8dcc4;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --white: #ffffff;
    --bg-light: #f8f9fa;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

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

ul {
    list-style: none;
}

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

/* ===================================
   NAVIGATION
   =================================== */
/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #7f8c8d;
    --accent-color: #e8dcc4;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --white: #ffffff;
    --bg-light: #f8f9fa;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    
    --transition: all 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===================================
   NAVIGATION (UPDATED WITH DROPDOWN)
   =================================== */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(6px);
    z-index: 1000;
    padding: 20px 0;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.navbar.scrolled {
    position: fixed;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 90px;
    padding: 5px 10px;
    border-radius: 8px;
    /* background removed for transparent logo */
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    font-size: 15px;
    color: var(--white);
    transition: var(--transition);
}

.navbar.scrolled .nav-links a {
    color: var(--text-dark);
}

/* ===== DROPDOWN ===== */
.nav-links .dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255,255,255,0.98);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 8px 0;
    margin-top: 8px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}


.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
}

.dropdown-menu a:hover {
    background: #f5f5f5;
}

/* ===== BUTTON ===== */
.contact-btn {
    border: 2px solid var(--white);
    padding: 12px 30px;
    border-radius: 50px;
}

.navbar.scrolled .contact-btn {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* ===== HAMBURGER ===== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--white);
}

/* ===================================
   MOBILE NAV + DROPDOWN
   =================================== */
@media (max-width: 768px) {

    .hamburger { display: flex; }

    .nav-links {
        position: fixed;
        top: 90px;
        right: -100%;
        width: 70%;
        height: calc(100vh - 90px);
        background: var(--white);
        flex-direction: column;
        padding: 40px 30px;
        gap: 20px;
        transition: var(--transition);
    }

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

    .nav-links a {
        color: var(--text-dark) !important;
    }
    .dropdown-menu a {
    color: #2c3e50;   /* dark text */
    background: transparent;
}

@media (min-width: 769px) {
    .dropdown-menu a {
        color: #2c3e50;
    }
}


    /* MOBILE DROPDOWN */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(0,0,0,0.05);
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        margin: 0;
    }

    .dropdown.active .dropdown-menu {
        max-height: 500px;
        padding: 5px 0;
    }

    .dropdown-menu a {
        padding: 12px 25px;
    }
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('kilimanjaro_elephants.jpeg') center/cover no-repeat;
    background-color: #d4c5b0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 400;
    margin-bottom: 20px;
    text-transform: lowercase;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 300;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* ===================================
   INTRO SECTION
   =================================== */
.intro-section {
    padding: 80px 0;
    background: var(--white);
}

.intro-text {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 25px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services-section {
    padding: 80px 0 100px;
    background: var(--bg-light);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 600;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 500px;
}

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

.service-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image-wrapper img {
    transform: scale(1.05);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px 30px 35px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.05) 50%, rgba(0,0,0,0.3) 100%);
}

.service-overlay h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--white);
    text-align: left;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    margin: 0;
}

.more-details-btn {
    align-self: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid var(--white);
    color: var(--primary-color);
    padding: 14px 45px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.more-details-btn:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about-section {
    background: var(--primary-color);
    color: var(--white);
    padding: 0;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.about-images {
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    display: flex;
    gap: 20px;
    padding: 40px;
}

.about-image-left,
.about-image-right {
    flex: 1;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.about-image-left img,
.about-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content {
    margin-left: 50%;
    padding: 80px 80px 80px 60px;
    max-width: 650px;
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    margin-bottom: 30px;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.95;
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */
.testimonials-section {
    padding: 80px 0 100px;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    text-align: center;
    transition: var(--transition);
}

.testimonial-image-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 30px;
    border: 5px solid var(--bg-light);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    padding: 0 20px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: center;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    margin-top: 15px;
    text-align: center;
}

/* ===================================
   FOOTER - Thin & Minimal (matches About Us page)
   =================================== */
.footer {
    background: #0f0f0f;
    color: #ddd;
    padding: 45px 5vw 30px;           /* thin vertical spacing */
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;                        /* tight but comfortable spacing */
}

.footer-logo {
    height: 46px;                     /* smaller, more elegant logo size */
    width: auto;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;                        /* balanced link spacing */
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.96rem;               /* slightly smaller & modern */
    transition: color 0.3s ease;
}

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

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
    .about-images {
        width: 45%;
    }

    .about-content {
        margin-left: 45%;
        padding: 60px 40px 60px 40px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 90px;
        right: -100%;
        width: 70%;
        height: calc(100vh - 90px);
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 50px 30px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        gap: 30px;
    }

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

    .nav-links a {
        color: var(--text-dark) !important;
    }

    .contact-btn {
        border-color: var(--primary-color) !important;
        color: var(--primary-color) !important;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-card {
        height: 400px;
    }

    .service-overlay {
        padding: 30px 25px 30px;
    }

    .service-overlay h3 {
        font-size: 1.9rem;
    }

    .about-section {
        flex-direction: column;
    }

    .about-images {
        position: relative;
        width: 100%;
        height: 400px;
        padding: 20px;
    }

    .about-content {
        margin-left: 0;
        padding: 50px 30px;
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .footer-bottom {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 20px;
    }

    .intro-section {
        padding: 50px 0;
    }

    .intro-text {
        font-size: 15px;
    }

    .services-section {
        padding: 50px 0;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .service-image-wrapper {
        height: 250px;
    }

    .service-card {
        height: 350px;
    }

    .service-overlay {
        padding: 25px 20px 25px;
    }

    .service-overlay h3 {
        font-size: 1.7rem;
    }

    .more-details-btn {
        padding: 12px 35px;
        font-size: 14px;
    }

    .service-content {
        padding: 25px;
    }

    .about-images {
        height: 300px;
        gap: 10px;
        padding: 15px;
    }

    .footer {
        padding: 40px 20px 20px;
    }
}

