/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    flex: 1;
}

.logo img {
    height: 50px;
    width: auto;
    max-width: 100%;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #087d00;
}

/* Hero Section with Carousel */
.hero {
    position: relative;
    height: 1050px;
    overflow: hidden;
}

.carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(47, 255, 89, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    color: white;
    text-align: center;
}

.carousel-overlay .container {
    max-width: 800px;
}

.carousel-overlay h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.carousel-overlay p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

/* Carousel Navigation Dots */
.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    display: flex;
    gap: 12px;
}

.dot {
    height: 14px;
    width: 14px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid white;
}

.dot.active {
    background-color: #11ff00;
    transform: scale(1.2);
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* Carousel Navigation Arrows */
.carousel-prev,
.carousel-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s;
    border-radius: 3px;
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid #11ff00;
    z-index: 15;
    user-select: none;
}

.carousel-prev:hover,
.carousel-next:hover {
    background-color: #11ff00;
    color: #000;
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

@keyframes fadeEffect {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade {
    animation-name: fadeEffect;
    animation-duration: 1s;
}

.hero-images {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-images video {
    width: 20%;
    height: 30%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.btn {
    display: inline-block;
    background-color: #11ff00;
    color: rgb(0, 0, 0);
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    background-color: #000000;
    color: #11ff00;
}

.btn2 {
    display: inline-block;
    background-color: #000000;
    color: #11ff00;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn2:hover {
        background-color: #11ff00;
    color: #000000;
}

.btn-secondary {
    background: #087d00;
    color: #fff;
    border: 2px solid #11ff00;
    font-weight: 500;
    transition: background 0.3s, color 0.3s, border 0.3s, transform 0.2s;
    border-radius: 5px;
    padding: 12px 30px;
    cursor: pointer;
    font-size: 1rem;
}

.btn-secondary:hover {
    background: #11ff00;
    color: #087d00;
    border: 2px solid #087d00;
    transform: translateY(-2px) scale(1.04);
}

/* Sections */
section {
    padding: 80px 0;
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

/* Services */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-item {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.service-item h3 {
    margin-bottom: 1rem;
    color: #087d00;
}

/* About */
.about {
    background-color: white;
}

.about p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    text-align: center;
}

/* Contact */
.contact {
    background-color: #f8f9fa;
}

.contact .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

#contact-form {
    display: flex;
    flex-direction: column;
}

#contact-form input,
#contact-form textarea {
    margin-bottom: 1rem;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

#contact-form textarea {
    height: 150px;
    resize: vertical;
}

.contact-info {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-info p {
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #11ff00;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #11ff00;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: #bdc3c7;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #11ff00;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1rem;
    text-align: center;
    color: #95a5a6;
    font-size: 0.9rem;
}

.footer-links {
    margin-top: 1rem;
}

.footer-links a {
    color: #11ff00;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #0ecc00;
    text-decoration: underline;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s ease-in;
}

.modal:target {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow-y: auto;
    padding-top: 2rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background-color: white;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #11ff00;
    padding: 2rem;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid #11ff00;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.8rem;
}

.modal-close {
    color: #11ff00;
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.3s;
}

.modal-close:hover {
    color: #0ecc00;
}

.modal-body {
    padding: 2rem;
    color: #333;
    line-height: 1.8;
}

.modal-body h3 {
    color: #2c3e50;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.modal-body h3:first-child {
    margin-top: 0;
}

.modal-body p {
    margin-bottom: 1rem;
    text-align: justify;
}

.modal-body ul {
    margin: 1rem 0 1rem 2rem;
    list-style-type: disc;
}

.modal-body ul li {
    margin-bottom: 0.5rem;
    text-align: justify;
}

/* How to Book a Tour Section */
.how-to-book {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0 60px 0;
}
.how-to-book h2 {
    color: #087d00;
    margin-bottom: 2.5rem;
}
.how-to-book-intro {
    font-size: 1.15rem;
    color: #444;
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
    text-align: center;
    line-height: 1.7;
}
.how-to-book-cta {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
}
.how-to-book .btn2 {
    background: linear-gradient(90deg, #11ff00 0%, #087d00 100%);
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 16px 36px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(17,255,0,0.08);
    border: none;
    transition: background 0.3s, color 0.3s, transform 0.2s;
    text-decoration: none;
    letter-spacing: 0.5px;
}
.how-to-book .btn2:hover {
    background: linear-gradient(90deg, #087d00 0%, #11ff00 100%);
    color: #222;
    transform: translateY(-2px) scale(1.04);
}
.booking-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}
.booking-step {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    max-width: 270px;
    min-width: 220px;
    flex: 1 1 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}
.step-icon {
    background: #11ff00;
    color: #222;
    font-weight: bold;
    font-size: 1.5rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(17,255,0,0.08);
    border: 2px solid #087d00;
}
.step-content h3 {
    color: #087d00;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
.step-content p, .step-content ul {
    font-size: 1rem;
    color: #444;
    margin-bottom: 0.5rem;
}
.sample-details {
    text-align: left;
    margin: 0.5rem 0 0 0;
    padding-left: 1.2rem;
    color: #333;
    font-size: 0.98rem;
}
.sample-details li {
    margin-bottom: 0.3rem;
}
.booking-app-sample {
    display: flex;
    flex-direction: column;
    align-items: center;
}
@media (max-width: 900px) {
    .booking-steps {
        flex-direction: column;
        align-items: center;
    }
    .booking-step {
        max-width: 100%;
        min-width: 0;
        width: 100%;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    nav ul {
        display: none; /* Could add mobile menu later */
    }
    
    .contact .container {
        grid-template-columns: 1fr;
    }
    
    header .container {
        flex-direction: column;
        text-align: center;
    }
    
    nav ul li {
        margin: 0 1rem;
    }
}




.video-modal {
    display: none;
    position: fixed;
    inset: 0;

    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);

    justify-content: center;
    align-items: center;

    z-index: 9999;
}

.video-wrapper {
    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;
}

.video-wrapper video {
    width: 500px;
    height: 750px;
    max-width: 90vw;
    max-height: 80vh;

    border-radius: 12px;
}

.close-btn {
    position: absolute;
    top: -40px;
    right: 0;

    font-size: 22px;
    color: white;
    background: transparent;
    border: none;

    cursor: pointer;
}




