/* ===== Base Styles ===== */
:root {
    --bg-color: #FFF8E9;
    --accent-color: #E86A33;
    --text-color: #2D3142;
    --button-color: #1D5B7E;
    --white: #FFFFFF;
    --light-gray: #F9F2E2;
    --border-color: #E0D4C1;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease-in-out;
    --secondary-accent: #D2AB67;
    --footer-bg: #2D3142;
    --footer-text: #F9F2E2;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    html {
        scroll-padding-top: 30px; /* Try 100~120px depending on header height */
    }
}

html {
    scroll-behavior: smooth;
}

html.no-smooth-scroll {
    scroll-behavior: auto;
}

body {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

/* Consistent Page Title Styling */
.simple-page-header h1,
.section-header h2,
.galleries-section h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 1.5rem;
}

.simple-page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Dark Hero Headers for Tour and Gallery Pages */
.hero-section .hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 3rem;
    color: white;
    text-align: center;
    margin-bottom: 1rem;
}

.hero-section .hero-content p {
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.hero-section {
    padding: 6rem 0 4rem;
    min-height: 400px;
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .simple-page-header h1 {
        font-size: 2.2rem;
    }
    
    .hero-section .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-section .hero-content p {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .section-header h2,
    .galleries-section h2 {
        font-size: 2rem;
    }
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--button-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.divider {
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
    margin: 1rem auto 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s ease;
    border: none;
    letter-spacing: 0.5px;
    min-width: 180px;
}

.primary-btn {
    background-color: var(--accent-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(232, 106, 51, 0.3);
}

.primary-btn:hover {
    background-color: var(--secondary-accent);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(232, 106, 51, 0.4);
}

.secondary-btn {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 2px solid var(--white);
    backdrop-filter: blur(5px);
}

.secondary-btn:hover {
    background-color: var(--white);
    color: var(--button-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* ===== Navigation ===== */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(253, 248, 243, 0.95);
    box-shadow: 0 2px 15px var(--shadow-color);
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo-img {
    max-height: 75px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo a:hover .logo-img {
    transform: scale(1.05);
}

.language-toggle {
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: 1.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.35rem 0.5rem;
    border-radius: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.language-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 1.5rem;
    transition: all 0.3s ease;
}

.language-btn.active {
    background-color: var(--accent-color);
    color: white;
}

/* Small City Blocks Row */
.city-blocks-row {
    display: flex;
    gap: 25px;
    margin-top: 50px;
    justify-content: center;
}

.city-block-small {
    flex: 1;
    max-width: 300px;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.city-block-small:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    text-decoration: none;
}

.city-image-small {
    position: relative;
    width: 100%;
    height: 100%;
}

.city-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.city-block-small:hover .city-image-small img {
    transform: scale(1.05);
}

.city-overlay-small {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 20px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.city-block-small:hover .city-overlay-small {
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
}

.city-overlay-small h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: white;
}

.city-overlay-small i {
    font-size: 1rem;
    opacity: 0.8;
    transition: transform 0.3s ease;
}

.city-block-small:hover .city-overlay-small i {
    transform: translateX(3px);
}

/* Mobile responsiveness for small city blocks */
@media (max-width: 768px) {
    .city-blocks-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .city-block-small {
        max-width: 100%;
        height: 150px;
    }
    
    .city-overlay-small h3 {
        font-size: 1rem;
    }
}

/* Dubai Tours Page Styles */
.simple-page-header {
    background-color: white;
    padding: 40px 0 20px 0;
    text-align: center;
}

.simple-page-header h1 {
    color: #8B4513;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
}

.tours-detail-section {
    padding: 80px 0;
    background-color: #fff !important;
}

/* Force white background for Dubai tours page */
body.dubai-tours-page {
    background-color: #fff !important;
}

.dubai-tours-page .container {
    background-color: #fff !important;
}

/* Tour Preview Cards */
.tour-preview-cards {
    margin-top: 50px;
}

.tour-preview-card {
    display: flex;
    align-items: center;
    background: #f8efe5;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: 1px solid #f0f0f0;
    
}

.tour-preview-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.tour-preview-image {
    flex: 0 0 200px;
    height: 150px;
    overflow: hidden;
}

.tour-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tour-preview-card:hover .tour-preview-image img {
    transform: scale(1.05);
}

.tour-preview-content {
    flex: 1;
    padding: 25px;
}

.tour-preview-content h3 {
    color: #8B4513;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.tour-preview-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.tour-preview-meta {
    display: flex;
    gap: 20px;
}

.tour-preview-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #666;
    font-size: 0.85rem;
    font-weight: 500;
}

.tour-preview-meta i {
    color: #D2691E;
    font-size: 0.8rem;
}

.tour-preview-toggle {
    flex: 0 0 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.tour-preview-toggle i {
    color: #D2691E;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.tour-preview-card.expanded .tour-preview-toggle i {
    transform: rotate(180deg);
}

/* Expandable Tour Details */
.tour-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.3s ease;
    opacity: 0;
    background: #f8efe5;
    border-radius: 0 0 15px 15px;
    margin-top: -20px;
    margin-bottom: 20px;
    border: 1px solid #f0f0f0;
    border-top: none;
}

.tour-details.expanded {
    max-height: 3000px;
    opacity: 1;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tour-detail-content {
    padding: 30px;
}

.tours-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 50px;
}

.tour-detail-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.tour-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
}

.tour-header h3 {
    color: #8B4513;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
}

.tour-duration {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #D2691E;
    font-weight: 500;
}

.tour-pickup {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    color: #666;
    font-size: 0.95rem;
}

.tour-pickup i {
    color: #D2691E;
}

.tour-itinerary h4,
.tour-addons h4,
.tour-includes h4,
.tour-food h4 {
    color: #8B4513;
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tour-addons {
    margin: 30px 0;
    background: #FFF8E9;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
}

.tour-addons ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tour-addons ul li {
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

.tour-addons ul li:last-child {
    border-bottom: none;
}

.tour-itinerary ul,
.tour-food ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tour-itinerary li,
.tour-food li {
    margin: 10px 0;
    padding-left: 20px;
    position: relative;
    color: #666;
    line-height: 1.5;
}

.tour-itinerary li:before,
.tour-food li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #D2691E;
    font-weight: bold;
}

.itinerary-sections {
    margin-top: 15px;
}

.morning-section,
.afternoon-section {
    margin-bottom: 25px;
}

.morning-section h5,
.afternoon-section h5 {
    color: #8B4513;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.addons-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

/* Legacy addon-item styles for backward compatibility */
.addon-item {
    background: linear-gradient(135deg, #D2691E, #FF8C00);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.tour-includes {
    margin: 25px 0;
}

.includes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 15px;
}

.included h4 i {
    color: #28a745;
}

.not-included h4 i {
    color: #dc3545;
}

.included ul,
.not-included ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.included li,
.not-included li {
    margin: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #666;
    font-size: 0.95rem;
}

.included li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.not-included li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: bold;
}

.tour-action {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.tours-contact {
    margin-top: 60px;
    text-align: center;
}

.contact-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
}

.contact-card h3 {
    color: #8B4513;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.contact-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.contact-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Mobile responsiveness for tours page */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .tour-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .includes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-options {
        flex-direction: column;
        align-items: center;
    }
    
    .addons-grid {
        justify-content: center;
    }
}

/* Dubai Tours Section on Homepage */
.dubai-tours-section {
    padding: 80px 0;
    background-color: #fff;
}

.dubai-tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.dubai-tour-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.dubai-tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.tour-card-header {
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 20px;
    margin-bottom: 25px;
}

.tour-card-header h3 {
    color: #8B4513;
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.tour-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.duration, .pickup {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.duration i, .pickup i {
    color: #D2691E;
    font-size: 0.9rem;
}

.tour-section {
    margin-bottom: 25px;
}

.tour-section h4 {
    color: #8B4513;
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.tour-section h4 i {
    color: #D2691E;
    font-size: 1rem;
}

.tour-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tour-list li {
    margin: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.tour-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #D2691E;
    font-weight: bold;
    font-size: 1.2rem;
}

.tour-list.addons li {
    background: linear-gradient(135deg, #D2691E, #FF8C00);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    margin: 6px 8px 6px 0;
    display: inline-block;
}

.tour-list.addons li:before {
    display: none;
}

.full-day-itinerary {
    margin-top: 15px;
}

.morning-tours, .afternoon-tours {
    margin-bottom: 20px;
}

.morning-tours h5, .afternoon-tours h5 {
    color: #8B4513;
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.tour-includes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin: 25px 0;
    padding: 20px 0;
    border-top: 1px solid #f0f0f0;
}

.included h4 {
    color: #28a745 !important;
}

.not-included h4 {
    color: #dc3545 !important;
}

.included h4 i {
    color: #28a745 !important;
}

.not-included h4 i {
    color: #dc3545 !important;
}

.included .tour-list li:before {
    content: "✓";
    color: #28a745;
    font-size: 1rem;
}

.not-included .tour-list li:before {
    content: "✗";
    color: #dc3545;
    font-size: 1rem;
}

.tour-action {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

/* Mobile responsiveness for Dubai tours */
@media (max-width: 768px) {
    .dubai-tours-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .dubai-tour-card {
        padding: 25px;
    }
    
    .tour-card-header h3 {
        font-size: 1.4rem;
    }
    
    .tour-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .tour-includes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tour-list.addons li {
        display: block;
        margin: 8px 0;
    }
    
    /* Mobile styles for tour preview cards */
    .tour-preview-card {
        flex-direction: column;
        text-align: left;
    }
    
    .tour-preview-image {
        flex: none;
        width: 100%;
        height: 180px;
    }
    
    .tour-preview-content {
        padding: 20px;
    }
    
    .tour-preview-content h3 {
        font-size: 1.2rem;
    }
    
    .tour-preview-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .tour-preview-toggle {
        position: absolute;
        top: 15px;
        right: 15px;
        flex: none;
        padding: 10px;
        background: rgba(255,255,255,0.9);
        border-radius: 50%;
        width: 40px;
        height: 40px;
    }
    
    .tour-detail-content {
        padding: 20px;
    }
}

.language-btn:hover:not(.active) {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--accent-color);
}

.language-separator {
    margin: 0 0.25rem;
    color: var(--text-color);
    opacity: 0.5;
}

.nav-menu {
    display: flex;
    list-style-type: none;
}

.nav-menu li {
    margin-left: 1.5rem;
}

.nav-link {
    color: var(--text-color);
    font-weight: 600;
    padding: 0.5rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link:focus::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero-section {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
    background: url('../images/burj-khalifa.png') no-repeat center center/cover;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 2.5rem;
    border-radius: 12px;
    backdrop-filter: blur(3px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.hero-content h1 {
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-size: 3.2rem;
    letter-spacing: 0.5px;
}

.hero-content h2 {
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    color: var(--secondary-accent);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.7;
    color: var(--white);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* ===== About Section ===== */
.about-section {
    padding: 6rem 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-color);
}

.about-image img {
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 1.9rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    line-height: 1.4;
}

.about-intro {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    border-left: 3px solid var(--secondary-accent);
    padding-left: 1rem;
}

.highlight {
    color: var(--accent-color);
    font-weight: 600;
}

.certification-year {
    font-style: italic;
    font-size: 0.9em;
    opacity: 0.8;
}

.about-text p {
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.about-quote {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: var(--light-gray);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-accent);
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.5;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.03);
}

.about-quote p {
    letter-spacing: 0.5px;
}

.about-quote p:first-child {
    font-style: italic;
    color: var(--text-color);
}

.about-quote p:last-child {
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 0;
}

.guide-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.credential {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background-color: var(--light-gray);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.credential:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.credential i {
    color: var(--accent-color);
}

/* ===== Tours Section ===== */
.tours-section {
    padding: 6rem 0;
    background-color: var(--light-gray);
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tour-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: var(--transition);
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow-color);
}

.tour-image {
    height: 200px;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tour-card:hover .tour-image img {
    transform: scale(1.1);
}

.tour-content {
    padding: 1.5rem;
}

.tour-highlights ul {
    list-style-type: none;
    margin-bottom: 1.5rem;
}

.tour-highlights li {
    padding: 0.25rem 0;
    display: flex;
    align-items: center;
}

.tour-highlights li i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

.tour-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tour-option {
    padding: 0.25rem 0.75rem;
    background-color: rgba(232, 106, 51, 0.15);
    color: var(--accent-color);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
}

/* ===== Agencies Section ===== */
.agencies-section {
    padding: 6rem 0;
}

.agencies-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.agencies-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-color);
}

.agencies-text {
    flex: 1;
}

.agency-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.benefit {
    position: relative;
    padding-left: 3rem;
}

.benefit i {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.5rem;
    color: var(--accent-color);
}

.partnership-intro {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--accent-color);
    margin: 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(232, 106, 51, 0.2);
}

.benefit h4 {
    margin-bottom: 0.5rem;
}

.benefit p {
    font-size: 0.875rem;
    margin-bottom: 0;
}



/* ===== Country Select Styles ===== */
.country-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    background-color: white;
    color: var(--text-color);
    transition: var(--transition);
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
}

.country-select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(232, 106, 51, 0.1);
}

.country-select option {
    padding: 8px 12px;
    font-size: 1rem;
}

/* ===== Reviews Section ===== */
.reviews-section {
    padding: 6rem 0;
}

.reviews-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-display {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review-card {
    background-color: #f8efe5;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--accent-color);
}

.review-header {
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-photo {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.reviewer-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.default-avatar {
    width: 100%;
    height: 100%;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1.2rem;
}

.reviewer-details h4 {
    margin: 0 0 2px 0;
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: bold;
}

.reviewer-country {
    font-size: 0.85rem;
    color: var(--secondary-accent);
    margin-bottom: 4px;
}

.stars {
    display: flex;
    gap: 2px;
    color: #ffc107;
    font-size: 0.9rem;
}

.review-content p {
    margin: 0;
    font-style: italic;
    color: var(--text-color);
    line-height: 1.5;
}

.see-all-reviews {
    text-align: center;
    margin-top: 1.5rem;
}

.see-all-reviews .btn {
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.see-all-reviews .btn:hover {
    background-color: var(--accent-color);
    color: white;
}

.review-form-container {
    background-color: #fff7f2;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.review-form-container h3 {
    margin-bottom: 1.5rem;
    color: var(--text-color);
    text-align: center;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.rating-input {
    display: flex;
    flex-direction: row-reverse;
    gap: 5px;
    justify-content: flex-end;
}

.rating-input input {
    display: none;
}

.rating-input label {
    cursor: pointer;
    font-size: 1.5rem;
    color: #ddd;
    transition: color 0.2s ease;
}

.rating-input input:checked ~ label,
.rating-input label:hover,
.rating-input label:hover ~ label {
    color: #ffc107;
}

.review-submit {
    background-color: var(--accent-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(232, 106, 51, 0.3);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s ease;
    letter-spacing: 0.5px;
    min-width: 180px;
}

.review-submit:hover {
    background-color: var(--secondary-accent);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(232, 106, 51, 0.4);
}

.country-flag {
    font-size: 0.9rem;
    color: #666;
    font-weight: normal;
}

.form-help {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.25rem;
    display: block;
}

.review-photos {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.additional-photo {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #f0f0f0;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.additional-photo:hover {
    transform: scale(1.05);
}

.clickable-photo {
    cursor: pointer;
}

.clickable-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Photo Modal */
.photo-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.photo-modal-content {
    margin: auto;
    display: block;
    width: auto;
    height: auto;
    max-width: 90%;
    max-height: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.photo-modal-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 10000;
}

.photo-modal-close:hover {
    color: #bbb;
    text-decoration: none;
}

@media (max-width: 768px) {
    .photo-modal-content {
        max-width: 95%;
        max-height: 85%;
    }
    
    .photo-modal-close {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }
}

/* All Reviews Page Styling */
.all-reviews-page {
    background-color: var(--white);
}

.reviews-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 6rem 0 4rem;
    color: white;
    text-align: center;
}

.reviews-hero .hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.reviews-hero .hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.all-reviews-section {
    padding: 4rem 0;
    background-color: var(--light-gray);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.reviews-grid .review-card {
    background-color: #f8efe5;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--accent-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reviews-grid .review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.review-date {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.25rem;
    display: block;
}

.back-to-home {
    text-align: center;
    margin-top: 3rem;
}

.back-to-home .btn {
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.back-to-home .btn:hover {
    background-color: var(--accent-color);
    color: white;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .reviews-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .review-card {
        padding: 1rem;
    }
    
    .reviewer-photo {
        width: 40px;
        height: 40px;
    }
    
    .review-form-container {
        padding: 1.5rem;
    }
    
    .reviews-hero .hero-content h1 {
        font-size: 2rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .reviews-grid .review-card {
        padding: 1.5rem;
    }
}

/* Safe animation fix for reviews, tours, and gallery only */
.review-card,
.tour-card,
.gallery-item {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.review-card.animate,
.tour-card.animate,
.gallery-item.animate {
  opacity: 1;
  transform: none;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: 'Raleway', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(232, 106, 51, 0.2);
}

/* ===== Contact Section ===== */
.contact-section {
    padding: 6rem 0;
    background-color: var(--light-gray);
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.contact-info h3 {
    margin-bottom: 1.5rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-method i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.method-details h4 {
    margin-bottom: 0.5rem;
}

.method-details p {
    margin-bottom: 0.75rem;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.social-follow {
    margin-top: 2rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--light-gray);
    color: var(--text-color);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--accent-color);
    color: var(--white);
    transform: translateY(-3px);
}

.contact-form-container {
    background-color: #fff7f2;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow-color);
}

/* ===== Agency Page Styles ===== */
.agency-hero {
    height: 60vh;
    min-height: 400px;
    background: url('https://pixabay.com/get/gbf66b4d31fae4e8e273a6c9c1abe5c8e62cd81ba6ff7eb0a97c8dae4b5b4bbff76fe94b8b1ba3fdd48a15c1d7f3e5e03_1280.jpg') no-repeat center center/cover;
}

.agency-intro-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.back-link {
    text-align: left;
    margin-bottom: 2rem;
}

.back-link a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--button-color);
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background-color: rgba(29, 91, 126, 0.1);
}

.back-link a:hover {
    background-color: rgba(29, 91, 126, 0.2);
    transform: translateX(-5px);
}

.agency-intro {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.agency-intro .lead {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: var(--accent-color);
    line-height: 1.5;
}

.agency-offers-section {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.offer-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow-color);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow-color);
}

.offer-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.offer-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.offer-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.agency-why-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.why-partner-container {
    margin-top: 3rem;
}

.why-partner-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-color);
}

.why-partner-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.why-partner-image:hover img {
    transform: scale(1.05);
}

.why-partner-content {
    flex: 1;
}

.why-partner-list {
    list-style: none;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.why-partner-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.why-partner-list li i {
    color: var(--accent-color);
    font-size: 1.25rem;
    margin-right: 1rem;
}

.partnership-models-section {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.models-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.model-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow-color);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.model-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow-color);
}

.model-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.model-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.model-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.work-together-section {
    padding: 5rem 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://pixabay.com/get/g9aeb6d76be6deea2c4e53d39b1bd63d1d1d28ba6fe1486b10dd4fed4bfd8be8f3b1429fb0583f02b3ceb3faca16d3e07_1280.jpg') no-repeat center center/cover;
    color: var(--white);
    text-align: center;
}

.work-together-content {
    max-width: 700px;
    margin: 0 auto;
}

.work-together-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.work-together-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.back-btn {
    background-color: rgba(0, 0, 0, 0.3);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.back-btn:hover {
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--white);
}

.section-divider {
    height: 1px;
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(to right, rgba(0,0,0,0), rgba(232, 106, 51, 0.3), rgba(0,0,0,0));
    margin-top: -1rem;
    margin-bottom: 1rem;
}

/* ===== Gallery Section ===== */
.galleries-section {
    padding: 6rem 0;
    background-color: var(--light-gray);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--shadow-color);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ===== Footer ===== */
footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo h3 {
    margin-left: 0.5rem;
    margin-bottom: 0;
    color: var(--white);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.footer-nav h4, .footer-social h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-nav h4::after, .footer-social h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-nav ul {
    list-style-type: none;
}

.footer-nav ul li {
    margin-bottom: 0.75rem;
}

.footer-nav ul li a {
    color: #CCCCCC;
    transition: var(--transition);
}

.footer-nav ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-social .social-icons a {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.footer-social .social-icons a:hover {
    background-color: var(--accent-color);
}

.copyright {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
    color: #AAAAAA;
}

/* ===== Flash Messages ===== */
.flash-messages {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 1000;
    max-width: 400px;
}

.flash-message {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 0.75rem;
    box-shadow: 0 5px 15px var(--shadow-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: slideIn 0.3s ease forwards;
}

.flash-message.success {
    background-color: #D4EDDA;
    color: #155724;
    border-left: 4px solid #155724;
}

.flash-message.error {
    background-color: #F8D7DA;
    color: #721C24;
    border-left: 4px solid #721C24;
}

.close-flash {
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition);
}

.close-flash:hover {
    opacity: 1;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ===== Responsive Styles ===== */
@media screen and (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .about-content, .agencies-content {
        flex-direction: column;
    }
    
    .about-image, .agencies-image {
        margin-bottom: 2rem;
    }
    
    .agency-benefits {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .language-toggle {
        position: absolute;
        top: 20px;
        right: 70px;
        margin: 0;
        z-index: 100;
        background-color: var(--white);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 15px var(--shadow-color);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 0;
        padding: 1rem 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .contact-container {
        gap: 2rem;
    }
}

@media screen and (max-width: 576px) {
    body {
        font-size: 14px;
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .about-section, .tours-section, .agencies-section, .reviews-section, .contact-section, .galleries-section {
        padding: 4rem 0;
    }
    
    .flash-messages {
        max-width: 90%;
        left: 5%;
        right: 5%;
    }
}

.hero-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 150px; /* height of navbar */
  min-height: calc(100vh - 0px); /* Use full viewport height */
  background: url('../images/burj-khalifa.png') no-repeat center center/cover;
  position: relative;
}

.hero-content {
  background: rgba(32, 24, 12, 0.68); /* Or your current bg */
  border-radius: 20px;
  padding: 4rem 2rem 4rem 2rem; /* Increase top/bottom padding! */
  width: 80vw;
  max-width: 900px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  margin-top: 0; /* sits right under navbar */
  margin-bottom: 4rem; /* stretches it further down */
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}

/* ADD THIS MOBILE FIX INSTEAD */
@media (max-width: 768px) {
  .hero-section {
    min-height: unset !important;
    height: auto !important;
    padding-top: 120px !important;
    padding-bottom: 2rem !important;
  }
  .hero-content {
    padding: 1.5rem 0.5rem 2rem 0.5rem !important;
    width: 99vw !important;
    max-width: 99vw !important;
    margin-bottom: 0 !important;
  }
}
@media (max-width: 700px) {
  .footer-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px; /* space between logo and socials */
    flex-direction: row;
    padding: 16px 0;
  }
  .footer-logo {
    margin: 0; /* remove extra margin */
    text-align: right;
  }
  .footer-links {
    margin: 0; /* remove extra margin */
    text-align: left;
  }
  .footer-social h4 {
    margin-bottom: 8px; /* reduce spacing */
  }
