:root {
    /* Enhanced Color Palette - Light Theme */
    --primary-blue: #1a5276;
    --primary-dark: #0f3649;
    --primary-light: #2e6b91;
    --accent-blue: #3498db;
    --light-blue: #d4e9f7;
    --very-light-blue: #f8fbff;
    --earth-orange: #e67e22;
    --earth-orange-dark: #cc6a1b;
    --light-orange: #f8c471;
    --soft-orange: #f4e6d1;
    --dark-text: #1a202c;
    --medium-gray: #64748b;
    --light-text: #f8fafc;
    --border-color: #e2e8f0;
    --shadow-color: rgba(26, 82, 118, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --body-bg: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    --card-bg: white;
    --section-bg: #f9f9f9;

    /* Typography Scale */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;

    /* Spacing Scale */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;

    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

/* Dark Theme Variables */
[data-theme="dark"] {
    --primary-blue: #4a90e2;
    --primary-dark: #2c5aa0;
    --primary-light: #6ba3f5;
    --accent-blue: #5dade2;
    --light-blue: #1a2639;
    --very-light-blue: #0f172a;
    --earth-orange: #f39c12;
    --earth-orange-dark: #e67e22;
    --light-orange: #f7dc6f;
    --soft-orange: #2c2c2c;
    --dark-text: #f8fafc;
    --medium-gray: #94a3b8;
    --light-text: #1a202c;
    --border-color: #334155;
    --shadow-color: rgba(0, 0, 0, 0.3);
    --glass-bg: rgba(0, 0, 0, 0.2);
    --glass-border: rgba(255, 255, 255, 0.1);
    --body-bg: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --card-bg: #1e293b;
    --section-bg: #1a2639;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--dark-text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: var(--body-bg);
    transition: background 0.3s ease, color 0.3s ease;
}

@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Slideshow Section */
.slideshow-section {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    background: var(--section-bg);
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--light-text);
    padding: var(--space-20) var(--space-8) var(--space-8);
    z-index: 3;
}

.slide-content h2 {
    font-size: var(--text-3xl);
    font-weight: 700;
    margin-bottom: var(--space-3);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.slide-content p {
    font-size: var(--text-lg);
    max-width: 600px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* Navigation Buttons */
.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--light-text);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: var(--text-lg);
    transition: all 0.3s ease;
    z-index: 4;
    backdrop-filter: blur(10px);
}

.slide-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: var(--space-6);
}

.next-btn {
    right: var(--space-6);
}

/* Dot Indicators */
.dot-container {
    position: absolute;
    bottom: var(--space-6);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--space-2);
    z-index: 4;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot:hover,
.dot.active {
    background: var(--light-text);
    transform: scale(1.2);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Slideshow Controls */
.slideshow-controls {
    position: absolute;
    top: var(--space-6);
    right: var(--space-6);
    display: flex;
    align-items: center;
    gap: var(--space-3);
    z-index: 5;
    background: rgba(0, 0, 0, 0.3);
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

.control-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--light-text);
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius);
    cursor: pointer;
    font-size: var(--text-sm);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: var(--space-1);
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.image-counter {
    color: var(--light-text);
    font-size: var(--text-sm);
    font-weight: 500;
    background: rgba(0, 0, 0, 0.3);
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius);
}

/* Header Styles - Always Light Theme */
header,
header h1,
header .tagline,
header .cta-button,
.logo,
.nav-links a,
.theme-toggle {
    color: #f8fafc !important;
}

/* Override dark theme for header elements */
[data-theme="dark"] header h1,
[data-theme="dark"] header .tagline,
[data-theme="dark"] header .cta-button,
[data-theme="dark"] .logo,
[data-theme="dark"] .nav-links a,
[data-theme="dark"] .theme-toggle {
    color: #f8fafc !important;
}

header {
    background: linear-gradient(rgba(26, 82, 118, 0.8), rgba(26, 82, 118, 0.8)), url('https://plus.unsplash.com/premium_photo-1697729539546-8635d574dfce?q=80&w=1470&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover no-repeat;
    color: var(--light-text);
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--light-text);
    text-decoration: none;
    z-index: 1000;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: var(--space-6);
}

.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-2);
    border-radius: var(--radius-full);
    color: var(--light-text);
    font-size: var(--text-lg);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.theme-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.theme-toggle:focus {
    outline: 2px solid var(--earth-orange);
    outline-offset: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: var(--light-orange);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--light-orange);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1000;
    padding: var(--space-2);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--light-text);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hero-content {
    max-width: 800px;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    background-color: var(--earth-orange);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: var(--light-orange);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--section-bg);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary-blue);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--earth-orange);
    margin: 15px auto;
    border-radius: 2px;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Tours Section */
.tours {
    padding: var(--space-20) 0;
    background: var(--body-bg);
}

.tour-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-8);
}

.tour-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid var(--border-color);
}

.tour-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--light-blue);
}

.tour-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--earth-orange) 0%, var(--light-orange) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tour-card:hover::before {
    opacity: 1;
}

.tour-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.tour-card:hover .tour-image img {
    transform: scale(1.08);
}

.tour-content {
    padding: var(--space-6);
    background: var(--card-bg);
}

.tour-title {
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--space-3);
    color: var(--dark-text);
    line-height: 1.3;
}

.tour-description {
    margin-bottom: var(--space-6);
    color: var(--medium-gray);
    line-height: 1.6;
    font-size: var(--text-sm);
}

.tour-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-4);
}

.tour-detail-item {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    font-size: var(--text-sm);
    color: var(--medium-gray);
}

.tour-price {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--earth-orange);
    margin-bottom: var(--space-4);
    display: flex;
    align-items: baseline;
    gap: var(--space-1);
}

.tour-price .currency {
    font-size: var(--text-lg);
    color: var(--earth-orange);
}

.tour-button {
    display: block;
    width: 100%;
    padding: var(--space-3) var(--space-4);
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--primary-blue) 100%);
    color: white;
    text-align: center;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--text-sm);
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.tour-button:hover {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(52, 152, 219, 0.4);
}

/* Popular Badge */
.popular-badge {
    position: absolute;
    top: var(--space-3);
    right: var(--space-3);
    background: linear-gradient(135deg, var(--earth-orange) 0%, #ff9500 100%);
    color: white;
    font-size: var(--text-xs);
    font-weight: 600;
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: var(--shadow);
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background: var(--section-bg);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature {
    text-align: center;
}

.feature-icon {
    font-size: 3rem;
    color: var(--earth-orange);
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.feature-description {
    color: var(--medium-gray);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: var(--card-bg);
}

.testimonial-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background: var(--section-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 4rem;
    color: rgba(26, 82, 118, 0.1);
    font-family: Georgia, serif;
}

.testimonial-text {
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: bold;
    color: var(--primary-blue);
}

.author-location {
    font-size: 0.9rem;
    color: var(--medium-gray);
}

.rating {
    color: var(--earth-orange);
    margin-top: 5px;
}

/* Customer Reviews Section */
.customer-reviews-section {
    background: var(--section-bg);
    padding: 40px;
    border-radius: var(--radius-xl);
    margin-top: 40px;
    border: 1px solid var(--border-color);
}

.reviews-title {
    font-size: var(--text-2xl);
    color: var(--primary-blue);
    margin-bottom: 10px;
    text-align: center;
    font-weight: 600;
}

.reviews-subtitle {
    text-align: center;
    color: var(--medium-gray);
    margin-bottom: 20px;
    font-size: var(--text-lg);
}

/* Security Notice */
.security-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: white;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    margin-bottom: 30px;
    font-size: var(--text-sm);
    font-weight: 500;
    box-shadow: var(--shadow-sm);
}

.security-notice i {
    color: var(--light-orange);
    font-size: var(--text-base);
}

.reviews-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.reviews-form-wrapper {
    background: var(--card-bg);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.review-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group label[for="starRating"] {
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--primary-blue);
    font-size: var(--text-base);
}

.star-rating {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    justify-content: flex-start;
    align-items: center;
}

.star-rating i {
    font-size: 1.5rem;
    color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.star-rating i:hover,
.star-rating i.selected {
    color: var(--earth-orange);
    transform: scale(1.1);
}

.star-rating i.fas {
    color: var(--earth-orange);
}

.submit-review-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--earth-orange) 0%, var(--earth-orange-dark) 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: var(--radius-lg);
    font-size: var(--text-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow);
}

.submit-review-btn:hover {
    background: linear-gradient(135deg, var(--earth-orange-dark) 0%, #cc6a1b 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.submit-review-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.reviews-display {
    background: var(--card-bg);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    max-height: 600px;
    overflow-y: auto;
}

.reviews-display h4 {
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-size: var(--text-xl);
    font-weight: 600;
    border-bottom: 2px solid var(--earth-orange);
    padding-bottom: 10px;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.customer-review {
    background: var(--section-bg);
    padding: 20px;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--earth-orange);
    transition: all 0.3s ease;
}

.customer-review:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.review-author-name {
    font-weight: 600;
    color: var(--primary-blue);
    font-size: var(--text-lg);
}

.review-author-location {
    font-size: var(--text-sm);
    color: var(--medium-gray);
}

.review-tour-type {
    background: var(--light-blue);
    color: var(--primary-blue);
    padding: 5px 10px;
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
}

.review-content {
    margin-bottom: 15px;
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.review-tour-date {
    font-size: 0.85rem;
    color: var(--earth-orange);
    font-weight: 500;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.review-tour-date:before {
    content: "📅";
    font-size: 0.9rem;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-rating-stars {
    display: flex;
    gap: 2px;
}

.review-rating-stars i {
    font-size: var(--text-sm);
    color: var(--earth-orange);
}

.review-date {
    font-size: var(--text-xs);
    color: var(--medium-gray);
    font-style: italic;
}

.no-reviews {
    text-align: center;
    color: var(--medium-gray);
    font-style: italic;
    padding: 40px 20px;
}

/* Contact Section */
.contact {
    padding: var(--space-20) 0;
    background: var(--section-bg);
}

.contact-container {
    display: flex;
    gap: var(--space-12);
}

.contact-info {
    flex: 1;
    padding: var(--space-8) 0;
}

.contact-info h3 {
    font-size: var(--text-2xl);
    color: var(--primary-blue);
    margin-bottom: var(--space-4);
    font-weight: 600;
}

.contact-info p {
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: var(--space-8);
    font-size: var(--text-lg);
}

.contact-form {
    flex: 1;
    background: var(--card-bg);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    position: relative;
    transition: background 0.3s ease;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--earth-orange) 0%, var(--light-orange) 100%);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.contact-form h3 {
    text-align: center;
    color: var(--primary-blue);
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--space-8);
}

.form-group {
    margin-bottom: var(--space-6);
    position: relative;
}

.form-group label {
    position: absolute;
    top: var(--space-3);
    left: var(--space-4);
    font-weight: 500;
    color: var(--medium-gray);
    transition: all 0.3s ease;
    pointer-events: none;
    background: transparent;
    padding: 0 var(--space-1);
    font-size: var(--text-base);
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:not([value=""]) + label {
    top: calc(-1 * var(--space-2));
    font-size: var(--text-xs);
    color: var(--primary-blue);
    font-weight: 600;
    background: var(--card-bg);
    z-index: 1;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    font-family: inherit;
    font-size: var(--text-base);
    background: var(--card-bg);
    transition: all 0.3s ease;
    color: var(--dark-text);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(26, 82, 118, 0.1);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: transparent;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.form-group select {
    cursor: pointer;
}

.submit-button {
    display: block;
    width: 100%;
    padding: var(--space-4);
    background: linear-gradient(135deg, var(--earth-orange) 0%, var(--earth-orange-dark) 100%);
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    font-size: var(--text-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow);
}

.submit-button:hover {
    background: linear-gradient(135deg, var(--earth-orange-dark) 0%, #cc6a1b 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.submit-button:active {
    transform: translateY(0);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--earth-orange);
    margin-right: 15px;
    width: 30px;
    text-align: center;
}

/* Footer */
footer {
    background-color: var(--primary-blue);
    color: var(--light-text);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--light-orange);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--light-orange);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--light-text);
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: var(--earth-orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }

    .contact-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: var(--text-3xl);
    }

    .tagline {
        font-size: var(--text-lg);
    }

    .hamburger-menu {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 999;
        gap: var(--space-8);
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links li {
        margin-left: 0;
        margin-bottom: var(--space-4);
    }

    .nav-links a {
        font-size: var(--text-xl);
        font-weight: 600;
    }

    .nav-links a::after {
        display: none;
    }

    .hamburger-menu.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger-menu.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .tour-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: var(--text-4xl);
    }
}

/* Animations and Effects */

/* Page Loading Transition */
body.loading {
    opacity: 0;
    transform: translateY(20px);
}

body.loaded {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Scroll Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animated Elements */
.animate-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

.about.animate-in {
    animation: slideInLeft 1s ease-out forwards;
}

.tours.animate-in {
    animation: fadeInUp 1s ease-out 0.2s forwards;
    opacity: 0;
}

.why-choose.animate-in {
    animation: slideInRight 1s ease-out 0.4s forwards;
    opacity: 0;
}

.testimonials.animate-in {
    animation: scaleIn 1s ease-out 0.6s forwards;
    opacity: 0;
}

.contact.animate-in {
    animation: fadeInUp 1s ease-out 0.8s forwards;
    opacity: 0;
}

/* Statistics Section */
.statistics-section {
    padding: 80px 0;
    background: var(--body-bg);
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    padding: 40px 20px;
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
    display: block;
}

.stat-item .suffix {
    font-size: 2rem;
    font-weight: 600;
    color: var(--earth-orange);
}

.stat-label {
    font-size: var(--text-lg);
    color: var(--medium-gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Enhanced Button Effects */
.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button {
    position: relative;
    overflow: hidden;
}

/* Parallax Hero Enhancement */
.parallax-hero {
    transform-style: preserve-3d;
}

/* Additional Micro-Interactions */
.tour-card {
    position: relative;
    overflow: hidden;
}

.tour-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.tour-card:hover::after {
    left: 100%;
}

/* Loading States */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--light-text);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Google Review Call-to-Action Section */
.google-review-cta {
    padding: var(--space-20) 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    color: var(--light-text);
    text-align: center;
}

.review-cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-4);
}

.review-cta-text h3 {
    font-size: var(--text-3xl);
    font-weight: 700;
    margin-bottom: var(--space-4);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.review-cta-text p {
    font-size: var(--text-lg);
    margin-bottom: var(--space-8);
    opacity: 0.9;
    line-height: 1.6;
}

.review-cta-button {
    margin-top: var(--space-6);
}

.google-review-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    background: linear-gradient(135deg, var(--earth-orange) 0%, var(--earth-orange-dark) 100%);
    color: white;
    padding: var(--space-4) var(--space-8);
    border-radius: var(--radius-xl);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--text-lg);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.google-review-btn:hover {
    background: linear-gradient(135deg, var(--earth-orange-dark) 0%, #cc6a1b 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(230, 126, 34, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.google-review-btn i {
    font-size: var(--text-xl);
    transition: transform 0.3s ease;
}

.google-review-btn:hover i {
    transform: scale(1.1);
}

/* Enhanced Form States */
.form-group.success input {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-group.error input {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Mobile Theme Toggle Enhancement */
@media (max-width: 768px) {
    .theme-toggle {
        margin-right: 10px;
    }

    /* Slideshow Mobile Responsiveness */
    .slideshow-section {
        height: 60vh;
        min-height: 400px;
    }

    .slide-content h2 {
        font-size: var(--text-2xl);
    }

    .slide-content p {
        font-size: var(--text-base);
    }

    .slide-btn {
        width: 40px;
        height: 40px;
        font-size: var(--text-base);
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .prev-btn {
        left: var(--space-3);
    }

    .next-btn {
        right: var(--space-3);
    }
}

@media (max-width: 480px) {
    .slideshow-section {
        height: 50vh;
        min-height: 350px;
    }

    .slide-content {
        padding: var(--space-12) var(--space-4) var(--space-6);
    }

    .slide-content h2 {
        font-size: var(--text-xl);
    }

    .slide-content p {
        font-size: var(--text-sm);
    }

    .slide-btn {
        width: 35px;
        height: 35px;
        font-size: var(--text-sm);
    }

    /* Slideshow Controls Mobile */
    .slideshow-controls {
        top: var(--space-3);
        right: var(--space-3);
        padding: var(--space-1) var(--space-2);
        gap: var(--space-1);
    }

    .control-btn {
        padding: var(--space-1);
        font-size: var(--text-xs);
    }

    .image-counter {
        padding: var(--space-1);
        font-size: var(--text-xs);
    }

    /* Mobile Reviews Section */
    .reviews-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .review-form .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .customer-reviews-section {
        padding: 30px 20px;
    }

    .reviews-form-wrapper,
    .reviews-display {
        padding: 20px;
    }

    .star-rating {
        justify-content: center;
    }

    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .review-tour-type {
        align-self: flex-start;
    }
}
