/* Grand Tour Inspired Theme - Sri Lanka Signature Tours */
/* LIGHT, PROFESSIONAL, MODERN & ELEGANT THEME */

:root {
    /* Primary Colors - Elegant Light Theme */
    --color-white: #FFFFFF;
    --color-cream: #FBF8F3;              /* Soft Cream Background */
    --color-light-gray: #F5F5F5;         /* Light Gray */
    --color-text-dark: #2C3E50;          /* Deep Slate for Text */
    --color-text-gray: #5A6C7D;          /* Muted Gray Text */
    
    /* Accent Colors - Sophisticated Palette */
    --color-gold: #C9A961;               /* Refined Gold */
    --color-gold-dark: #B8935A;          /* Deeper Gold for Hover */
    --color-teal: #2C8C99;               /* Sophisticated Teal */
    --color-teal-light: #3FA9B8;         /* Light Teal */
    --color-sage: #8B9D83;               /* Sage Green Accent */
    
    /* Neutral Colors */
    --color-border: #E8E4DD;             /* Soft Border */
    --color-border-light: #F0EDE7;       /* Lighter Border */
    --color-shadow: rgba(44, 62, 80, 0.08); /* Subtle Shadow */
    
    /* Typography */
    --font-primary: 'Italiana', serif;
    --font-secondary: 'Inter', sans-serif;
    
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-dark);
    background-color: var(--color-cream);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--color-text-dark);
}

h1 { font-size: 50px; }
h2 { font-size: 42px; }
h3 { font-size: 28px; }
h4 { font-size: 24px; }
h5 { font-size: 20px; }
h6 { font-size: 18px; }

a {
    color: var(--color-text-dark);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-gold);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Section Padding */
.section-padding {
    padding: 100px 0;
}

/* Buttons */
.button, .elementor-button {
    display: inline-block;
    padding: 12px 30px;
    background: var(--color-teal);
    color: var(--color-white);
    border: 2px solid var(--color-teal);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
}

.button:hover, .elementor-button:hover {
    background: var(--color-teal-light);
    color: var(--color-white);
    border-color: var(--color-teal-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 140, 153, 0.2);
}

.button.white {
    background: var(--color-white);
    color: var(--color-teal);
    border-color: var(--color-white);
}

.button.white:hover {
    background: var(--color-teal);
    color: var(--color-white);
}

/* Navigation */
.main-menu-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 2px 10px var(--color-shadow);
}

.elementor-element-d6a60ba {
    padding: 20px 0;
}

.e-con {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.e-con-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.elementor-heading-title {
    font-family: var(--font-primary);
    font-size: 28px;
    color: var(--color-gold);
}

.elementor-heading-title a {
    color: var(--color-gold);
}

/* Navigation Menu */
.nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav li {
    position: relative;
    margin: 0 15px;
}

.nav li a {
    font-size: 16px;
    font-weight: 500;
    padding: 10px 0;
    display: block;
    position: relative;
    color: var(--color-text-dark);
}

.nav li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: var(--transition);
}

.nav li a:hover:after,
.nav li.current-menu-item a:after {
    width: 100%;
}

/* Sub Menu */
.nav li ul.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    box-shadow: 0 10px 30px var(--color-shadow);
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
    list-style: none;
    padding: 10px 0;
}

.nav li:hover ul.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav li ul.sub-menu li {
    margin: 0;
}

.nav li ul.sub-menu li a {
    padding: 10px 20px;
}

/* Google Translate */
#google_translate_element {
    margin-left: 20px;
}

.custom-language-switcher {
    position: relative;
    margin-left: 20px;
}

.lang-btn {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 30px;
    padding: 8px 20px;
    color: var(--color-text-dark);
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.lang-btn:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    background: var(--color-cream);
}

.lang-btn i {
    color: var(--color-gold);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    box-shadow: 0 10px 30px var(--color-shadow);
    border-radius: 5px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1000;
    list-style: none;
    padding: 10px 0;
    margin-top: 5px;
}

.custom-language-switcher:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown li a {
    display: block;
    padding: 8px 20px;
    color: var(--color-text-dark);
    transition: var(--transition);
}

.lang-dropdown li a:hover {
    background: var(--color-cream);
    color: var(--color-gold);
}

/* Hero Slider */
.elementor-element-e8116a1 {
    height: 100vh;
    min-height: 700px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    animation: slideshow 25s infinite;
}

@keyframes slideshow {
    0%, 25% { background-image: url('../images/hero/sigiriya.jpg'); }
    26%, 50% { background-image: url('../images/hero/kandy.jpg'); }
    51%, 75% { background-image: url('../images/hero/ella.jpg'); }
    76%, 100% { background-image: url('../images/hero/beach.jpg'); }
}

.elementor-element-e8116a1:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(251, 248, 243, 0.1), rgba(44, 62, 80, 0.4));
}

.themegoods-animated-text {
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

.themegoods-animated-text h1,
.themegoods-animated-text h2 {
    font-size: 72px;
    line-height: 1.2;
    margin: 0;
    animation: fadeInUp 1s ease forwards;
    color: var(--color-white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.elementor-element-5fe6421 {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-30px); }
    60% { transform: translateX(-50%) translateY(-15px); }
}

/* ============================================
   REDESIGNED TOUR CARDS - Vertical Rectangle Style
   ============================================ */
.featured-tours-section {
    padding: 80px 20px;
    background: var(--color-white);
}

.tours-vertical-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 50px auto;
    padding: 0 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .tours-vertical-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 15px;
    }
    
    .tour-vertical-card {
        margin-bottom: 0;
    }
    
    .tour-vertical-image {
        height: 200px;
    }
    
    .tour-vertical-content {
        padding: 15px 12px;
    }
    
    .tour-vertical-content h3 {
        font-size: 16px;
        margin-bottom: 5px;
    }
    
    .tour-excerpt {
        font-size: 13px;
        margin-bottom: 10px;
        line-height: 1.4;
    }
    
    .tour-price-row {
        margin-bottom: 15px;
        padding-top: 10px;
    }
    
    .tour-price-label {
        font-size: 11px;
    }
    
    .tour-price-value {
        font-size: 18px;
    }
    
    .btn-tour-details {
        padding: 10px 12px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .tours-vertical-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        gap: 20px;
    }
    
    .tour-vertical-image {
        height: 220px;
    }
    
    .tour-vertical-content h3 {
        font-size: 18px;
    }
    
    .tour-excerpt {
        font-size: 14px;
    }
    
    .tour-price-value {
        font-size: 20px;
    }
}

.tour-vertical-card {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 5px 20px var(--color-shadow);
}

.tour-vertical-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-gold);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.15);
}

.tour-vertical-image {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.tour-vertical-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.tour-vertical-card:hover .tour-vertical-image img {
    transform: scale(1.08);
}

.tour-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--color-gold);
    color: var(--color-white);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.tour-duration {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-teal);
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(5px);
    border: 1px solid var(--color-border);
    z-index: 2;
}

.tour-duration i {
    margin-right: 5px;
}

.tour-vertical-content {
    padding: 25px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: var(--color-white);
}

.tour-vertical-content h3 {
    margin: 0 0 10px 0;
    font-size: 20px;
    line-height: 1.3;
    color: var(--color-text-dark);
}

.tour-vertical-content h3 a {
    color: var(--color-text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.tour-vertical-content h3 a:hover {
    color: var(--color-gold);
}

.tour-excerpt {
    color: var(--color-text-gray);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.tour-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--color-border);
}

.tour-price-label {
    color: var(--color-text-gray);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tour-price-value {
    color: var(--color-teal);
    font-size: 24px;
    font-weight: 700;
}

.btn-tour-details {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--color-teal);
    color: var(--color-white);
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid var(--color-teal);
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.btn-tour-details:hover {
    background: var(--color-teal-light);
    border-color: var(--color-teal-light);
    color: var(--color-white);
    gap: 15px;
    transform: translateY(-2px);
}

.view-all-container {
    margin-top: 50px;
    text-align: center;
}

.btn-view-all-tours {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--color-gold);
    color: var(--color-white);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.25);
}

.btn-view-all-tours:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(201, 169, 97, 0.35);
    gap: 15px;
    background: var(--color-gold-dark);
}

/* About Section Images */
.e-transform {
    transition: var(--transition);
}

.elementor-element-43ee9c1 {
    width: 60%;
    margin-bottom: 30px;
    transform: rotate(4deg);
}

.elementor-element-6d6fb54 {
    position: absolute;
    top: 30%;
    right: 0;
    width: 50%;
    transform: rotate(-9deg);
    z-index: 10;
}

.elementor-element-43ee9c1 img,
.elementor-element-6d6fb54 img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 15px 35px var(--color-shadow);
    border: 3px solid var(--color-white);
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-choose-section {
    padding: 100px 20px;
    background: var(--color-cream);
}

.why-choose-images {
    position: relative;
    min-height: 500px;
}

.image-1 {
    width: 70%;
    margin-left: auto;
    transform: rotate(3deg);
    z-index: 2;
    position: relative;
}

.image-1 img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px var(--color-shadow);
    border: 3px solid var(--color-white);
}

.image-2 {
    position: absolute;
    top: 30%;
    left: 0;
    width: 60%;
    transform: rotate(-8deg);
    z-index: 1;
}

.image-2 img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px var(--color-shadow);
    border: 3px solid var(--color-white);
}

.why-choose-content {
    padding: 0 30px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.feature-item {
    background: var(--color-white);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    border: 1px solid var(--color-border);
    box-shadow: 0 4px 15px var(--color-shadow);
}

.feature-item:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-teal), var(--color-teal-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 24px;
    color: var(--color-white);
}

.feature-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--color-text-dark);
}

.feature-item p {
    color: var(--color-text-gray);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.btn-why-learn {
    display: inline-flex;
    align-items: center;
    padding: 15px 35px;
    background: var(--color-teal);
    color: var(--color-white);
    border: 2px solid var(--color-teal);
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-why-learn:hover {
    background: var(--color-teal-light);
    border-color: var(--color-teal-light);
    color: var(--color-white);
    transform: translateX(10px);
}

/* CTA Section */
.cta-section {
    padding: 120px 20px;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 140, 153, 0.9), rgba(201, 169, 97, 0.85));
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
}

.cta-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--color-white);
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    color: var(--color-white);
}

.btn-cta {
    display: inline-block;
    padding: 15px 50px;
    background: var(--color-white);
    color: var(--color-teal);
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--color-white);
}

.btn-cta:hover {
    background: transparent;
    color: var(--color-white);
    transform: scale(1.05);
}

/* ============================================
   MARQUEE REVIEWS SECTION - INFINITE LOOP
   ============================================ */
.reviews-section {
    padding: 80px 20px;
    background: var(--color-white);
    overflow: hidden;
}

.reviews-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 48px;
    color: var(--color-text-dark);
    margin-bottom: 20px;
    font-family: 'Italiana', serif;
}

.average-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: var(--color-cream);
    padding: 15px 30px;
    border-radius: 60px;
    border: 1px solid var(--color-border);
    flex-wrap: wrap;
    justify-content: center;
    box-shadow: 0 4px 15px var(--color-shadow);
}

.rating-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-gold);
}

.rating-stars {
    display: inline-flex;
    gap: 5px;
}

.rating-stars i {
    color: var(--color-border);
    font-size: 20px;
}

.rating-stars i.active {
    color: var(--color-gold);
}

.rating-count {
    color: var(--color-text-gray);
    font-size: 16px;
}

/* Marquee Container */
.reviews-marquee-container {
    width: 100%;
    overflow: hidden;
    margin: 40px 0;
    position: relative;
}

.reviews-marquee-container::before,
.reviews-marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.reviews-marquee-container::before {
    left: 0;
    background: linear-gradient(90deg, var(--color-white) 0%, transparent 100%);
}

.reviews-marquee-container::after {
    right: 0;
    background: linear-gradient(270deg, var(--color-white) 0%, transparent 100%);
}

.reviews-marquee {
    display: flex;
    width: fit-content;
    animation: scroll 40s linear infinite;
    will-change: transform;
}

.reviews-marquee:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.marquee-review-card {
    flex: 0 0 300px;
    background: var(--color-cream);
    border-radius: 20px;
    padding: 25px;
    margin: 0 15px;
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--color-shadow);
}

.marquee-review-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.15);
    background: var(--color-white);
}

.marquee-review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.marquee-reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.marquee-reviewer i {
    font-size: 40px;
    color: var(--color-gold);
}

.marquee-reviewer h4 {
    margin: 0 0 5px 0;
    color: var(--color-text-dark);
    font-size: 16px;
}

.marquee-reviewer span {
    color: var(--color-text-gray);
    font-size: 13px;
}

.marquee-rating {
    display: flex;
    gap: 3px;
}

.marquee-rating i {
    color: var(--color-border);
    font-size: 14px;
}

.marquee-rating i.active {
    color: var(--color-gold);
}

.marquee-review-text {
    color: var(--color-text-gray);
    font-size: 14px;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}

/* No Reviews Marquee (fallback) */
.no-reviews-marquee {
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
}

.marquee-content {
    display: flex;
    animation: scroll-slow 20s linear infinite;
    width: fit-content;
}

.marquee-item {
    flex: 0 0 300px;
    background: var(--color-cream);
    border: 2px dashed var(--color-gold);
    border-radius: 50px;
    padding: 20px 30px;
    margin: 0 15px;
    color: var(--color-gold);
    font-size: 18px;
    text-align: center;
    font-weight: 500;
}

@keyframes scroll-slow {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .marquee-review-card {
        flex: 0 0 260px;
        padding: 20px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .average-rating-badge {
        flex-direction: column;
        gap: 10px;
        padding: 15px 20px;
    }
    
    .rating-number {
        font-size: 28px;
    }
    
    .rating-stars i {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .marquee-review-card {
        flex: 0 0 220px;
        padding: 15px;
    }
    
    .marquee-reviewer i {
        font-size: 32px;
    }
    
    .marquee-reviewer h4 {
        font-size: 14px;
    }
    
    .marquee-reviewer span {
        font-size: 12px;
    }
    
    .marquee-review-text {
        font-size: 13px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .rating-number {
        font-size: 24px;
    }
}

/* Write Review Section */
.write-review-section {
    background: var(--color-cream);
    border-radius: 15px;
    padding: 40px;
    margin: 60px 20px 20px;
    border: 1px solid var(--color-border);
    box-shadow: 0 4px 15px var(--color-shadow);
}

.write-review-title {
    text-align: center;
    color: var(--color-text-dark);
    font-size: 28px;
    margin-bottom: 30px;
    font-family: 'Italiana', serif;
}

.alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert.success {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid #28a745;
    color: #28a745;
}

.alert.error {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid #dc3545;
    color: #dc3545;
}

.review-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--color-text-dark);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    color: var(--color-text-dark);
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

.form-control::placeholder {
    color: var(--color-text-gray);
}

/* Rating Input Styling */
.rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
}

.rating-input input {
    display: none;
}

.rating-input label {
    cursor: pointer;
    margin-bottom: 0;
    color: var(--color-border);
    transition: all 0.3s ease;
}

.rating-input label i {
    font-size: 30px;
}

.rating-input input:checked ~ label,
.rating-input label:hover,
.rating-input label:hover ~ label {
    color: var(--color-gold);
}

.btn-submit-review {
    width: 100%;
    padding: 15px 30px;
    background: var(--color-teal);
    color: var(--color-white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit-review:hover {
    background: var(--color-teal-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 140, 153, 0.2);
}

.no-reviews {
    text-align: center;
    padding: 60px 20px;
    background: var(--color-cream);
    border-radius: 15px;
    color: var(--color-text-gray);
    font-size: 18px;
    grid-column: 1 / -1;
}

.no-reviews i {
    font-size: 48px;
    color: var(--color-gold);
    margin-bottom: 20px;
    display: block;
}

/* Footer */
.footer-content {
    background: var(--color-text-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 80px 0 30px;
}

.footer-description {
    margin: 20px 0;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.elementor-social-icons-wrapper {
    display: flex;
    gap: 15px;
}

.elementor-social-icons-wrapper .elementor-icon {
    width: 40px;
    height: 40px;
    background: rgba(201, 169, 97, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    transition: var(--transition);
}

.elementor-social-icons-wrapper .elementor-icon:hover {
    background: var(--color-gold);
    color: var(--color-text-dark);
    transform: translateY(-3px);
}

.contact-info {
    list-style: none;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-info li i {
    color: var(--color-gold);
    width: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-gold);
    padding-left: 5px;
}

/* Mobile Menu */
.mobile_menu_wrapper {
    position: fixed;
    top: 0;
    right: -100%;
    width: 350px;
    height: 100vh;
    background: var(--color-white);
    z-index: 1001;
    padding: 40px;
    transition: var(--transition);
    overflow-y: auto;
    box-shadow: -5px 0 25px var(--color-shadow);
}

.mobile_menu_wrapper.active {
    right: 0;
}

#mobile_menu_close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--color-text-dark);
    font-size: 24px;
}

.mobile_main_nav {
    list-style: none;
    margin-top: 50px;
}

.mobile_main_nav li {
    margin-bottom: 20px;
}

.mobile_main_nav a {
    font-family: var(--font-primary);
    font-size: 26px;
    line-height: 2;
    color: var(--color-text-dark);
}

.mobile_main_nav .sub-menu {
    list-style: none;
    padding-left: 20px;
    margin-top: 10px;
}

.mobile_main_nav .sub-menu a {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-text-gray);
}

/* Google Translate Container */
#google_translate_element {
    margin-left: 20px;
    position: relative;
    z-index: 1000;
}

/* Hide Google Translate Top Banner */
.goog-te-banner-frame,
.goog-te-banner,
.skiptranslate iframe {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

body {
    top: 0px !important;
    position: static !important;
}

html {
    margin-top: 0 !important;
}

/* Style Google Translate Button */
.goog-te-gadget-simple {
    background: var(--color-white) !important;
    border: 1px solid var(--color-border) !important;
    border-radius: 30px !important;
    padding: 8px 20px !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    cursor: pointer !important;
}

.goog-te-gadget-simple:hover {
    border-color: var(--color-gold) !important;
    background: var(--color-cream) !important;
}

.goog-te-gadget-simple span {
    color: var(--color-text-dark) !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 14px !important;
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
}

.goog-te-gadget-simple img {
    display: none !important;
}

/* Style Dropdown Menu */
.goog-te-menu-frame {
    box-shadow: 0 10px 30px var(--color-shadow) !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    border: 1px solid var(--color-border) !important;
    z-index: 9999 !important;
}

.goog-te-menu2 {
    background: var(--color-white) !important;
    border: none !important;
    padding: 10px 0 !important;
    max-height: 400px !important;
    overflow-y: auto !important;
}

.goog-te-menu2-item {
    background: transparent !important;
    border: none !important;
}

.goog-te-menu2-item a {
    display: block !important;
    padding: 10px 20px !important;
    color: var(--color-text-dark) !important;
    text-decoration: none !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
    border-left: 3px solid transparent !important;
    font-family: 'Inter', sans-serif !important;
}

.goog-te-menu2-item a:hover {
    background: var(--color-cream) !important;
    border-left-color: var(--color-gold) !important;
}

.goog-te-menu2-item-selected a {
    background: var(--color-gold) !important;
    color: var(--color-white) !important;
    border-left-color: var(--color-gold-dark) !important;
}

/* Custom Language Switcher (fallback) */
.custom-language-switcher {
    position: relative;
    margin-left: 20px;
    display: inline-block;
}

.lang-btn {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 30px;
    padding: 8px 20px;
    color: var(--color-text-dark);
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.lang-btn:hover {
    border-color: var(--color-gold);
    background: var(--color-cream);
}

.lang-btn i {
    color: var(--color-gold);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    box-shadow: 0 10px 30px var(--color-shadow);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    padding: 10px 0;
    margin-top: 5px;
    max-height: 300px;
    overflow-y: auto;
}

.custom-language-switcher:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown li {
    margin: 0;
    padding: 0;
}

.lang-dropdown li a {
    display: block;
    padding: 8px 20px;
    color: var(--color-text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    border-left: 3px solid transparent;
}

.lang-dropdown li a:hover {
    background: var(--color-cream);
    border-left-color: var(--color-gold);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .tours-vertical-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .nav {
        display: none;
    }
    
    .themegoods-animated-text h1,
    .themegoods-animated-text h2 {
        font-size: 48px;
    }
    
    .elementor-element-43ee9c1,
    .elementor-element-6d6fb54 {
        position: relative;
        width: 100%;
        transform: none;
    }
    
    #google_translate_element {
        margin-left: 10px;
    }
    
    .custom-language-switcher {
        margin-left: 10px;
    }
}

@media (max-width: 992px) {
    .tours-vertical-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .why-choose-images {
        min-height: 400px;
        margin-bottom: 40px;
    }
    
    .features-grid {
        gap: 15px;
    }
    
    .cta-content h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    
    h1 { font-size: 36px; }
    h2 { font-size: 30px; }
    
    .themegoods-animated-text h1,
    .themegoods-animated-text h2 {
        font-size: 36px;
    }
    
    .elementor-element-e8116a1 {
        min-height: 500px;
    }
    
    .tours-vertical-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 15px;
    }
    
    .tour-vertical-image {
        height: 250px;
    }
    
    .tour-vertical-content {
        padding: 20px 15px;
    }
    
    .tour-vertical-content h3 {
        font-size: 18px;
    }
    
    .tour-price-value {
        font-size: 20px;
    }
    
    .average-rating-badge {
        flex-direction: column;
        gap: 10px;
        padding: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-content {
        padding: 0;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
    
    .btn-cta {
        padding: 12px 30px;
        font-size: 16px;
    }
    
    .goog-te-gadget-simple {
        padding: 6px 15px !important;
    }
    
    .lang-btn {
        padding: 6px 15px;
    }
}

@media (max-width: 576px) {
    .tours-vertical-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .tour-vertical-image {
        height: 280px;
    }
    
    .write-review-section {
        padding: 25px 15px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .btn-view-all-tours {
        padding: 12px 25px;
        font-size: 16px;
    }
    
    .reviews-section {
        padding: 50px 15px;
    }
    
    .why-choose-section {
        padding: 60px 15px;
    }
    
    .cta-section {
        padding: 80px 15px;
    }
    
    .rating-number {
        font-size: 28px;
    }
    
    .goog-te-gadget-simple span span:not(.goog-te-menu-value):not(.goog-te-menu-value span) {
        display: none !important;
    }
    
    .goog-te-gadget-simple {
        padding: 6px 12px !important;
    }
    
    .goog-te-gadget-simple:after {
        content: '🌐';
        font-size: 20px;
    }
    
    .lang-btn span {
        display: none;
    }
    
    .lang-btn i {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 24px;
    }
    
    .rating-number {
        font-size: 24px;
    }
    
    .rating-stars i {
        font-size: 14px;
    }
    
    .tour-vertical-card {
        margin-bottom: 15px;
    }
    
    .tour-vertical-image {
        height: 220px;
    }
    
    .tour-vertical-content h3 {
        font-size: 16px;
    }
    
    .tour-excerpt {
        font-size: 13px;
    }
    
    .tour-price-value {
        font-size: 18px;
    }
    
    .btn-tour-details {
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .write-review-title {
        font-size: 22px;
    }
    
    .btn-submit-review {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .review-card-mobile {
        padding: 15px;
    }
    
    .reviewer-info-mobile i {
        font-size: 30px;
    }
    
    .reviewer-info-mobile h4 {
        font-size: 14px;
    }
}

/* Center the Welcome Section */
.welcome-section {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem 1rem;
    background: var(--color-white);
}

.welcome-section .e-con-inner {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

.welcome-section .welcome-subtitle,
.welcome-section .elementor-heading-title,
.welcome-section .welcome-text {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .welcome-section .e-con-inner {
        max-width: 100%;
        padding: 0 15px;
    }
}

/* ============================================
   HERO SLIDER - LIGHT THEME
   ============================================ */
.hero-slider-container {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    margin-top: 0;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.4) 0%, rgba(44, 140, 153, 0.3) 50%, rgba(201, 169, 97, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--color-white);
    z-index: 2;
    width: 90%;
    max-width: 900px;
    padding: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    display: block;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 4px;
    margin-bottom: 20px;
    color: var(--color-white);
    text-transform: uppercase;
    animation: fadeInDown 1s ease;
}

.hero-title {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--color-white);
    font-family: 'Italiana', serif;
    text-shadow: 3px 3px 10px rgba(0,0,0,0.6);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-description {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--color-white);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.4s both;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-btn.primary {
    background: var(--color-gold);
    color: var(--color-white);
    border: 2px solid var(--color-gold);
}

.hero-btn.primary:hover {
    background: var(--color-gold-dark);
    border-color: var(--color-gold-dark);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(201, 169, 97, 0.4);
}

.hero-btn.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    border: 2px solid var(--color-white);
    backdrop-filter: blur(5px);
}

.hero-btn.secondary:hover {
    background: var(--color-white);
    color: var(--color-teal);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.4);
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--color-white);
    border-radius: 50%;
    color: var(--color-white);
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.slider-arrow:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-white);
}

.slider-arrow.prev {
    left: 30px;
}

.slider-arrow.next {
    right: 30px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--color-gold);
    transform: scale(1.3);
}

.dot:hover {
    background: var(--color-gold);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
}

.scroll-text {
    display: block;
    color: var(--color-white);
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-gold), transparent);
    margin: 0 auto;
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }
    50% {
        transform: scaleY(1);
        transform-origin: top;
    }
    50.1% {
        transform: scaleY(1);
        transform-origin: bottom;
    }
    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 56px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .hero-description {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        letter-spacing: 2px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .hero-btn {
        width: 100%;
        text-align: center;
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .slider-arrow.prev {
        left: 15px;
    }
    
    .slider-arrow.next {
        right: 15px;
    }
    
    .slider-dots {
        bottom: 80px;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
    
    .scroll-line {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }
    
    .hero-description {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .hero-buttons {
        max-width: 250px;
    }
    
    .hero-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .slider-arrow {
        display: none;
    }
    
    .slider-dots {
        bottom: 70px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
}

.mobile-menu-toggle {
    display: none;
}

@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: block;
    }
    .mobile-menu-toggle a {
        color: var(--color-text-dark);
        font-size: 24px;
    }
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 20px;
}

.social-icons a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color-cream);
    border: 1px solid var(--color-border);
    color: var(--color-text-dark);
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(201, 169, 97, 0.3);
}

/* Footer container */
.footer-content .e-con-inner {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

/* Footer columns */
.footer-content .e-con-full {
    flex: 1;
    min-width: 250px;
}

/* Mobile */
@media (max-width: 768px) {
    .footer-content .e-con-inner {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .contact-info li {
        justify-content: center;
    }
    
    .footer-links {
        padding: 0;
    }
    
    .footer-links li {
        margin-bottom: 10px;
    }
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
}

.elementor-element-8decaca {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.elementor-element-d7265e8 {
    text-align: center;
    width: 100%;
    padding: 10px 0;
}

.elementor-element-d7265e8 a {
    margin: 0 5px;
}
