:root {
    --primary-color: #3c9f30;
    --primary-dark: #1b5e20;
    --text-white: #ffffff;
    --light-gray: #f8f9fa;
}

body {
    font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

/* Top Contact Bar */
.top-contact-bar {
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: 8px 0;
    font-size: 14px;
}

.top-contact-bar a {
    color: var(--text-white);
    text-decoration: none;
}

/* Navigation */
.navbar {
    padding: 10px 0;
    transition: all 0.3s ease;
}

.navbar-brand img {
    height: 80px;
}

.navbar-nav .nav-link {
    color: #333;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s;
    font-size: 17px;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 0;
}

.dropdown-item {
    padding: 8px 20px;
}

.dropdown-item:hover {
    background-color: var(--light-gray);
    color: var(--primary-color);
}

/* Contact Us highlight */
.nav-contact {
    background-color: #0d6efd;
    color: #fff !important;
    padding: 8px 14px;
    border-radius: 4px;
}
.nav-contact:hover {
    background-color: #0b5ed7;
    color: #fff !important;
}

/* Offcanvas (drawer) */
.offcanvas-end {
    width: 280px;
}
.offcanvas .nav-link {
    padding: 10px 0;
    font-weight: 600;
}

/* Banner Section */
.banner-section {
    position: relative;
    overflow: hidden;
}

.banner-slide {
    height: 80vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: white;
    z-index: 2;
    max-width: 600px;
}

.banner-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    opacity: 0;
}

.banner-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0;
}

.banner-content .btn {
    opacity: 0;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

/* Section Headings */
.section-heading {
    text-align: center;
    margin: 60px 0 40px;
    position: relative;
}

.section-heading h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    display: inline-block;
    padding-bottom: 15px;
    position: relative;
}

.section-heading h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Destination & Places Cards */
.destination-card, .place-card {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.destination-card:hover, .place-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.card-img-container {
    height: 250px;
    overflow: hidden;
}

.card-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.destination-card:hover .card-img-container img,
.place-card:hover .card-img-container img {
    transform: scale(1.1);
}

.card-body {
    padding: 20px;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Video Section */
.video-section {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1503220317375-aaad61436b1b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
    text-align: center;
    color: white;
}

.video-play-btn {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    cursor: pointer;
    transition: all 0.3s;
}

.video-play-btn:hover {
    background-color: var(--primary-dark);
    transform: scale(1.1);
}

.video-play-btn i {
    color: white;
    font-size: 30px;
    margin-left: 5px;
}

/* Video Modal */
.modal-content {
    border-radius: 0;
    border: none;
}

.modal-header {
    border-bottom: none;
    padding: 15px 20px 0;
}

.modal-body {
    padding: 0;
}

/* Reviews Section */
.reviews-section {
    background-color: var(--light-gray);
    padding: 80px 0;
}

.review-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    height: 100%;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-info h5 {
    margin-bottom: 5px;
}

.review-stars {
    color: #ffc107;
    margin-bottom: 5px;
}

/* Footer */
.footer {
    background-color: #222;
    color: #aaa;
    padding: 70px 0 0;
}

.footer h5 {
    color: white;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #333;
    border-radius: 50%;
    color: white;
    transition: all 0.3s;
}

.footer-social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    background-color: #111;
    padding: 20px 0;
    margin-top: 50px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .banner-content h1 {
        font-size: 2.5rem;
    }
    .banner-content {
        left: 5%;
    }
}

@media (max-width: 768px) {
    .banner-slide {
        height: 60vh;
    }
    .banner-content h1 {
        font-size: 2rem;
    }
    .section-heading h2 {
        font-size: 2rem;
    }
    .footer {
        padding: 50px 0 0;
    }
}

@media (max-width: 576px) {
    .banner-slide {
        height: 50vh;
    }
    .banner-content {
        left: 5%;
        right: 5%;
    }
    .banner-content h1 {
        font-size: 1.8rem;
    }
    .section-heading h2 {
        font-size: 1.8rem;
    }
}

/* GSAP Animation Support - Will Change for Better Performance */
.service-box,
.feature-box,
.contact-box,
.process-step,
.stat-box,
.gallery-item,
.video-item,
.destination-card,
.place-card,
.review-card {
    will-change: transform, opacity;
}

/* Smooth transitions for elements */
.service-box,
.feature-box,
.contact-box,
.process-step,
.stat-box,
.gallery-item,
.video-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.breadcrumb-item, .breadcrumb-item a {
    text-decoration: none;
    color: white;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: white;
}

.process-step h5 a {
    text-decoration: none;
    color: black;
}