/*
Theme Name: Simsar Travel Pro
Theme URI: https://jhapatechnical.network
Author: Jhapa Technical Pvt.Ltd
Author URI: https://jhapatechnical.network
Description: A modern, dynamic WordPress theme for Simsar Travel and Tourism LLC (UAE). Built for travel packages, visa services, hotels, and tour bookings with full WooCommerce, ACF, WPML, and Elementor support.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: simsar-travel
Tags: travel, tourism, booking, multilingual, rtl, elementor, woocommerce
*/

/* ============================================= */
/* 1. RESET & BASE                              */
/* ============================================= */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary: #0a4d8c;
    --primary-dark: #073766;
    --primary-light: #e6f0fa;
    --secondary: #f9a825;
    --secondary-dark: #e69500;
    --accent: #00b4d8;
    --accent-dark: #008bb0;
    --gold: #f6d365;
    --gold-dark: #fda085;
    --dark: #0a1e32;
    --dark-light: #1a2a3a;
    --gray: #5a6f87;
    --gray-light: #f0f4f9;
    --light: #f8f9fa;
    --white: #ffffff;
    --success: #00b894;
    --danger: #dc3545;
    --warning: #f6d365;
    --gradient: linear-gradient(135deg, #0a4d8c 0%, #00b4d8 100%);
    --gold-gradient: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
    --shadow: 0 10px 40px rgba(10, 42, 74, 0.08);
    --shadow-lg: 0 20px 60px rgba(10, 42, 74, 0.12);
    --shadow-xl: 0 30px 80px rgba(10, 42, 74, 0.16);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-family);
    color: var(--dark);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

a:hover {
    color: var(--primary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

/* ============================================= */
/* 2. UTILITY CLASSES                           */
/* ============================================= */

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

.section-dark {
    background: var(--dark);
    color: var(--white);
}

.section-light {
    background: var(--light);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title .subtitle {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    background: var(--primary-light);
    padding: 5px 18px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.section-title h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.section-title h2 .highlight {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title p {
    color: var(--gray);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gold-gradient {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-center {
    text-align: center;
}

.text-muted {
    color: var(--gray);
}

/* ============================================= */
/* 3. BUTTONS                                   */
/* ============================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
    text-decoration: none;
    line-height: 1.2;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 8px 30px rgba(10, 77, 140, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(10, 77, 140, 0.35);
    color: var(--white);
}

.btn-secondary {
    background: var(--gold-gradient);
    color: var(--dark);
    box-shadow: 0 8px 30px rgba(246, 211, 101, 0.25);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(246, 211, 101, 0.35);
    color: var(--dark);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.3);
    color: var(--primary);
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.8rem;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ============================================= */
/* 4. HEADER - COMPLETE                         */
/* ============================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 4px 40px rgba(10, 42, 74, 0.06);
}

.site-header .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
}

.site-header.scrolled .site-logo {
    color: var(--dark);
}

.site-logo img {
    max-height: 50px;
    width: auto;
}

.site-logo .logo-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
}

.site-logo .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.site-logo .logo-text .title {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.site-logo .logo-text .tagline {
    font-size: 0.5rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.6;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.main-nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav ul li {
    position: relative;
}

.main-nav ul li a {
    color: var(--white);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 6px 0;
    position: relative;
    transition: var(--transition);
}

.site-header.scrolled .main-nav ul li a {
    color: var(--dark);
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

.main-nav ul li a:hover::after,
.main-nav ul li.current-menu-item a::after {
    width: 100%;
}

.main-nav ul li a:hover {
    color: var(--secondary);
}

/* Dropdown */
.main-nav ul li ul.sub-menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 220px;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    padding: 10px 0;
    z-index: 100;
    border: 1px solid rgba(10, 77, 140, 0.04);
}

.main-nav ul li:hover ul.sub-menu {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.main-nav ul li ul.sub-menu li a {
    color: var(--dark);
    padding: 8px 20px;
    display: block;
    font-size: 0.85rem;
    border-left: 3px solid transparent;
}

.main-nav ul li ul.sub-menu li a::after {
    display: none;
}

.main-nav ul li ul.sub-menu li a:hover {
    background: var(--primary-light);
    border-left-color: var(--primary);
    color: var(--primary);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-phone {
    color: var(--white);
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.site-header.scrolled .header-phone {
    color: var(--dark);
}

.header-phone:hover {
    color: var(--secondary);
}

.header-search {
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    background: none;
    border: none;
    padding: 6px;
}

.site-header.scrolled .header-search {
    color: var(--dark);
}

.header-search:hover {
    color: var(--secondary);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 28px;
    height: 2.5px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.site-header.scrolled .mobile-toggle span {
    background: var(--dark);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 999;
    backdrop-filter: blur(4px);
}

.mobile-menu-overlay.active {
    display: block;
}

.mobile-menu-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 80vw;
    height: 100%;
    background: var(--white);
    z-index: 1000;
    padding: 24px;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.06);
    transition: right 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-menu-drawer.open {
    right: 0;
}

.mobile-menu-drawer .drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-light);
    margin-bottom: 16px;
}

.mobile-menu-drawer .drawer-header .close-btn {
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--dark);
}

.mobile-menu-drawer .mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.mobile-menu-drawer .mobile-menu-list li {
    margin-bottom: 2px;
}

.mobile-menu-drawer .mobile-menu-list li a {
    display: block;
    padding: 12px 14px;
    color: var(--dark);
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.mobile-menu-drawer .mobile-menu-list li a:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.mobile-menu-drawer .drawer-footer {
    padding-top: 16px;
    border-top: 1px solid var(--gray-light);
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-menu-drawer .drawer-footer .mobile-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--dark);
}

.mobile-menu-drawer .drawer-footer .mobile-social {
    display: flex;
    gap: 12px;
}

.mobile-menu-drawer .drawer-footer .mobile-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.mobile-menu-drawer .drawer-footer .mobile-social a:hover {
    background: var(--primary);
    color: var(--white);
}

/* ============================================= */
/* 5. HERO                                      */
/* ============================================= */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
    background: var(--dark);
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 77, 140, 0.75) 0%, rgba(0, 0, 0, 0.45) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    padding: 120px 0 60px;
}

.hero-content .hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5.5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.hero-content h1 .highlight {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    margin-bottom: 35px;
    opacity: 0.9;
    max-width: 550px;
    line-height: 1.8;
}

.hero-content .hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Hero Search Box */
.hero-search-box {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px 35px;
    box-shadow: var(--shadow-xl);
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.hero-search-box .search-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 15px;
    align-items: end;
}

.hero-search-box .search-field label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--gray);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-search-box .search-field select,
.hero-search-box .search-field input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    transition: var(--transition);
    background: var(--white);
}

.hero-search-box .search-field select:focus,
.hero-search-box .search-field input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(10, 77, 140, 0.05);
}

/* ============================================= */
/* 6. PACKAGES GRID                             */
/* ============================================= */

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.package-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(10, 77, 140, 0.04);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(10, 77, 140, 0.08);
}

.package-card .card-image {
    height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.package-card .card-image .badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.package-card .card-image .badges .badge {
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.package-card .card-image .badges .badge.featured {
    background: var(--gold-gradient);
    color: var(--dark);
}

.package-card .card-image .badges .badge.popular {
    background: var(--danger);
    color: var(--white);
}

.package-card .card-image .badges .badge.new {
    background: var(--primary);
    color: var(--white);
}

.package-card .card-image .badges .badge.discount {
    background: var(--secondary);
    color: var(--white);
}

.package-card .card-image .price-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.package-card .card-image .price-badge .old {
    font-size: 0.65rem;
    color: var(--gray);
    text-decoration: line-through;
    font-weight: 400;
    margin-right: 4px;
}

.package-card .card-body {
    padding: 22px 24px 24px;
}

.package-card .card-body .destination {
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.package-card .card-body .title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
    line-height: 1.3;
}

.package-card .card-body .title a {
    color: inherit;
    text-decoration: none;
}

.package-card .card-body .title a:hover {
    color: var(--primary);
}

.package-card .card-body .excerpt {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.package-card .card-body .meta {
    display: flex;
    gap: 18px;
    padding-top: 14px;
    border-top: 1px solid var(--gray-light);
    margin-top: 14px;
    color: var(--gray);
    font-size: 0.8rem;
}

.package-card .card-body .meta i {
    color: var(--primary);
    margin-right: 4px;
}

.package-card .card-body .footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 18px;
}

/* ============================================= */
/* 7. VISA SERVICES                             */
/* ============================================= */

.visa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.visa-card {
    background: var(--white);
    padding: 30px 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    border-top: 4px solid var(--primary);
    transition: var(--transition);
}

.visa-card:hover {
    transform: translateY(-6px);
    border-top-color: var(--secondary);
    box-shadow: var(--shadow-lg);
}

.visa-card .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.6rem;
    box-shadow: 0 8px 25px rgba(10, 77, 140, 0.15);
}

.visa-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.visa-card .country {
    color: var(--gray);
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.visa-card .price {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    margin: 12px 0;
}

.visa-card .price small {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--gray);
}

.visa-card .features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin: 12px 0 18px;
}

.visa-card .features span {
    background: var(--gray-light);
    padding: 3px 12px;
    border-radius: 50px;
    font-size: 0.65rem;
    color: var(--gray);
}

/* ============================================= */
/* 8. HOTELS                                    */
/* ============================================= */

.hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.hotel-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(10, 77, 140, 0.04);
}

.hotel-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.hotel-card .image {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hotel-card .image .stars {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    color: var(--secondary);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
}

.hotel-card .image .badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold-gradient);
    color: var(--dark);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
}

.hotel-card .body {
    padding: 20px 22px;
}

.hotel-card .body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.hotel-card .body .location {
    color: var(--gray);
    font-size: 0.85rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hotel-card .body .amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 10px 0 14px;
}

.hotel-card .body .amenities span {
    background: var(--gray-light);
    padding: 2px 12px;
    border-radius: 50px;
    font-size: 0.65rem;
    color: var(--gray);
}

.hotel-card .body .footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid var(--gray-light);
}

.hotel-card .body .footer .price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}

.hotel-card .body .footer .price small {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--gray);
}

/* ============================================= */
/* 9. TESTIMONIALS                              */
/* ============================================= */

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
    border: 1px solid rgba(10, 77, 140, 0.04);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 5rem;
    color: var(--accent);
    opacity: 0.08;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card .stars {
    color: var(--secondary);
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.testimonial-card .text {
    font-style: italic;
    margin-bottom: 18px;
    color: var(--dark);
    line-height: 1.7;
    font-size: 0.95rem;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-card .author .avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-card .author .avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-card .author .info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
}

.testimonial-card .author .info p {
    font-size: 0.8rem;
    color: var(--gray);
}

/* ============================================= */
/* 10. WHY CHOOSE US                            */
/* ============================================= */

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.why-item {
    text-align: center;
    padding: 30px 20px;
    transition: var(--transition);
}

.why-item:hover {
    transform: translateY(-4px);
}

.why-item .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 8px 30px rgba(10, 77, 140, 0.15);
}

.why-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.why-item p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ============================================= */
/* 11. CTA BANNER                               */
/* ============================================= */

.cta-banner {
    background: var(--gradient);
    color: var(--white);
    padding: 60px 50px;
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.cta-banner .content {
    position: relative;
    z-index: 2;
}

.cta-banner .content h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 14px;
}

.cta-banner .content p {
    font-size: 1.05rem;
    margin-bottom: 25px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner .content .buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

/* ============================================= */
/* 12. BOOKING FORM                             */
/* ============================================= */

.booking-form-wrap {
    background: var(--white);
    padding: 40px 45px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(10, 77, 140, 0.04);
}

.booking-form-wrap .step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.booking-form-wrap .step-indicator::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: var(--gray-light);
    z-index: 0;
}

.booking-form-wrap .step-indicator .step {
    text-align: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

.booking-form-wrap .step-indicator .step .circle {
    width: 36px;
    height: 36px;
    margin: 0 auto 6px;
    background: var(--gray-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--transition);
}

.booking-form-wrap .step-indicator .step.active .circle {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(10, 77, 140, 0.2);
}

.booking-form-wrap .step-indicator .step.completed .circle {
    background: var(--success);
    color: var(--white);
}

.booking-form-wrap .step-indicator .step .label {
    font-size: 0.75rem;
    color: var(--gray);
    font-weight: 500;
}

.booking-form-wrap .step-indicator .step.active .label {
    color: var(--primary);
    font-weight: 600;
}

.booking-form-wrap .form-step {
    display: none;
}

.booking-form-wrap .form-step.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.booking-form-wrap .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.booking-form-wrap .form-group {
    margin-bottom: 18px;
}

.booking-form-wrap .form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--dark);
    margin-bottom: 6px;
}

.booking-form-wrap .form-group label .required {
    color: var(--danger);
}

.booking-form-wrap .form-group input,
.booking-form-wrap .form-group select,
.booking-form-wrap .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    transition: var(--transition);
    background: var(--white);
}

.booking-form-wrap .form-group input:focus,
.booking-form-wrap .form-group select:focus,
.booking-form-wrap .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(10, 77, 140, 0.05);
}

.booking-form-wrap .form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.booking-form-wrap .form-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
}

/* ============================================= */
/* 13. FOOTER                                   */
/* ============================================= */

.site-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 70px 0 0;
}

.site-footer .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.site-footer .footer-grid .footer-widget h4 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.site-footer .footer-grid .footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold-gradient);
}

.site-footer .footer-grid .footer-widget p {
    line-height: 1.8;
    font-size: 0.9rem;
}

.site-footer .footer-grid .footer-widget ul li {
    margin-bottom: 10px;
}

.site-footer .footer-grid .footer-widget ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    font-size: 0.9rem;
}

.site-footer .footer-grid .footer-widget ul li a:hover {
    color: var(--secondary);
    padding-left: 4px;
}

.site-footer .footer-grid .footer-widget .social-links {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.site-footer .footer-grid .footer-widget .social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.site-footer .footer-grid .footer-widget .social-links a:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-3px);
    border-color: var(--secondary);
}

.site-footer .footer-bottom {
    padding: 25px 0;
    text-align: center;
    font-size: 0.85rem;
}

.site-footer .footer-bottom .separator {
    margin: 0 10px;
    opacity: 0.2;
}

/* ============================================= */
/* 14. FLOATING BUTTONS                         */
/* ============================================= */

.float-btn {
    position: fixed;
    bottom: 30px;
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.float-btn:hover {
    transform: scale(1.08);
    color: var(--white);
}

.float-btn.whatsapp {
    right: 25px;
    background: #25d366;
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.float-btn.call {
    right: 95px;
    background: var(--gradient);
}

.float-btn.back-to-top {
    bottom: 95px;
    right: 25px;
    background: var(--dark);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.float-btn.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.float-btn.back-to-top:hover {
    background: var(--primary);
}

/* ============================================= */
/* 15. RTL SUPPORT                              */
/* ============================================= */

body.rtl {
    direction: rtl;
    text-align: right;
}

body.rtl .main-nav ul {
    flex-direction: row-reverse;
}

body.rtl .package-card .card-image .badges {
    left: auto;
    right: 15px;
}

body.rtl .package-card .card-image .price-badge {
    right: auto;
    left: 15px;
}

body.rtl .package-card .card-body .meta i {
    margin-right: 0;
    margin-left: 4px;
}

body.rtl .site-footer .footer-grid .footer-widget h4::after {
    left: auto;
    right: 0;
}

body.rtl .float-btn.whatsapp {
    right: auto;
    left: 25px;
}

body.rtl .float-btn.call {
    right: auto;
    left: 95px;
}

body.rtl .float-btn.back-to-top {
    right: auto;
    left: 25px;
}

/* ============================================= */
/* 16. RESPONSIVE - COMPLETE                    */
/* ============================================= */

/* Tablet */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-search-box .search-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .site-footer .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .section {
        padding: 60px 0;
    }
}

/* Mobile Large */
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .main-nav.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 20px;
        box-shadow: var(--shadow);
        border-radius: 0 0 var(--radius) var(--radius);
    }
    
    .main-nav.active ul {
        flex-direction: column;
        gap: 10px;
    }
    
    .main-nav.active ul li a {
        color: var(--dark);
        padding: 8px 0;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .header-phone {
        display: none;
    }
    
    .header-actions .btn {
        padding: 8px 16px;
        font-size: 0.75rem;
    }
    
    .hero {
        min-height: 90vh;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-search-box {
        padding: 20px;
        margin-top: 30px;
    }
    
    .hero-search-box .search-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-search-box .search-grid .btn {
        width: 100%;
    }
    
    .packages-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .visa-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
    }
    
    .hotels-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 20px;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .booking-form-wrap {
        padding: 25px 20px;
    }
    
    .booking-form-wrap .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .booking-form-wrap .step-indicator {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .booking-form-wrap .step-indicator .step {
        flex: 0 0 auto;
        min-width: 60px;
    }
    
    .booking-form-wrap .step-indicator::before {
        display: none;
    }
    
    .site-footer .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cta-banner {
        padding: 40px 25px;
    }
    
    .cta-banner .content h2 {
        font-size: 1.6rem;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .float-btn {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }
    
    .float-btn.whatsapp {
        right: 15px;
        bottom: 20px;
    }
    
    .float-btn.call {
        right: 75px;
        bottom: 20px;
    }
    
    .float-btn.back-to-top {
        bottom: 75px;
        right: 15px;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-content {
        padding: 100px 0 40px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-content .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-search-box {
        padding: 16px;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .visa-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto;
    }
    
    .hotels-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .why-item {
        padding: 20px 15px;
    }
    
    .why-item .icon {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }
    
    .why-item h3 {
        font-size: 0.95rem;
    }
    
    .why-item p {
        font-size: 0.8rem;
    }
    
    .section-title h2 {
        font-size: 1.5rem;
    }
    
    .site-footer {
        padding: 50px 0 0;
    }
    
    .site-footer .footer-grid {
        gap: 25px;
    }
    
    .cta-banner {
        padding: 30px 20px;
        border-radius: var(--radius);
    }
    
    .cta-banner .content h2 {
        font-size: 1.4rem;
    }
    
    .cta-banner .content .buttons {
        flex-direction: column;
    }
    
    .cta-banner .content .buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .booking-form-wrap {
        padding: 20px 16px;
    }
    
    .float-btn {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
    
    .float-btn.whatsapp {
        right: 12px;
        bottom: 16px;
    }
    
    .float-btn.call {
        right: 64px;
        bottom: 16px;
    }
}

/* Extra Small */
@media (max-width: 360px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .package-card .card-image {
        height: 180px;
    }
    
    .package-card .card-body {
        padding: 16px;
    }
    
    .package-card .card-body .title {
        font-size: 1rem;
    }
}

/* ============================================= */
/* 17. PRINT STYLES                             */
/* ============================================= */

@media print {
    .site-header,
    .site-footer,
    .float-btn,
    .hero-search-box,
    .btn {
        display: none !important;
    }
    
    .hero {
        min-height: auto;
        padding: 40px 0;
        background: var(--white);
        color: var(--dark);
    }
    
    .hero .hero-slider {
        display: none;
    }
    
    .hero .hero-content {
        padding: 0;
    }
    
    .hero .hero-content h1 {
        color: var(--dark);
    }
    
    .hero .hero-content h1 .highlight {
        color: var(--primary);
        -webkit-text-fill-color: var(--primary);
    }
    
    .container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .section {
        padding: 30px 0;
        break-inside: avoid;
    }
    
    .package-card,
    .hotel-card,
    .visa-card,
    .testimonial-card {
        break-inside: avoid;
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #e0e0e0;
    }
}