/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    /* Prevent font flash */
    font-display: swap;
}

/* Preload critical fonts */
@font-face {
    font-family: 'Cairo';
    font-display: swap;
}

@font-face {
    font-family: 'Tajawal';
    font-display: swap;
}

/* Remove list markers globally */
ul, ol {
    list-style: none;
}

ul::marker, ol::marker {
    display: none;
    content: '';
}

:root {
    --primary-color: #1A3B7A;
    --secondary-color: #E6B800;
    --accent-color: #A0B0C0;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Cairo', 'Tajawal', sans-serif;
    line-height: 1.8;
    color: var(--text-dark);
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
    /* Prevent layout shift on page load */
    opacity: 1;
    transition: opacity 0.3s ease;
}

body.page-ready {
    opacity: 1;
}

/* Prevent jitter on page transitions */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow);
    /* Prevent repaint jitter */
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    /* Prevent layout shift */
    object-fit: cover;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #1A3B7A);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-full {
    width: 100%;
}

/* Section Styles */
section {
    padding: 80px 0;
    /* Prevent layout shift */
    contain: layout;
}

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

.section-label {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-description {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.top-bar {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info a {
    color: var(--white);
    margin-left: 20px;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--secondary-color);
}

.contact-info i {
    margin-left: 5px;
}

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

.social-links a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.1);
}

/* فيسبوك */
.social-links a:nth-child(1) {
    background: #1877F2;
    color: var(--white);
}

/* تويتر */
.social-links a:nth-child(2) {
    background: #000000;
    color: var(--white);
}

/* إنستغرام */
.social-links a:nth-child(3) {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
}

/* واتساب */
.social-links a:nth-child(4) {
    background: #25D366;
    color: var(--white);
}

/* Navbar */
.navbar {
    padding: 15px 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
    /* Prevent layout shift */
    display: block;
    object-fit: contain;
}


.nav-menu {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    /* Prevent layout shift */
    min-height: 40px;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 15px;
    position: relative;
    padding: 5px 0;
    white-space: nowrap;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

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

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-dark);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(26, 59, 122, 0.8), rgba(26, 59, 122, 0.8)), 
                url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?w=1920&h=1080&fit=crop') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    margin-top: 110px;
    /* Prevent jitter during scroll */
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 59, 122, 0.9), rgba(26, 59, 122, 0.7));
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 10px;
    animation: fadeInDown 1s ease;
}

.hero-subtitle {
    font-size: 36px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 20px;
    animation: fadeInDown 1s ease 0.2s both;
}

.hero-description {
    font-size: 26px;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease 0.4s both;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
    font-size: 18px;
    margin-bottom: 15px;
    animation: fadeInUp 1s ease 0.5s both;
    color: var(--secondary-color);
    font-weight: 500;
    letter-spacing: 1px;
}

.hero-location {
    font-size: 20px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.6s both;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.7s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    color: var(--white);
    animation: bounce 2s infinite;
}

/* About Section */
.about {
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.features-list {
    display: grid;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-item i {
    font-size: 24px;
    color: var(--accent-color);
    margin-top: 3px;
}

.feature-item h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.feature-item p {
    font-size: 14px;
    margin: 0;
}

.about-image {
    position: relative;
}

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

.about-stats {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    display: flex;
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-item h4 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 14px;
    margin: 0;
}

/* Services Section */
.services {
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #1A3B7A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-icon i {
    font-size: 36px;
    color: var(--white);
}

.service-card h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 15px;
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link:hover {
    color: var(--secondary-color);
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(-5px);
}

/* Packages Section */
.packages {
    background: var(--white);
}

/* Visas Section */
.visas {
    background: var(--bg-light);
}

.visas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.visa-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

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

.visa-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), #1A3B7A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.visa-icon i {
    font-size: 40px;
    color: var(--white);
}

.visa-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.visa-card > p {
    font-size: 15px;
    margin-bottom: 25px;
}

.visa-features {
    text-align: right;
    margin-bottom: 30px;
}

.visa-features li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.visa-features li:last-child {
    border-bottom: none;
}

.visa-features i {
    color: var(--accent-color);
    font-size: 16px;
}

/* Corporate Section */
.corporate {
    background: var(--white);
}

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

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

.corporate-text h3 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.corporate-text > p {
    font-size: 16px;
    margin-bottom: 30px;
}

.corporate-features {
    display: grid;
    gap: 25px;
    margin-bottom: 30px;
}

.corporate-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.corporate-feature .feature-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.corporate-feature:hover .feature-icon {
    background: var(--primary-color);
}

.corporate-feature .feature-icon i {
    font-size: 24px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.corporate-feature:hover .feature-icon i {
    color: var(--white);
}

.corporate-feature h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.corporate-feature p {
    font-size: 14px;
    margin: 0;
}

/* Events (MICE) Section */
.events {
    background: var(--bg-light);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.event-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

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

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

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

.event-content {
    padding: 30px;
    text-align: center;
}

.event-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #1A3B7A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.event-icon i {
    font-size: 32px;
    color: var(--white);
}

.event-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.event-content p {
    font-size: 14px;
    margin: 0;
}

/* DMC Section */
.dmc {
    background: var(--white);
}

.dmc-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.dmc-text h3 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.dmc-text > p {
    font-size: 16px;
    margin-bottom: 30px;
}

.dmc-destinations {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.destination-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.destination-item:hover {
    background: var(--primary-color);
    transform: translateX(-5px);
}

.destination-icon {
    width: 45px;
    height: 45px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.destination-icon i {
    font-size: 20px;
    color: var(--primary-color);
}

.destination-item:hover .destination-icon i {
    color: var(--secondary-color);
}

.destination-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.destination-item:hover h4 {
    color: var(--white);
}

.destination-item p {
    font-size: 13px;
    margin: 0;
    transition: all 0.3s ease;
}

.destination-item:hover p {
    color: rgba(255, 255, 255, 0.9);
}

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

/* B2B Section */
.b2b {
    background: var(--bg-light);
}

.b2b-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.b2b-text h3 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.b2b-text > p {
    font-size: 16px;
    margin-bottom: 30px;
}

.b2b-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 22px;
    color: var(--white);
}

.benefit-item h4 {
    font-size: 17px;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.benefit-item p {
    font-size: 13px;
    margin: 0;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.package-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.package-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

.package-content {
    padding: 30px;
}

.package-content h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.package-content > p {
    font-size: 15px;
    margin-bottom: 20px;
}

.package-features {
    margin-bottom: 25px;
}

.package-features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features i {
    color: var(--accent-color);
    font-size: 16px;
}

.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 2px solid #eee;
}

.package-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 12px;
    color: var(--text-light);
}

.price-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

/* Why Choose Us Section */
.why-choose {
    background: linear-gradient(135deg, var(--primary-color), #1A3B7A);
    color: var(--white);
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-choose-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--white);
}

.why-choose-text > p {
    font-size: 16px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.why-features {
    display: grid;
    gap: 25px;
}

.why-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.why-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-icon i {
    font-size: 28px;
    color: var(--secondary-color);
}

.why-feature h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--white);
}

.why-feature p {
    font-size: 14px;
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
}

.why-choose-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

/* Testimonials Section */
.testimonials {
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: var(--secondary-color);
    font-size: 18px;
    margin-left: 3px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text-dark);
    font-style: italic;
}

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

.author-image {
    width: 50px;
    height: 50px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-image i {
    font-size: 24px;
    color: var(--primary-color);
}

.author-info h4 {
    font-size: 16px;
    margin-bottom: 3px;
    color: var(--text-dark);
}

.author-info p {
    font-size: 13px;
    margin: 0;
    color: var(--text-light);
}

/* Contact Section */
.contact {
    background: var(--white);
}

.contact-content {
    display: grid;
    gap: 50px;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.contact-info-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-info-card:hover .contact-card-icon {
    background: rgba(255, 255, 255, 0.2);
}

.contact-card-icon i {
    font-size: 28px;
    color: var(--primary-color);
}

.contact-info-card:hover .contact-card-icon i {
    color: var(--white);
}

.contact-info-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.contact-info-card:hover h3 {
    color: var(--white);
}

.contact-info-card p {
    font-size: 14px;
    margin: 5px 0;
}

.contact-info-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-light);
    padding: 50px;
    border-radius: 20px;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

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

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Cairo', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(45, 79, 124, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1A3B7A, var(--primary-color));
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-col-logo {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo {
    margin-bottom: 10px;
}

.footer-logo img {
    height: 70px;
    width: auto;
}

.footer-company-name {
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--white);
    font-weight: 600;
}

.footer-column ul li {
    margin-bottom: 15px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-column ul li a:hover {
    color: var(--secondary-color);
    padding-right: 5px;
}

.footer-contact li a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.3s ease;
}

.footer-contact li a:hover {
    color: var(--secondary-color);
}

.footer-contact li a i {
    font-size: 16px;
    color: var(--secondary-color);
    width: 20px;
    flex-shrink: 0;
}

.footer-contact li a span {
    font-size: 14px;
}

/* Footer Social Icons */
.footer-social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-social-icons .social-icon {
    width: 45px;
    height: 45px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 18px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.footer-social-icons .social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* فيسبوك - أزرق */
.footer-social-icons .social-icon:nth-child(1) {
    background: #1877F2;
    color: var(--white);
}

.footer-social-icons .social-icon:nth-child(1):hover {
    background: #0d65d9;
}

/* واتساب - أخضر */
.footer-social-icons .social-icon:nth-child(2) {
    background: #25D366;
    color: var(--white);
}

.footer-social-icons .social-icon:nth-child(2):hover {
    background: #1db954;
}

/* إنستغرام - متدرج */
.footer-social-icons .social-icon:nth-child(3) {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
}

.footer-social-icons .social-icon:nth-child(3):hover {
    background: linear-gradient(45deg, #e08424 0%, #d6592c 25%, #cc1734 50%, #bc1357 75%, #ac0879 100%);
}

/* سناب شات - أصفر */
.footer-social-icons .social-icon:nth-child(4) {
    background: #FFFC00;
    color: #000;
}

.footer-social-icons .social-icon:nth-child(4):hover {
    background: #eeeb00;
}

/* تويتر (X) - أسود */
.footer-social-icons .social-icon:nth-child(5) {
    background: #000000;
    color: var(--white);
}

.footer-social-icons .social-icon:nth-child(5):hover {
    background: #1a1a1a;
}

/* لينكدإن - أزرق */
.footer-social-icons .social-icon:nth-child(6) {
    background: #0A66C2;
    color: var(--white);
}

.footer-social-icons .social-icon:nth-child(6):hover {
    background: #0952a5;
}

/* تيليجرام - أزرق فاتح */
.footer-social-icons .social-icon:nth-child(7) {
    background: #26A5E4;
    color: var(--white);
}

.footer-social-icons .social-icon:nth-child(7):hover {
    background: #1a8fcb;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    z-index: 999;
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

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

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .section-title {
        font-size: 30px;
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .hero-subtitle {
        font-size: 28px;
    }
    
    .about-content,
    .why-choose-content,
    .corporate-content,
    .dmc-content,
    .b2b-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .dmc-destinations,
    .b2b-benefits {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 78px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 78px);
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        box-shadow: var(--shadow-lg);
        transition: right 0.3s ease;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .hero {
        margin-top: 78px;
        height: 80vh;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 22px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .hero-tagline {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .hero-location {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    section {
        padding: 60px 0;
    }
    
    .services-grid,
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-col-logo {
        text-align: center;
    }
    
    .footer-logo img {
        margin: 0 auto;
    }
    
    .footer-social-icons {
        justify-content: center;
    }
    
    .scroll-top {
        bottom: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 24px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .logo img {
        height: 50px;
    }
    
    .about-stats {
        position: static;
        margin-top: 20px;
    }
    
    .footer-logo img {
        height: 60px;
    }
    
    .footer-social-icons .social-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

