/* ===== ROOT VARIABLES ===== */
:root {
    --gold: #27AE9C;
    --gold-light: #5BC4B6;
    --gold-dark: #1D8A7D;
    --desert-sand: #E8F4F2;
    --desert-dark: #555555;
    --charcoal: #2C2C2C;
    --dark-bg: #1a1a1a;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== GLOBAL RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
}

body[dir="rtl"] {
    direction: rtl;
    font-family: 'Cairo', 'Inter', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4 {
    font-family: 'Kanit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 16px;
    color: var(--charcoal);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin: 16px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--desert-dark);
    margin-bottom: 48px;
}

/* ===== LANGUAGE SWITCHER (NEW DESIGN) ===== */
.language-switcher-new {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.lang-toggle-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.98);
    border: 2px solid var(--gold);
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    color: var(--charcoal);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.lang-toggle-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.lang-toggle-btn i.fa-globe {
    color: var(--gold);
    font-size: 16px;
}

.lang-toggle-btn i.fa-chevron-down {
    color: var(--gold);
    font-size: 12px;
    transition: transform 0.3s;
}

.language-switcher-new:hover .fa-chevron-down {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    border: 2px solid var(--gold);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 150px;
    overflow: hidden;
}

.language-switcher-new:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    width: 100%;
    padding: 12px 18px;
    border: none;
    background: transparent;
    text-align: left;
    font-size: 14px;
    font-weight: 500;
    color: var(--charcoal);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.lang-option:hover {
    background: var(--gold-light);
}

.lang-option.active {
    background: var(--gold);
    color: var(--white);
}

.flag-icon {
    font-size: 18px;
}

/* ===== SITE HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.site-logo {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2416 100%);
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><linearGradient id="g" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23D4AF37;stop-opacity:0.1"/><stop offset="100%" style="stop-color:%23B8942C;stop-opacity:0.05"/></linearGradient></defs><path d="M0 300 Q300 150 600 300 T1200 300 V600 H0 Z" fill="url(%23g)"/></svg>');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--gold) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.05;
    animation: float 60s linear infinite;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(-50px, -50px) rotate(360deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    color: var(--white);
    margin-bottom: 16px;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: var(--gold-light);
    margin-bottom: 32px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-highlights {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: fadeInUp 1.2s ease-out 0.4s both;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.highlight-icon {
    font-size: 1.5rem;
}

.hero-price {
    color: var(--gold);
    font-size: 1.125rem;
    margin-top: 16px;
    font-weight: 600;
    animation: fadeInUp 1.6s ease-out 0.8s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--gold-light);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    font-size: 2rem;
    margin-top: 8px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* ===== BUTTONS ===== */
.cta-primary {
    display: inline-block;
    padding: 16px 48px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    animation: fadeInUp 1.4s ease-out 0.6s both;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
}

.cta-primary:active {
    transform: translateY(0);
}

/* ===== WHY SECTION ===== */
.why-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #faf8f3 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.benefit-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--charcoal);
}

.benefit-card p {
    color: var(--desert-dark);
    line-height: 1.6;
}

/* ===== ITINERARY SECTION ===== */
.itinerary-section {
    padding: 100px 0;
    background: var(--white);
}

.itinerary-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.itinerary-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--gold), var(--gold-light));
}

.itinerary-day {
    position: relative;
    padding-left: 90px;
    margin-bottom: 60px;
}

.day-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    border: 4px solid var(--white);
}

.day-number {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
}

.day-content {
    background: #faf8f3;
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.day-content:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.day-title {
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.day-description {
    color: var(--desert-dark);
    margin-bottom: 16px;
    line-height: 1.7;
}

.day-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.highlight-tag {
    background: var(--gold-light);
    color: var(--desert-dark);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* ===== INCLUDED SECTION ===== */
.included-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #faf8f3 0%, #ffffff 100%);
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 48px;
    max-width: 1000px;
    margin: 0 auto;
}

.included-title {
    font-size: 1.75rem;
    margin-bottom: 24px;
    color: var(--charcoal);
}

.included-title.not-included {
    color: var(--desert-dark);
}

.included-list {
    list-style: none;
}

.included-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    color: var(--charcoal);
    line-height: 1.7;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.included-list li:last-child {
    border-bottom: none;
}

.included-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
    font-size: 1.25rem;
}

.not-included+.included-list li::before {
    content: '—';
    color: var(--desert-dark);
}

/* ===== DATES SECTION ===== */
.dates-section {
    padding: 100px 0;
    background: var(--white);
}

.date-selector {
    max-width: 800px;
    margin: 0 auto;
}

.date-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
}

.year-btn {
    width: 50px;
    height: 50px;
    border: 2px solid var(--gold);
    background: var(--white);
    color: var(--gold);
    font-size: 1.5rem;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.year-btn:hover {
    background: var(--gold);
    color: var(--white);
}

.current-year {
    font-size: 2rem;
    font-weight: 700;
    color: var(--charcoal);
    min-width: 120px;
    text-align: center;
}

.months-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 16px;
    margin-bottom: 40px;
}

.month-card {
    padding: 20px;
    background: #faf8f3;
    border: 2px solid transparent;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.month-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

.month-card.selected {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    border-color: var(--gold-dark);
}

/* Removed .disabled styles - all months are now selectable */

.selected-date-display {
    text-align: center;
    padding: 24px;
    background: #faf8f3;
    border-radius: 12px;
    border-left: 4px solid var(--gold);
}

.selected-date-display p {
    color: var(--desert-dark);
    margin-bottom: 8px;
}

.selected-date-display span {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold);
}

/* ===== BOOKING FORM ===== */
.booking-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2416 100%);
}

.booking-section .section-title,
.booking-section .section-subtitle {
    color: var(--white);
}

.booking-section .section-title::after {
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.booking-section .section-subtitle {
    color: var(--gold-light);
}

.booking-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 48px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--gold-light) !important;
    margin-bottom: 8px;
    font-weight: 600;
}

/* FORCE uniform colors for all form elements */
.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid rgba(212, 175, 55, 0.3) !important;
    background: rgba(255, 255, 255, 0.95) !important;
    color: #2C2C2C !important;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
    color: rgba(44, 44, 44, 0.5) !important;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none !important;
    border-color: var(--gold) !important;
    background: rgba(255, 255, 255, 1) !important;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15) !important;
}

/* Override ANY inline styles from JavaScript */
.form-group input[style],
.form-group select[style],
.form-group textarea[style] {
    border-color: rgba(212, 175, 55, 0.3) !important;
}

.form-group input[style]:focus,
.form-group select[style]:focus,
.form-group textarea[style]:focus {
    border-color: var(--gold) !important;
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #faf8f3 0%, #ffffff 100%);
}

.trust-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Kanit', serif;
}

.stat-label {
    color: var(--desert-dark);
    margin-top: 8px;
    font-size: 0.95rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.review-card {
    background: var(--white);
    padding: 28px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 4px solid var(--gold);
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.review-stars {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 14px;
}

.review-text {
    color: var(--charcoal);
    line-height: 1.7;
    margin-bottom: 18px;
    font-style: italic;
    font-size: 0.95rem;
}

.review-author strong {
    color: var(--charcoal);
    font-weight: 700;
    font-size: 0.95rem;
}

.review-author span {
    color: var(--desert-dark);
    margin-left: 8px;
    font-size: 0.9rem;
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #faf8f3 0%, #ffffff 100%);
}

.trust-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Kanit', serif;
}

.stat-label {
    color: var(--desert-dark);
    margin-top: 8px;
    font-size: 1rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.review-card {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 4px solid var(--gold);
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.review-stars {
    color: var(--gold);
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.review-text {
    color: var(--charcoal);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.review-author strong {
    color: var(--charcoal);
    font-weight: 700;
}

.review-author span {
    color: var(--desert-dark);
    margin-left: 8px;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 100px 0;
    background: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 16px;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--gold);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: #faf8f3;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--charcoal);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--gold-light);
}

.faq-arrow {
    font-size: 1.5rem;
    color: var(--gold);
    transition: var(--transition);
}

.faq-item.active .faq-arrow {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 20px 24px;
    color: var(--desert-dark);
    line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
    padding: 60px 0 30px;
    background: var(--dark-bg);
    color: var(--white);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    color: var(--gold);
    font-size: 1.75rem;
    margin-bottom: 12px;
}

.footer-brand p {
    color: var(--gold-light);
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-column h4 {
    color: var(--gold);
    margin-bottom: 16px;
    font-size: 1.125rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: var(--gold-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--gold);
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--gold-light);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.8);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .benefits-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .included-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        flex-direction: column;
        gap: 30px;
    }

    .booking-form {
        padding: 32px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .itinerary-timeline::before {
        left: 15px;
    }

    .day-marker {
        width: 40px;
        height: 40px;
    }

    .day-number {
        font-size: 1.125rem;
    }

    .itinerary-day {
        padding-left: 70px;
    }

    .trust-stats {
        gap: 40px;
    }

    .language-switcher {
        top: 10px;
        right: 10px;
    }
}