/* --- GLOBAL STYLES & RESET --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* --- TOP CONTACT BAR --- */
.top-bar {
    background-color: #1a252f;
    color: #ecf0f1;
    padding: 10px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.contact-info {
    display: flex;
    gap: 20px;
}

.contact-info a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #bdc3c7;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: #e67e22;
}

.top-socials {
    display: flex;
    gap: 15px;
}

.top-socials a {
    color: #bdc3c7;
    transition: color 0.3s;
}

.top-socials a:hover {
    color: #e67e22;
}

/* --- MAIN HEADER & NAVIGATION --- */

        /* MAIN HEADER */
        header {
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .main-header {
            padding: 15px 5%;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: var(--secondary);
        }
        
        .logo-icon {
            width: 55px;
            height: 55px;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: white;
        }
        
        .logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            font-weight: 700;
            line-height: 1;
        }
        
        .logo-text span {
            display: block;
        }
        
        .logo-text .evenest {
            color: var(--secondary);
        }
        
        .logo-text .tours {
            color: var(--primary);
            font-size: 24px;
        }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 35px;
            align-items: center;
        }
        
        nav ul li {
            position: relative;
        }
        
        nav ul li a {
            text-decoration: none;
            color: var(--secondary);
            font-weight: 500;
            font-size: 16px;
            transition: color 0.3s;
        }
        
        nav ul li a:hover {
            color: var(--primary);
        }
        
        /* DROPDOWN */
        .dropdown .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            box-shadow: 0 10px 20px rgba(0,0,0,0.15);
            min-width: 200px;
            padding: 15px 0;
            border-radius: 8px;
            z-index: 100;
        }
        
        .dropdown:hover .dropdown-menu {
            display: block;
        }
        
        .dropdown-menu li {
            padding: 8px 25px;
        }
        
        .dropdown-menu li a {
            font-size: 15px;
            color: #444;
        }
        
        .enquiry-btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 16px;
        }
        
        .enquiry-btn:hover {
            background: #e67e00;
            transform: translateY(-3px);
        }

#navbar ul li a:hover, 
#navbar ul li a.active {
    color: #e67e22;
}


/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.enquiry-btn {
    background-color: #e67e22;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.enquiry-btn:hover {
    background-color: #d35400;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #2c3e50;
}

/* --- HERO SECTION --- */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 5%;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1516426122078-c23e76319801?auto=format&fit=crop&q=80&w=1600') no-repeat center center/cover;
    color: #ffffff;
    min-height: 80vh;
}

.hero-content {
    max-width: 600px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(230, 126, 34, 0.9);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.badge i {
    color: #f1c40f;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #ecf0f1;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.hero-highlights span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-highlights i {
    color: #2ecc71;
}

.buttons {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background-color: #e67e22;
    color: #ffffff;
    border: none;
    padding: 12px 25px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s;
}

.btn-primary:hover {
    background-color: #d35400;
}

.btn-video {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 1px solid #ffffff;
    padding: 12px 25px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(5px);
    transition: background 0.3s;
}

.btn-video:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.hero-image-wrapper {
    max-width: 450px;
    display: none;
}

/* --- FEATURES STRIP --- */
.features-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 40px 5%;
    background-color: #ffffff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.feature-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #e67e22;
}

.feature-box i {
    font-size: 2.5rem;
    color: #e67e22;
}

.feature-box h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #2c3e50;
}

.feature-box p {
    font-size: 0.9rem;
    color: #666;
}

/* --- SECTION TITLES GENERAL --- */
.section-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.section-title h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.section-title p {
    color: #666;
    font-size: 1rem;
}

/* --- WHY CHOOSE US & ACCORDION --- */
.why-choose-us {
    padding: 80px 5%;
    background-color: #ffffff;
}

.why-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.why-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    object-fit: cover;
    height: 400px;
}

.why-accordion .accordion-item {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-header {
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: #f8f9fa;
}

.accordion-header h3 {
    font-size: 1.05rem;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 10px;
}

.accordion-header h3 i {
    color: #e67e22;
}

.accordion-header .arrow {
    transition: transform 0.3s ease;
}

.accordion-body {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #555;
    font-size: 0.95rem;
}

.accordion-item.active {
    border-color: #e67e22;
    box-shadow: 0 5px 15px rgba(230,126,34,0.08);
}

.accordion-item.active .accordion-header .arrow {
    transform: rotate(180deg);
    color: #e67e22;
}

.accordion-item.active .accordion-body {
    max-height: 150px;
    padding: 0 20px 20px 20px;
}

/* --- MISSION & VISION SECTION --- */
.mission-vision-section {
    padding: 80px 5%;
    background-color: #f4f6f8;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mv-card {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-5px);
}

.mv-icon {
    font-size: 2.5rem;
    color: #e67e22;
    margin-bottom: 20px;
}

.mv-card h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.mv-card p {
    color: #666;
    font-size: 0.95rem;
}

/* --- EXPERIENCE & AWARDS / COMMENTS --- */
.experience-awards {
    padding: 80px 5%;
    background-color: #ffffff;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    background: linear-gradient(135deg, #1a252f, #2c3e50);
    padding: 50px;
    border-radius: 12px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 60px;
}

.stat-box h2 {
    font-size: 2.8rem;
    color: #e67e22;
    margin-bottom: 5px;
}

.stat-box p {
    font-size: 1rem;
    color: #bdc3c7;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #e67e22;
    box-shadow: 0 3px 10px rgba(0,0,0,0.03);
}

.testimonial-card .stars {
    color: #f39c12;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    color: #444;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.testimonial-card h4 {
    color: #2c3e50;
    font-size: 0.95rem;
}

/* --- OUR TEAM SECTION --- */
.our-team-section {
    padding: 80px 5%;
    background-color: #f4f6f8;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.team-card {
    background-color: #ffffff;
    padding: 40px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-avatar {
    width: 90px;
    height: 90px;
    background-color: #fdf3e7;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px auto;
    font-size: 2.2rem;
    color: #e67e22;
}

.team-card h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 5px;
}

.team-card .role {
    display: block;
    font-size: 0.85rem;
    color: #e67e22;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.team-card p {
    font-size: 0.9rem;
    color: #666;
}

/* --- FOOTER --- */
footer {
    background-color: #1a252f;
    color: #bdc3c7;
    padding: 60px 5% 20px 5%;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: #e67e22;
}

.footer-col p {
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col a {
    display: block;
    font-size: 0.9rem;
    color: #bdc3c7;
    margin-bottom: 10px;
    transition: color 0.3s, transform 0.3s;
}

.footer-col a:hover {
    color: #e67e22;
    transform: translateX(5px);
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.footer-socials a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 50%;
    color: #ffffff;
    transition: background 0.3s, transform 0.3s;
}

.footer-socials a:hover {
    background-color: #e67e22;
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    font-size: 0.85rem;
    color: #95a5a6;
}

/* --- MODALS --- */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-content {
    background-color: #ffffff;
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    animation: modalSlide 0.3s ease;
}

@keyframes modalSlide {
    from {transform: translateY(-50px); opacity: 0;}
    to {transform: translateY(0); opacity: 1;}
}

.modal-header {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.close {
    font-size: 1.5rem;
    cursor: pointer;
    color: #ffffff;
    transition: color 0.3s;
}

.close:hover {
    color: #e67e22;
}

.modal-body {
    padding: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #2c3e50;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus, 
.form-group textarea:focus {
    border-color: #e67e22;
}

.submit-btn {
    width: 100%;
    background-color: #e67e22;
    color: #ffffff;
    border: none;
    padding: 12px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background-color: #d35400;
}

/* Video Modal Styling */
.video-content {
    max-width: 800px;
    background: transparent;
    box-shadow: none;
}

.video-close {
    position: absolute;
    top: -30px;
    right: 0;
    font-size: 2rem;
    color: #ffffff;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

/* --- RESPONSIVE DESIGN FOR MOBILE --- */
@media (max-width: 900px) {
    .top-bar {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    #navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }

    #navbar.active {
        max-height: 500px;
        overflow-y: auto; /* Inaruhusu scroll kama menyu ni ndefu */
    }

    #navbar ul {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 15px;
    }

    #navbar ul li {
        width: 100%;
    }

    /* Mobile Responsive for Dropdown */
    .dropdown-menu {
        position: static;
        box-shadow: none;
        padding-left: 15px;
        display: none !important; /* Inajificha kabisa isipofunguliwa na JS */
        background-color: #f8f9fa;
        border-radius: 4px;
        margin-top: 5px;
        min-width: 100%;
    }

    .dropdown-menu.show {
        display: flex !important;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero {
        padding: 50px 5%;
    }

    .why-container {
        grid-template-columns: 1fr;
    }
    
    .why-image img {
        height: 250px;
    }
}
/* --- ABOUT PAGE STYLES --- */
.about-hero {
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), url('https://images.unsplash.com/photo-1547471080-7cc2caa01a7e?auto=format&fit=crop&q=80&w=1600') no-repeat center center/cover;
    padding: 100px 5%;
    text-align: center;
    color: #ffffff;
}

.about-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.about-hero-content p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    color: #ecf0f1;
}

.who-we-are {
    padding: 90px 5%;
    background-color: #ffffff;
}

.about-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.sub-badge {
    display: inline-block;
    color: #e67e22;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.about-text-content h2 {
    font-size: 2.3rem;
    color: #2c3e50;
    line-height: 1.3;
    margin-bottom: 20px;
}

.about-text-content p {
    color: #555;
    margin-bottom: 15px;
    font-size: 1rem;
}

.about-features-list {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-point {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #2c3e50;
}

.feature-point i {
    color: #2ecc71;
    font-size: 1.2rem;
}

.about-image-wrapper {
    position: relative;
}

.creative-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    height: 450px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.creative-img:hover {
    transform: scale(1.02);
}

.floating-experience-box {
    position: absolute;
    bottom: -25px;
    left: -25px;
    background-color: #e67e22;
    color: #ffffff;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(230,126,34,0.3);
}

.floating-experience-box h3 {
    font-size: 2.2rem;
    line-height: 1;
    margin-bottom: 5px;
}

.floating-experience-box p {
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
}

.about-accordion-section {
    padding: 90px 5%;
    background-color: #f8f9fa;
}

/* CTA BANNER */
.cta-banner {
    background: linear-gradient(135deg, #1a252f, #2c3e50);
    padding: 80px 5%;
    text-align: center;
    color: #ffffff;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.1rem;
    color: #bdc3c7;
    margin-bottom: 25px;
}

/* Responsive kwa simu */
@media (max-width: 900px) {
    .about-grid-container {
        grid-template-columns: 1fr;
    }
    .floating-experience-box {
        bottom: 15px;
        left: 15px;
        padding: 15px;
    }
    .about-hero-content h1 {
        font-size: 2.2rem;
    }
}
/* --- CONTACT PAGE STYLES --- */
.contact-hero {
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), url('https://images.unsplash.com/photo-1516426122078-c23e76319801?auto=format&fit=crop&q=80&w=1600') no-repeat center center/cover;
    padding: 100px 5%;
    text-align: center;
    color: #ffffff;
}

.contact-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.contact-hero-content p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    color: #ecf0f1;
}

.contact-section {
    padding: 90px 5%;
    background-color: #f8f9fa;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.contact-info-box h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin: 15px 0 20px 0;
    line-height: 1.3;
}

.contact-info-box p {
    color: #555;
    margin-bottom: 30px;
}

.info-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.icon-wrap {
    width: 50px;
    height: 50px;
    background-color: #fdf3e7;
    color: #e67e22;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 5px;
}

.info-item p, .info-item a {
    color: #666;
    font-size: 0.95rem;
}

.info-item a:hover {
    color: #e67e22;
}

.social-connect h4 {
    color: #2c3e50;
    font-size: 1.1rem;
}

/* Contact Form Box Styling */
.contact-form-box {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border-top: 5px solid #e67e22;
}

.contact-form-box h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.contact-form-box p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.main-contact-form .form-group {
    margin-bottom: 20px;
}

.main-contact-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.main-contact-form input,
.main-contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s;
    background-color: #fdfdfd;
}

.main-contact-form input:focus,
.main-contact-form textarea:focus {
    border-color: #e67e22;
    background-color: #ffffff;
}

/* Responsive kwa simu */
@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    .contact-hero-content h1 {
        font-size: 2.2rem;
    }
    .contact-form-box {
        padding: 25px;
    }
}

/* --- FAQ PAGE STYLES --- */
.faq-hero {
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), url('https://images.unsplash.com/photo-1516426122078-c23e76319801?auto=format&fit=crop&q=80&w=1600') no-repeat center center/cover;
    padding: 100px 5%;
    text-align: center;
    color: #ffffff;
}

.faq-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.faq-hero-content p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    color: #ecf0f1;
}

.faq-section {
    padding: 90px 5%;
    background-color: #f8f9fa;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-accordion-wrapper {
    margin-top: 30px;
}

/* Ujumbe maalum kama hakuna data */
.no-faq-box {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-left: 5px solid #e67e22;
    padding: 50px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    margin-top: 30px;
}

.no-faq-box i {
    font-size: 3rem;
    color: #e67e22;
    margin-bottom: 15px;
}

.no-faq-box h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.no-faq-box p {
    color: #666;
    max-width: 600px;
    margin: 0 auto 20px auto;
    font-size: 1rem;
}

/* Responsive kwa simu */
@media (max-width: 900px) {
    .faq-hero-content h1 {
        font-size: 2.2rem;
    }
}
/* --- PACKAGES PAGE STYLES --- */
.packages-hero {
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), url('https://images.unsplash.com/photo-1547471080-7cc2caa01a7e?auto=format&fit=crop&q=80&w=1600') no-repeat center center/cover;
    padding: 100px 5%;
    text-align: center;
    color: #ffffff;
}

.packages-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.packages-hero-content p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    color: #ecf0f1;
}

.packages-section {
    padding: 90px 5%;
    background-color: #f8f9fa;
}

.packages-container {
    max-width: 1200px;
    margin: 0 auto;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.package-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid #e67e22;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.package-header {
    background-color: #fdf3e7;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #fae5cc;
}

.pkg-icon-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pkg-icon-title i {
    font-size: 1.8rem;
    color: #e67e22;
}

.pkg-icon-title h3 {
    font-size: 1.2rem;
    color: #2c3e50;
}

.pkg-duration {
    background-color: #e67e22;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}

.package-body {
    padding: 25px;
    flex-grow: 1;
}

.pkg-desc {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.pkg-details-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pkg-details-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: #444;
}

.pkg-details-list li i {
    color: #e67e22;
    margin-top: 3px;
    width: 15px;
}

.package-footer {
    padding: 20px 25px;
    background-color: #f9f9f9;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pkg-price span {
    font-size: 0.8rem;
    color: #777;
    text-transform: uppercase;
    display: block;
}

.pkg-price h2 {
    font-size: 1.6rem;
    color: #2c3e50;
    line-height: 1.1;
}

.pkg-price small {
    font-size: 0.75rem;
    color: #888;
}

.pkg-book-btn {
    padding: 10px 18px;
    font-size: 0.9rem;
}

/* Ujumbe maalum kama hakuna vifurushi kwenye DB */
.no-packages-box {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-left: 5px solid #e67e22;
    padding: 50px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    margin-top: 30px;
}

.no-packages-box i {
    font-size: 3rem;
    color: #e67e22;
    margin-bottom: 15px;
}

.no-packages-box h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.no-packages-box p {
    color: #666;
    max-width: 600px;
    margin: 0 auto 20px auto;
    font-size: 1rem;
}

/* Responsive kwa simu */
@media (max-width: 900px) {
    .packages-hero-content h1 {
        font-size: 2.2rem;
    }
    .packages-grid {
        grid-template-columns: 1fr;
    }
    .package-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    .pkg-book-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* --- AMENITIES PAGE STYLES --- */
.amenities-hero {
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), url('https://images.unsplash.com/photo-1516426122078-c23e76319801?auto=format&fit=crop&q=80&w=1600') no-repeat center center/cover;
    padding: 100px 5%;
    text-align: center;
    color: #ffffff;
}

.amenities-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.amenities-hero-content p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    color: #ecf0f1;
}

.amenities-section {
    padding: 90px 5%;
    background-color: #f8f9fa;
}

.amenities-container {
    max-width: 1200px;
    margin: 0 auto;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.amenity-card {
    background-color: #ffffff;
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.04);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid #e67e22;
}

.amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.amenity-icon-box {
    width: 70px;
    height: 70px;
    background-color: #fdf3e7;
    color: #e67e22;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.amenity-content {
    flex-grow: 1;
}

.amenity-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #e67e22;
    background-color: #fdf3e7;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.amenity-content h3 {
    font-size: 1.25rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.amenity-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Ujumbe maalum kama hakuna amenities kwenye DB */
.no-amenities-box {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-left: 5px solid #e67e22;
    padding: 50px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    margin-top: 30px;
}

.no-amenities-box i {
    font-size: 3rem;
    color: #e67e22;
    margin-bottom: 15px;
}

.no-amenities-box h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.no-amenities-box p {
    color: #666;
    max-width: 600px;
    margin: 0 auto 20px auto;
    font-size: 1rem;
}

/* Responsive kwa simu */
@media (max-width: 900px) {
    .amenities-hero-content h1 {
        font-size: 2.2rem;
    }
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    .amenity-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

/* --- CLIENT PORTAL & TRACKING STYLES --- */
.auth-section, .dashboard-section {
    padding: 90px 5%;
    background-color: #f8f9fa;
    min-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.auth-container, .dashboard-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.auth-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border-top: 5px solid #e67e22;
}

.auth-card h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.auth-card p {
    color: #666;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

/* Dashboard Styles */
.dashboard-header {
    background: linear-gradient(135deg, #1a252f, #2c3e50);
    color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    position: relative;
}

.dashboard-header h2 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.dashboard-header p {
    color: #bdc3c7;
    font-size: 0.95rem;
}

.logout-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    background-color: #e74c3c;
    color: #ffffff;
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: background 0.3s;
}

.logout-btn:hover {
    background-color: #c0392b;
}

.trips-wrapper h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.trip-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.04);
    margin-bottom: 20px;
    border-left: 5px solid #2ecc71;
}

.trip-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.trip-card-top h4 {
    font-size: 1.2rem;
    color: #2c3e50;
}

.status-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.status-badge.confirmed {
    background-color: #e8f8f5;
    color: #27ae60;
}

.status-badge.pending-confirmation {
    background-color: #fef9e7;
    color: #f39c12;
}

.trip-card-body p {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.admin-notes-box {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
    margin-top: 15px;
    border: 1px solid #e9ecef;
}

.admin-notes-box strong {
    color: #2c3e50;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 5px;
}

.admin-notes-box p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.no-trip-box {
    background-color: #ffffff;
    padding: 40px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.04);
}

.no-trip-box i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 10px;
}

.no-trip-box p {
    color: #666;
}

@media (max-width: 768px) {
    .trip-card-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .logout-btn {
        position: static;
        display: inline-block;
        margin-top: 15px;
    }
}
/* --- ADMIN DASHBOARD STYLES --- */
.admin-body {
    background-color: #f4f6f8;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.admin-wrapper {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 260px;
    background-color: #1a252f;
    color: #ffffff;
    padding: 30px 20px;
    flex-shrink: 0;
}

.admin-sidebar h2 {
    font-size: 1.4rem;
    color: #e67e22;
    margin-bottom: 30px;
    text-align: center;
}

.admin-sidebar ul {
    list-style: none;
    padding: 0;
}

.admin-sidebar ul li {
    margin-bottom: 15px;
}

.admin-sidebar ul li a {
    color: #bdc3c7;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    border-radius: 6px;
    transition: background 0.3s, color 0.3s;
}

.admin-sidebar ul li a:hover, .admin-sidebar ul li a.active {
    background-color: #e67e22;
    color: #ffffff;
}

.admin-main {
    flex-grow: 1;
    padding: 40px;
    overflow-x: auto;
}

.admin-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    margin-bottom: 30px;
}

.admin-topbar h2 {
    font-size: 1.3rem;
    color: #2c3e50;
}

.view-site-btn {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 0.9rem;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    padding: 12px 20px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.admin-section {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.admin-section h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.table-responsive {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.admin-table th, .admin-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
    color: #444;
}

.admin-table th {
    background-color: #f8f9fa;
    color: #2c3e50;
    font-weight: 600;
}

.badge-interest {
    background-color: #fdf3e7;
    color: #e67e22;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.admin-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.admin-form-grid input, .admin-form-grid textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    outline: none;
    font-size: 0.95rem;
}

.admin-form-grid input:focus, .admin-form-grid textarea:focus {
    border-color: #e67e22;
}

@media (max-width: 900px) {
    .admin-wrapper {
        flex-direction: column;
    }
    .admin-sidebar {
        width: 100%;
    }
    .admin-form-grid {
        grid-template-columns: 1fr;
    }
    .admin-form-grid div[style*="grid-column: span 2"] {
        grid-column: span 1 !important;
    }
}
/* --- ADMIN PORTAL GLOBAL STYLES --- */
.admin-body {
    background-color: #f4f6f8;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

.admin-wrapper {
    display: flex;
    min-height: 100vh;
}

/* --- SIDEBAR STYLES --- */
.admin-sidebar {
    width: 270px;
    background-color: #1a252f;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    position: fixed;
    height: 100vh;
    left: 0;
    top: 0;
    box-shadow: 4px 0 15px rgba(0,0,0,0.05);
    z-index: 100;
}

.sidebar-brand {
    padding: 25px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #11181f;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.sidebar-brand span {
    font-size: 1.2rem;
    font-weight: 700;
    color: #e67e22;
    letter-spacing: 0.5px;
}

.sidebar-menu {
    list-style: none;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-menu li a {
    color: #bdc3c7;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.sidebar-menu li a:hover, 
.sidebar-menu li a.active {
    background-color: #e67e22;
    color: #ffffff;
    transform: translateX(4px);
}

.sidebar-menu li a.logout-link:hover {
    background-color: #e74c3c;
}

/* --- MAIN CONTENT & NAVBAR --- */
.admin-main {
    margin-left: 270px;
    flex-grow: 1;
    padding: 30px;
    background-color: #f4f6f8;
    min-height: 100vh;
}

.admin-navbar {
    background-color: #ffffff;
    padding: 18px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.navbar-title h2 {
    font-size: 1.25rem;
    color: #2c3e50;
    margin: 0;
}

.navbar-user {
    display: flex;
    align-items: center;
    gap: 20px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
}

.view-site-btn {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: background 0.3s;
}

.view-site-btn:hover {
    background-color: #1a252f;
}

/* --- NOTIFICATION ALERTS --- */
.alert-success {
    background-color: #d4edda;
    color: #155724;
    padding: 14px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-left: 5px solid #28a745;
    font-weight: 500;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    padding: 14px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-left: 5px solid #dc3545;
    font-weight: 500;
}

/* --- STATS CARDS --- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
}

.stat-card {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    display: flex;
    align-items: center;
    gap: 20px;
    border-left: 5px solid #e67e22;
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-3px);
}

.stat-card i {
    font-size: 2.5rem;
    color: #e67e22;
}

.stat-card h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin: 0 0 4px 0;
}

.stat-card p {
    font-size: 0.85rem;
    color: #777;
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
}

/* --- TABLES & SECTIONS --- */
.admin-section, .tab-content > div:not(.stats-grid) {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    margin-top: 25px;
}

.tab-content > h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.section-header-flex h3 {
    margin: 0;
    color: #2c3e50;
}

.table-responsive {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    margin-top: 10px;
}

.admin-table th, 
.admin-table td {
    padding: 14px 18px;
    border-bottom: 1px solid #edf2f7;
    font-size: 0.9rem;
    color: #4a5568;
}

.admin-table th {
    background-color: #f8fafc;
    color: #2c3e50;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.admin-table tr:hover {
    background-color: #fdfefe;
}

.badge-interest {
    background-color: #fdf3e7;
    color: #e67e22;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* --- BUTTONS --- */
.btn-primary-sm, 
.btn-sm-primary {
    background-color: #e67e22;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s;
    text-decoration: none;
}

.btn-primary-sm:hover, 
.btn-sm-primary:hover {
    background-color: #d35400;
}

.btn-sm-danger {
    background-color: #e74c3c;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: background 0.3s;
}

.btn-sm-danger:hover {
    background-color: #c0392b;
}

/* --- MODALS (POPUPS) --- */
.admin-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.admin-modal-content {
    background-color: #ffffff;
    width: 100%;
    max-width: 650px;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    animation: modalSlide 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes modalSlide {
    from { transform: translateY(-30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #edf2f7;
    padding-bottom: 12px;
}

.modal-header-flex h3 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.2rem;
}

.close-modal {
    font-size: 1.8rem;
    cursor: pointer;
    color: #a0aec0;
    transition: color 0.2s;
}

.close-modal:hover {
    color: #2d3748;
}

/* Form Grid inside Modals */
.admin-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.admin-form-grid .form-group,
.admin-modal-content .form-group {
    margin-bottom: 15px;
}

.admin-form-grid label,
.admin-modal-content label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 6px;
}

.admin-form-grid input,
.admin-form-grid textarea,
.admin-modal-content input,
.admin-modal-content textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    outline: none;
    font-size: 0.9rem;
    background-color: #f8fafc;
    transition: border-color 0.2s, background-color 0.2s;
}

.admin-form-grid input:focus,
.admin-form-grid textarea:focus,
.admin-modal-content input:focus,
.admin-modal-content textarea:focus {
    border-color: #e67e22;
    background-color: #ffffff;
}

/* --- RESPONSIVE DESIGN (MOBILE) --- */
@media (max-width: 900px) {
    .admin-sidebar {
        width: 100%;
        height: auto;
        position: relative;
        box-shadow: none;
    }
    .admin-main {
        margin-left: 0;
        padding: 15px;
    }
    .admin-wrapper {
        flex-direction: column;
    }
    .admin-navbar {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
        padding: 15px 20px;
    }
    .admin-form-grid {
        grid-template-columns: 1fr;
    }
    .admin-form-grid div[style*="grid-column: span 2"] {
        grid-column: span 1 !important;
    }
}

/* --- WIZARD & ACCOUNT BANNER STYLES --- */
.account-success-banner {
    background: linear-gradient(135deg, #1a252f, #2c3e50);
    color: #ffffff;
    padding: 25px 30px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.account-success-banner i {
    font-size: 2.8rem;
    color: #2ecc71;
}

.account-success-banner h3 {
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.account-success-banner p {
    color: #bdc3c7;
    margin: 0;
    font-size: 0.95rem;
}

.account-success-banner .logout-btn {
    position: absolute;
    top: 25px;
    right: 30px;
}

/* Wizard Box */
.wizard-box {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-top: 5px solid #e67e22;
}

.wizard-header h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 5px;
}

.wizard-header p {
    color: #666;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.wizard-step {
    display: none;
}

.wizard-step.active-step {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.wizard-step h4 {
    font-size: 1.1rem;
    color: #e67e22;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

.wizard-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.95rem;
    outline: none;
    background-color: #fcfcfc;
    transition: border-color 0.3s;
}

.wizard-input:focus {
    border-color: #e67e22;
    background-color: #ffffff;
}

.wizard-btn-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-secondary {
    background-color: #95a5a6;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-secondary:hover {
    background-color: #7f8c8d;
}