:root {
    --primary-blue: #0047AB;
    --secondary-blue: #0066CC;
    --light-blue: #E8F4FD;
    --accent-orange: #FF8C00;
    --dark-orange: #E67E00;
    --light-orange: #FFF3E0;
    --white: #FFFFFF;
    --dark: #1A1A2E;
    --darker: #0d0d1a;
    --gray: #6B7280;
    --light-gray: #F8F9FA;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.08), 0 2px 4px -1px rgba(0,0,0,0.04);
    --shadow-lg: 0 10px 25px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.15);
    --shadow-glow: 0 4px 20px rgba(0, 71, 171, 0.15);
    --shadow-orange: 0 4px 20px rgba(255, 140, 0, 0.25);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Tajawal', sans-serif;
    background: var(--white);
    color: var(--dark);
    line-height: 1.8;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--dark);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-blue);
}

/* ===== Top Alert & Contact Bar ===== */
.top-bar {
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.top-bar-left {
    display: flex;
    gap: 15px;
    align-items: center;
}

.top-bar-right {
    display: flex;
    gap: 12px;
    align-items: center;
}

.top-bar a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.top-bar a:hover {
    color: var(--accent-orange);
}

/* ===== Sticky Navigation Bar ===== */
nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

nav.scrolled {
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img {
    height: 55px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s;
}

.logo img:hover {
    transform: scale(1.02);
}

.nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 700;
    font-size: 14px;
    position: relative;
    transition: color 0.3s;
    padding: 8px 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 3px;
    background: var(--accent-orange);
    border-radius: 2px;
    transition: width 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-blue);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-cta {
    background: linear-gradient(135deg, var(--accent-orange), var(--dark-orange));
    color: var(--white);
    padding: 10px 22px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-blue);
    cursor: pointer;
}

/* ===== Common Sections ===== */
.section {
    padding: 80px 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h3 {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.section-header p {
    color: var(--gray);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.section-line {
    width: 60px;
    height: 4px;
    background: var(--accent-orange);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* ===== Buttons Common ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-primary {
    background: var(--accent-orange);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: var(--dark-orange);
    transform: translateY(-3px);
    box-shadow: var(--shadow-orange);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===== Hero Section ===== */
.hero {
    background: linear-gradient(135deg, rgba(0,71,171,0.9), rgba(0,102,204,0.85)), 
                url('banner.jpg') center/cover;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255,140,0,0.1) 0%, transparent 60%);
    z-index: 1;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    color: var(--white);
}

.hero-badge {
    display: inline-block;
    background: var(--accent-orange);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.hero h2 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero h2 span {
    color: var(--accent-orange);
}

.hero p {
    font-size: clamp(16px, 2vw, 18px);
    margin-bottom: 30px;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 350px;
    border-radius: 25px;
    box-shadow: var(--shadow-xl);
    border: 5px solid rgba(255,255,255,0.2);
    animation: fadeInUp 1.2s ease 0.3s both;
}

/* ===== Search Widget Box ===== */
.search-box {
    background: var(--white);
    border-radius: 24px;
    padding: 30px 40px;
    box-shadow: var(--shadow-xl);
    margin-top: -60px;
    position: relative;
    z-index: 10;
    border: 1px solid #f0f0f0;
}

.search-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    justify-content: flex-end;
}

.search-tab {
    padding: 10px 24px;
    border: 2px solid transparent;
    background: transparent;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    color: var(--gray);
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-tab.active {
    background: var(--light-blue);
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.search-tab:hover {
    color: var(--primary-blue);
}

.search-form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr auto;
    gap: 15px;
    align-items: end;
}

.search-form .form-group {
    position: relative;
}

.search-form .form-group label {
    display: block;
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 6px;
    font-weight: 700;
}

.search-form .form-group input,
.search-form .form-group select {
    width: 100%;
    padding: 14px 15px 14px 42px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-family: inherit;
    font-size: 14px;
    transition: all 0.3s;
    background: var(--light-gray);
    height: 50px;
}

.search-form .form-group input:focus,
.search-form .form-group select:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: var(--white);
    box-shadow: var(--shadow-glow);
}

.search-form .form-group i {
    position: absolute;
    left: 15px;
    bottom: 16px;
    color: var(--primary-blue);
    font-size: 16px;
}

.search-btn {
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 0 35px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 50px;
    box-shadow: var(--shadow-glow);
}

.search-btn:hover {
    background: var(--secondary-blue);
    transform: translateY(-2px);
}

/* ===== Services Page / Grid ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s;
    border: 1px solid #F0F0F0;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--light-blue);
}

.service-icon {
    width: 75px;
    height: 75px;
    background: var(--light-blue);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: var(--primary-blue);
    transition: all 0.3s;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
}

.service-card h4 {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--gray);
    font-size: 14.5px;
    line-height: 1.7;
}

/* ===== Saudi / Domestic Tourism Section ===== */
.saudi-destinations {
    background: linear-gradient(135deg, #1A1A2E, #121224);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.saudi-destinations::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 140, 0, 0.03);
    border-radius: 50%;
}

.saudi-destinations .section-header h3 {
    color: var(--white);
}

.saudi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.saudi-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 380px;
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

.saudi-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.saudi-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--white);
}

.saudi-overlay h4 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 5px;
}

.saudi-overlay p {
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 10px;
}

.saudi-overlay .tag {
    align-self: flex-start;
    background: var(--accent-orange);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
}

/* ===== Global Destinations Grid ===== */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.destination-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 360px;
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.destination-card:hover img {
    transform: scale(1.08);
}

.destination-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 13, 26, 0.9) 0%, rgba(13, 13, 26, 0.3) 50%, transparent 100%);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--white);
}

.destination-overlay h4 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 5px;
}

.destination-overlay .price {
    color: var(--accent-orange);
    font-size: 18px;
    font-weight: 700;
}

.destination-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-orange);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}

/* ===== Why Choose Us (About Section Layout) ===== */
.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.why-us-image {
    position: relative;
}

.why-us-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--accent-orange);
    color: var(--white);
    padding: 22px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-orange);
}

.experience-badge .num {
    font-size: 40px;
    font-weight: 900;
    display: block;
    line-height: 1;
    margin-bottom: 5px;
}

.experience-badge .text {
    font-size: 13px;
    font-weight: 700;
}

.why-us-content h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.why-us-content p {
    color: var(--gray);
    margin-bottom: 25px;
    font-size: 16px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
}

.feature-list li i {
    width: 35px;
    height: 35px;
    background: var(--light-orange);
    color: var(--accent-orange);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

/* ===== Travel Packages Section ===== */
.packages {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
}

.packages .section-header h3 {
    color: var(--white);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.package-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    color: var(--dark);
    transition: transform 0.4s, box-shadow 0.4s;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255,255,255,0.1);
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.package-header {
    padding: 30px 25px;
    text-align: center;
    border-bottom: 1px solid #F0F0F0;
}

.package-header h4 {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-blue);
}

.package-price {
    font-size: 34px;
    font-weight: 900;
    color: var(--accent-orange);
    margin: 10px 0;
}

.package-price span {
    font-size: 14px;
    color: var(--gray);
    font-weight: 500;
}

.package-body {
    padding: 25px;
}

.package-body ul {
    list-style: none;
    margin-bottom: 20px;
}

.package-body li {
    padding: 10px 0;
    border-bottom: 1px solid #F6F6F6;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--dark);
}

.package-body li i {
    color: #22C55E;
}

.package-btn {
    display: flex;
    width: 100%;
    padding: 12px;
    background: var(--primary-blue);
    color: var(--white);
    text-align: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s;
    border: none;
    font-family: inherit;
    cursor: pointer;
}

.package-btn:hover {
    background: var(--accent-orange);
}

.package-card.featured {
    transform: scale(1.03);
    border: 2px solid var(--accent-orange);
}

.package-card.featured .package-header {
    background: var(--accent-orange);
}

.package-card.featured .package-header h4 {
    color: var(--white);
}

.package-card.featured .package-price {
    color: var(--white);
}

.package-card.featured .package-price span {
    color: var(--light-orange);
}

/* ===== Corporate Section / Recruitment ===== */
.corporate {
    background: linear-gradient(135deg, #1A1A2E, #121224);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.corporate::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 450px;
    height: 450px;
    background: rgba(255, 140, 0, 0.04);
    border-radius: 50%;
}

.corporate .section-header h3 {
    color: var(--white);
}

.corporate-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.corporate-content h4 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--accent-orange);
}

.corporate-content p {
    font-size: 15.5px;
    line-height: 1.85;
    margin-bottom: 25px;
    opacity: 0.9;
}

.corporate-features {
    list-style: none;
    margin-bottom: 30px;
}

.corporate-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 15px;
}

.corporate-features li i {
    width: 32px;
    height: 32px;
    background: var(--accent-orange);
    color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.corporate-form {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--dark);
}

.corporate-form h4 {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 25px;
    text-align: center;
}

.corporate-form input,
.corporate-form select,
.corporate-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    font-family: inherit;
    font-size: 14px;
    margin-bottom: 15px;
    transition: all 0.3s;
}

.corporate-form input:focus,
.corporate-form select:focus,
.corporate-form textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-glow);
}

.corporate-form textarea {
    min-height: 100px;
    resize: vertical;
}

.corporate-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.corporate-type {
    background: var(--light-gray);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.corporate-type.active,
.corporate-type:hover {
    border-color: var(--accent-orange);
    background: var(--light-orange);
}

.corporate-type i {
    font-size: 26px;
    color: var(--primary-blue);
    margin-bottom: 8px;
    display: block;
}

.corporate-type span {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--dark);
}

.corporate-form .submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--accent-orange), var(--dark-orange));
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
}

.corporate-form .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange);
}

/* ===== Testimonials Section ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #F0F0F0;
    position: relative;
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card::before {
    content: '"';
    font-size: 70px;
    color: var(--light-blue);
    position: absolute;
    top: 5px;
    right: 20px;
    font-family: serif;
    line-height: 1;
}

.stars {
    color: #FBBF24;
    margin-bottom: 12px;
    font-size: 13px;
}

.testimonial-text {
    color: var(--gray);
    font-size: 14.5px;
    margin-bottom: 20px;
    line-height: 1.75;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-orange);
}

.testimonial-author h5 {
    font-size: 15.5px;
    font-weight: 800;
    color: var(--dark);
}

.testimonial-author span {
    font-size: 12.5px;
    color: var(--gray);
}

/* ===== Counter Stats Bar ===== */
.stats {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    color: var(--white);
}

.stat-item i {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--accent-orange);
}

.stat-item .num {
    font-size: 38px;
    font-weight: 900;
    display: block;
    line-height: 1.2;
}

.stat-item .label {
    font-size: 15px;
    opacity: 0.9;
    font-weight: 500;
}

/* ===== Contact Form Page Layout ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--gray);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item i {
    width: 48px;
    height: 48px;
    background: var(--light-blue);
    color: var(--primary-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-item div h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 3px;
}

.contact-item div span,
.contact-item div a {
    font-size: 14px;
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item div a:hover {
    color: var(--accent-orange);
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid #f0f0f0;
}

.contact-form h4 {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    font-family: inherit;
    font-size: 14px;
    margin-bottom: 15px;
    transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-glow);
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-map {
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid #e5e7eb;
    margin-top: 25px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== Footer Section ===== */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about h4 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--accent-orange);
}

.footer-about p {
    color: #9CA3AF;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 16px;
}

.social-links a:hover {
    background: var(--accent-orange);
    transform: translateY(-3px);
}

.footer-links h5 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 20px;
    border-right: 3px solid var(--accent-orange);
    padding-right: 10px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #9CA3AF;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-orange);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    color: #9ca3af;
    font-size: 14px;
}

.footer-contact-item i {
    color: var(--accent-orange);
    margin-top: 3px;
}

.footer-contact-item a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact-item a:hover {
    color: var(--accent-orange);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 20px;
    text-align: center;
    color: #9CA3AF;
    font-size: 13.5px;
}

/* ===== WhatsApp Float Action Button ===== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    text-decoration: none;
    transition: transform 0.3s;
    animation: pulse 2.5s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.08);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 5px 30px rgba(37, 211, 102, 0.7); }
}

/* ===== Preloader Loader ===== */
.loader {
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-plane {
    font-size: 3.5rem;
    color: var(--accent-orange);
    animation: fly 2s infinite ease-in-out;
}

@keyframes fly {
    0%, 100% { transform: translateX(-15px) translateY(0); }
    50% { transform: translateX(15px) translateY(-10px); }
}

.loader-text {
    color: var(--white);
    margin-top: 1rem;
    font-weight: 700;
    font-size: 1.25rem;
}

.loader-dots span {
    width: 8px;
    height: 8px;
    background: var(--accent-orange);
    border-radius: 50%;
    display: inline-block;
    animation: dotBounce 1.2s infinite ease-in-out;
    margin: 0 2px;
}

.loader-dots span:nth-child(2) { animation-delay: 0.2s; }
.loader-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes dotBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ===== Mobile Side Navigation Menu ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--dark);
    z-index: 2000;
    padding: 2rem;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 30px rgba(0,0,0,0.3);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    margin-bottom: 2rem;
}

.mobile-menu-links {
    list-style: none;
}

.mobile-menu-links li {
    margin-bottom: 1rem;
}

.mobile-menu-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 700;
    display: block;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s;
}

.mobile-menu-links a:hover,
.mobile-menu-links a.active {
    background: rgba(255, 140, 0, 0.1);
    color: var(--accent-orange);
}

/* ===== Booking Pop-up Modal ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13, 13, 26, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    background: var(--white);
    border-radius: 24px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2.5rem;
    position: relative;
    box-shadow: var(--shadow-xl);
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-box {
    transform: scale(1);
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: var(--light-gray);
    border: 1px solid #e5e7eb;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--dark);
    cursor: pointer;
    transition: all 0.3s;
}

.modal-close:hover {
    background: #ef4444;
    color: var(--white);
    border-color: transparent;
}

.modal-header {
    margin-bottom: 2rem;
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-header p {
    color: var(--gray);
    font-size: 14px;
    margin-top: 0.25rem;
}

/* ===== Animations Keyframes ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* ===== Scroll Animations Triggered by JS ===== */
.fade-in { opacity: 0; transform: translateY(25px); transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left { opacity: 0; transform: translateX(-40px); transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right { opacity: 0; transform: translateX(40px); transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.fade-in-right.visible { opacity: 1; transform: translateX(0); }
.scale-in { opacity: 0; transform: scale(0.92); transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.scale-in.visible { opacity: 1; transform: scale(1); }
.counter { display: inline-block; }

/* ===== Responsive Adaptations ===== */
@media (max-width: 1200px) {
    .destinations-grid { grid-template-columns: repeat(2, 1fr); }
    .saudi-grid { grid-template-columns: repeat(3, 1fr); }
    .packages-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
    .nav-links, .nav-actions .nav-cta { display: none; }
    .mobile-menu-btn { display: block; }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-buttons { justify-content: center; }
    .hero-image { display: none; }
    
    .why-us-grid, .corporate-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .search-form {
        grid-template-columns: 1fr 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    .saudi-grid { grid-template-columns: repeat(2, 1fr); }
    .search-box {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .services-grid,
    .destinations-grid,
    .saudi-grid,
    .packages-grid,
    .testimonials-grid,
    .stats-grid,
    .search-form,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .package-card.featured {
        transform: none;
    }
    .corporate-types {
        grid-template-columns: 1fr;
    }
}
