
:root {
    /* Safari/Nature Color Palette */
    --primary-green: #2d5016;
    --secondary-green: #4a7c29;
    --light-green: #6b9944;
    --accent-brown: #8b6f47;
    --sand: #d4a574;
    --dark-brown: #3e2723;
    
    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #fafafa;
    --light-gray: #f5f5f5;
    --medium-gray: #9e9e9e;
    --dark-gray: #424242;
    --black: #1a1a1a;
    
    /* Accent Colors */
    --gold: #d4af37;
    --orange: #ff6f00;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: inherit;
    transition: var(--transition-normal);
}

ul {
    list-style: none;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-subtitle {
    display: inline-block;
    color: var(--secondary-green);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-description {
    font-size: 1.1rem;
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-primary-small {
    display: inline-block;
    padding: 15px 35px;
    font-weight: 600;
    border-radius: 50px;
    transition: all var(--transition-normal);
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-green), var(--light-green));
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--secondary-green);
    transform: translateY(-3px);
}

.btn-primary-small {
    padding: 10px 25px;
    background: var(--secondary-green);
    color: var(--white);
    border-radius: 25px;
}

.btn-primary-small:hover {
    background: var(--primary-green);
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(45, 80, 22, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    font-family: var(--font-heading);
}

.logo i {
    font-size: 1.8rem;
    color: var(--sand);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--sand);
    transition: var(--transition-normal);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition-normal);
}

/* ========================================
   HERO SECTION WITH SLIDER
   ======================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
    animation: zoomIn 8s ease-in-out;
}

@keyframes zoomIn {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.7), rgba(139, 111, 71, 0.5));
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    font-weight: 700;
}

.hero-highlight {
    display: block;
    color: #ffffff;
    font-size: 5rem;
    font-weight: 700;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.7);
    margin-top: 10px;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.2s both;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider-controls {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 20px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-normal);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-normal);
}

.dot.active {
    background: var(--white);
    width: 35px;
    border-radius: 6px;
}

/* ========================================
   QUICK INFO BAR
   ======================================== */
.quick-info {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    padding: 50px 0;
    margin-top: 0;
    position: relative;
    z-index: 10;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--white);
    padding: 20px;
    border-radius: 10px;
    transition: var(--transition-normal);
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.info-item i {
    font-size: 3rem;
    color: var(--sand);
}

.info-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.info-text p {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
    padding: 100px 0;
    background: var(--off-white);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--secondary-green);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.about-badge i {
    font-size: 1.5rem;
    color: var(--gold);
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--dark-gray);
}

.about-features {
    display: grid;
    gap: 20px;
}

.feature {
    display: flex;
    gap: 15px;
    align-items: start;
}

.feature i {
    font-size: 1.5rem;
    color: var(--secondary-green);
    margin-top: 5px;
}

.feature h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary-green);
}

.feature p {
    font-size: 0.95rem;
    color: var(--medium-gray);
}

/* ========================================
   DESTINATIONS SECTION
   ======================================== */
.destinations {
    padding: 100px 0;
    background: var(--white);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.destination-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.destination-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.destination-card:hover .destination-image img {
    transform: scale(1.1);
}

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.8), rgba(139, 111, 71, 0.6));
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.destination-card:hover .destination-overlay {
    opacity: 1;
}

.destination-overlay i {
    font-size: 3rem;
    color: var(--white);
}

.destination-content {
    padding: 25px;
}

.destination-content h3 {
    font-size: 1.4rem;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.destination-content p {
    font-size: 0.95rem;
    color: var(--medium-gray);
    margin-bottom: 15px;
    line-height: 1.6;
}

.destination-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.destination-tags span {
    font-size: 0.85rem;
    padding: 5px 12px;
    background: var(--light-gray);
    color: var(--dark-gray);
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.destination-tags i {
    font-size: 0.9rem;
    color: var(--secondary-green);
}

/* ========================================
   PACKAGES SECTION
   ======================================== */
.packages {
    padding: 100px 0;
    background: var(--light-gray);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.package-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.package-card.featured {
    border: 3px solid var(--gold);
}

.featured-label {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--gold);
    color: var(--white);
    padding: 8px 40px;
    font-weight: 600;
    font-size: 0.85rem;
    transform: rotate(45deg);
    z-index: 10;
    box-shadow: var(--shadow-md);
}

.package-image {
    position: relative;
    height: 170px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.package-card:hover .package-image img {
    transform: scale(1.1);
}

.package-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--secondary-green);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.package-content {
    padding: 30px;
}

.package-content h3 {
    font-size: 1.4rem;
    color: var(--primary-green);
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.package-description {
    font-size: 0.95rem;
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.package-highlights h4 {
    font-size: 1rem;
    color: var(--dark-gray);
    margin-bottom: 10px;
}

.package-highlights ul {
    display: grid;
    gap: 8px;
}

.package-highlights li {
    font-size: 0.9rem;
    color: var(--dark-gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-highlights i {
    color: var(--secondary-green);
    font-size: 0.85rem;
}

.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--light-gray);
}

.package-duration {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    color: var(--dark-gray);
    font-weight: 600;
}

.package-duration i {
    color: var(--secondary-green);
}

.btn-view-details {
    padding: 10px 25px;
    background: var(--secondary-green);
    color: var(--white);
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

.btn-view-details:hover {
    background: var(--primary-green);
    transform: translateX(5px);
}

/* ========================================
   WHY CHOOSE US
   ======================================== */
.why-choose {
    padding: 100px 0;
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.why-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--off-white);
    border-radius: 15px;
    transition: all var(--transition-normal);
}

.why-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px);
}

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--secondary-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-normal);
}

.why-card:hover .why-icon {
    transform: scale(1.1) rotate(360deg);
}

.why-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.why-card h3 {
    font-size: 1.3rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.why-card p {
    font-size: 0.95rem;
    color: var(--medium-gray);
    line-height: 1.6;
}

/* ========================================
   HOW IT WORKS
   ======================================== */
.how-it-works {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--white);
}

.how-it-works .section-subtitle {
    color: var(--sand);
}

.how-it-works .section-title {
    color: var(--white);
}

.how-it-works .section-description {
    color: rgba(255, 255, 255, 0.9);
}

.steps-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
}

.step {
    text-align: center;
    position: relative;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    transition: var(--transition-normal);
}

.step:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-green);
    box-shadow: var(--shadow-md);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 30px auto 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--white);
}

.step p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq {
    padding: 100px 0;
    background: var(--light-gray);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--primary-green);
    font-weight: 600;
}

.faq-question i {
    font-size: 1.3rem;
    color: var(--secondary-green);
    transition: var(--transition-normal);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    color: var(--gold);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 30px 25px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--dark-gray);
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 30px;
}

.contact-details {
    display: grid;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: start;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3rem;
    color: var(--secondary-green);
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1rem;
    color: var(--primary-green);
    margin-bottom: 5px;
}

.contact-item a,
.contact-item p {
    color: var(--dark-gray);
    font-size: 0.95rem;
}

.contact-item a:hover {
    color: var(--secondary-green);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--secondary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    transition: var(--transition-normal);
}

.social-links a:hover {
    background: var(--primary-green);
    transform: translateY(-5px);
}

.contact-form-wrapper {
    background: var(--off-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.contact-form h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 30px;
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition-normal);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-green);
}

.form-group label {
    position: absolute;
    left: 20px;
    top: 15px;
    font-size: 1rem;
    color: var(--medium-gray);
    pointer-events: none;
    transition: var(--transition-fast);
}

.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-group input:focus + label,
.form-group textarea:focus + label {
    top: -10px;
    left: 15px;
    font-size: 0.85rem;
    color: var(--secondary-green);
    background: var(--off-white);
    padding: 0 5px;
}

.form-group select {
    color: var(--dark-gray);
}

.contact-form button {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--secondary-green), var(--light-green));
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
}

.contact-form button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Form Messages */
.form-message {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    margin-bottom: 35px;
    border-radius: 15px;
    animation: slideDown 0.5s ease-out;
    grid-column: 1 / -1;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: none;
    position: relative;
    overflow: hidden;
}

.form-message::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.form-message .message-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.form-message .message-icon svg {
    width: 26px;
    height: 26px;
}

.form-message .message-content {
    flex: 1;
}

.form-message h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    font-weight: 600;
    font-family: var(--font-heading);
}

.form-message p {
    margin: 10px 0;
    line-height: 1.7;
    font-size: 1.05rem;
}

.form-message ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.form-message ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
}

.form-message ul li:before {
    content: "✗";
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

.success-message {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
}

.success-message::before {
    background: linear-gradient(180deg, #28a745, #20c997);
}

.success-message .message-icon {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.success-message h3 {
    color: #155724;
}

.success-message a {
    color: #155724;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #28a745;
    transition: all 0.3s ease;
}

.success-message a:hover {
    color: #28a745;
    border-bottom-color: #155724;
}

.error-message {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
}

.error-message::before {
    background: linear-gradient(180deg, #dc3545, #c82333);
}

.error-message .message-icon {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
}

.error-message h3 {
    color: #721c24;
}

.error-message ul li:before {
    color: #dc3545;
}

.contact-info-message {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px dashed rgba(21, 87, 36, 0.3);
}

.contact-info-message p {
    margin: 5px 0;
}

.contact-info-message strong {
    font-weight: 600;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* ========================================
   REVIEWS SECTION
   ======================================== */
.reviews {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.review-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 40px 0 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 20px 40px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-green);
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.star-icon {
    color: #ffc107;
    font-size: 2.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--dark-gray);
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Side Scrolling Reviews */
.reviews-scroll-wrapper {
    position: relative;
    margin-bottom: 50px;
}

.reviews-scroll-container {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 10px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-green) #e0e0e0;
}

.reviews-scroll-container::-webkit-scrollbar {
    height: 8px;
}

.reviews-scroll-container::-webkit-scrollbar-track {
    background: #e0e0e0;
    border-radius: 10px;
}

.reviews-scroll-container::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 10px;
}

.reviews-scroll-container::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-green);
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-green);
    transition: var(--transition-fast);
}

.scroll-btn:hover {
    background: var(--primary-green);
    color: white;
    box-shadow: var(--shadow-lg);
}

.scroll-left {
    left: -25px;
}

.scroll-right {
    right: -25px;
}

.review-card {
    min-width: 380px;
    max-width: 380px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border-left: 4px solid var(--primary-green);
    flex-shrink: 0;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.review-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.review-avatar {
    font-size: 3rem;
    color: var(--primary-green);
    line-height: 1;
}

.review-info {
    flex: 1;
}

.review-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 5px;
}

.review-location {
    font-size: 0.9rem;
    color: var(--medium-gray);
    display: flex;
    align-items: center;
    gap: 5px;
}

.review-location i {
    color: var(--primary-green);
}

.review-rating {
    display: flex;
    gap: 3px;
    margin-bottom: 15px;
}

.review-rating i {
    color: #e0e0e0;
    font-size: 1rem;
}

.review-rating i.active {
    color: #ffc107;
}

.review-body {
    margin-top: 20px;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.review-date {
    font-size: 0.85rem;
    color: var(--medium-gray);
    display: flex;
    align-items: center;
    gap: 5px;
}

.no-reviews {
    text-align: center;
    font-size: 1.1rem;
    color: var(--medium-gray);
    padding: 40px;
    background: white;
    border-radius: 15px;
    min-width: 100%;
}

/* Review CTA Button */
.review-cta {
    text-align: center;
    margin-top: 40px;
}

.review-cta .btn-primary {
    padding: 15px 40px;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Review Modal */
.review-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.review-modal.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.review-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.review-modal-content {
    position: relative;
    max-width: 650px;
    max-height: 90vh;
    margin: 5vh auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.review-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-green);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition-fast);
    z-index: 10;
}

.review-modal-close:hover {
    background: var(--secondary-green);
    transform: rotate(90deg);
}

/* NEW Review Form Styles */
.review-form-wrapper {
    padding: 60px 50px 50px;
}

.review-form-title {
    font-size: 2rem;
    font-family: var(--font-heading);
    color: var(--primary-green);
    margin-bottom: 8px;
    text-align: center;
}

.review-form-subtitle {
    text-align: center;
    color: var(--medium-gray);
    margin-bottom: 35px;
    font-size: 1rem;
}

.review-form-new {
    width: 100%;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.form-field {
    margin-bottom: 25px;
}

.form-field label,
.rating-label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.form-field .req {
    color: #e74c3c;
    font-weight: bold;
}

.form-field input[type="text"],
.form-field textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-field input[type="text"]:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    background: white;
    box-shadow: 0 0 0 4px rgba(45, 95, 63, 0.1);
}

/* intl-tel-input custom styling */
.form-field .iti {
    width: 100%;
}

.form-field .iti__flag-container {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    padding: 1px;
}

.form-field .iti__selected-flag {
    padding: 0 0 0 16px;
    height: 100%;
    display: flex;
    align-items: center;
    background: transparent;
}

.form-field .iti__country-list {
    max-height: 200px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 2px solid #e0e0e0;
    font-family: var(--font-primary);
}

.form-field .iti__country {
    padding: 10px 16px;
    transition: background 0.2s ease;
}

.form-field .iti__country:hover {
    background: #f5f5f5;
}

.form-field .iti__country.iti__highlight {
    background: rgba(45, 95, 63, 0.1);
}

.form-field .iti__selected-country-primary {
    font-weight: 500;
}

.form-field textarea {
    resize: vertical;
    min-height: 130px;
    line-height: 1.6;
}

/* New Star Rating */
.stars-container {
    display: flex;
    gap: 12px;
    margin: 10px 0;
}

.star-item {
    position: relative;
}

.star-item input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.star-item label {
    font-size: 2.5rem;
    color: #d0d0d0;
    cursor: pointer;
    transition: all 0.2s ease;
    display: block;
    line-height: 1;
    user-select: none;
}

.star-item:hover label,
.star-item input[type="radio"]:checked ~ label {
    color: #ffc107;
    transform: scale(1.1);
}

.star-item input[type="radio"]:checked + label {
    color: #ffc107;
}

.star-item:hover label {
    color: #ffb300;
}

.rating-feedback {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin-top: 10px;
    font-weight: 500;
}

.char-counter {
    font-size: 0.85rem;
    color: var(--medium-gray);
    text-align: right;
    margin-top: 8px;
}

.submit-review-btn {
    width: 100%;
    padding: 16px 32px;
    background: var(--primary-green);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-review-btn:hover {
    background: var(--secondary-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 95, 63, 0.3);
}

.submit-review-btn:active {
    transform: translateY(0);
}

.submit-review-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-loading {
    display: none;
}

.form-message {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    font-size: 0.95rem;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-message {
    background: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--primary-green);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 1.8rem;
    color: var(--sand);
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    transition: var(--transition-normal);
}

.footer-social a:hover {
    background: var(--sand);
    color: var(--primary-green);
    transform: translateY(-5px);
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col ul {
    display: grid;
    gap: 12px;
}

.footer-col ul li a {
    font-size: 0.95rem;
    opacity: 0.9;
    transition: var(--transition-normal);
}

.footer-col ul li a:hover {
    opacity: 1;
    padding-left: 5px;
    color: var(--sand);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--sand);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-bottom i {
    color: var(--orange);
}

/* ========================================
   MODAL (PACKAGE DETAILS)
   ======================================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background: var(--white);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-normal);
}

.modal-close:hover {
    background: var(--primary-green);
    transform: rotate(90deg);
}

.modal-body {
    overflow-y: auto;
    max-height: 90vh;
    padding: 40px;
}

.modal-body h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.modal-body h3 {
    font-size: 1.5rem;
    color: var(--secondary-green);
    margin: 30px 0 15px;
}

.modal-body p,
.modal-body ul {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.modal-body ul {
    padding-left: 20px;
}

.modal-body ul li {
    list-style: disc;
    margin-bottom: 10px;
}

/* ========================================
   LIGHTBOX (GALLERY)
   ======================================== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99999;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    animation: zoomInLightbox 0.3s ease;
}

@keyframes zoomInLightbox {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid var(--white);
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition-normal);
}

.lightbox-close:hover {
    background: var(--white);
    color: var(--black);
    transform: rotate(90deg);
}

.lightbox-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-normal);
}

.lightbox-btn:hover {
    background: var(--white);
    color: var(--black);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

/* ========================================
   SCROLL TO TOP BUTTON
   ======================================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary-green);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-green);
    transform: translateY(-5px);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet */
@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .about-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-card {
        min-width: calc(50% - 15px);
    }
    
    .review-card {
        min-width: 320px;
        max-width: 320px;
    }
    
    .scroll-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .scroll-left {
        left: -20px;
    }
    
    .scroll-right {
        right: -20px;
    }
    
    .review-form-wrapper {
        padding: 50px 30px 40px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .review-form-title {
        font-size: 1.8rem;
    }
    
    .stat-item {
        padding: 15px 30px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--primary-green);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: var(--transition-normal);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-highlight {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .packages-grid,
    .destinations-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-timeline {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .testimonial-card {
        min-width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .modal-body {
        padding: 30px 20px;
    }
    
    .lightbox-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .review-form-section {
        padding: 30px 20px;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
    
    .form-description {
        font-size: 0.95rem;
    }
    
    .review-card {
        min-width: 280px;
        max-width: 280px;
        padding: 20px;
    }
    
    .review-stats {
        gap: 30px;
    }
    
    .scroll-btn {
        display: none;
    }
    
    .review-modal-content {
        margin: 10px;
        max-height: calc(100vh - 20px);
    }
    
    .review-modal-close {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-highlight {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    .gallery-item {
        height: 250px;
    }
    
    .review-form-wrapper {
        padding: 45px 15px 25px;
    }
    
    .review-form-title {
        font-size: 1.4rem;
    }
    
    .form-field input[type="text"],
    .form-field textarea {
        font-size: 0.9rem;
        padding: 11px 13px;
    }
    
    .star-item label {
        font-size: 1.8rem;
    }
    
    .stars-container {
        gap: 6px;
    }
    
    .submit-review-btn {
        font-size: 1rem;
        padding: 14px 28px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .star-icon {
        font-size: 1.8rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hamburger,
    .slider-controls,
    .slider-dots,
    .scroll-top,
    .modal,
    .lightbox {
        display: none !important;
    }
}
