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

:root {
    --primary-color: #5DADE2;
    --secondary-color: #3498DB;
    --accent-color: #2E86AB;
    --gradient-primary: linear-gradient(135deg, #5DADE2 0%, #3498DB 100%);
    --gradient-secondary: linear-gradient(135deg, #2E86AB 0%, #5DADE2 100%);
    --gradient-accent: linear-gradient(135deg, #FF6B6B 0%, #5DADE2 100%);
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --text-white: #FFFFFF;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --bg-dark: #2C3E50;
    --shadow-light: 0 5px 15px rgba(0,0,0,0.08);
    --shadow-medium: 0 10px 30px rgba(0,0,0,0.12);
    --shadow-heavy: 0 20px 40px rgba(0,0,0,0.15);
    --border-radius: 20px;
    --border-radius-small: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-light);
    overflow-x: hidden;
}

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

/* Floating Navigation */
.floating-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    padding: 10px 20px;
    box-shadow: var(--shadow-medium);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-logo img {
    height: 35px;
    width: auto;
}

.nav-items {
    display: flex;
    gap: 1.5rem;
}

.nav-item {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 25px;
    transition: var(--transition);
    position: relative;
}

.nav-item:hover,
.nav-item.active {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-2px);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lang-toggle {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.lang-toggle:hover {
    transform: scale(1.05);
}

.whatsapp-float {
    background: #25D366;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    animation: slideInUp 0.8s ease-out;
}

.hero-left h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: slideInUp 0.8s ease-out 0.2s both;
}

.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-left p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    animation: slideInUp 0.8s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: slideInUp 0.8s ease-out 0.6s both;
}

.btn-gradient {
    background: var(--gradient-primary);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(93, 173, 226, 0.4);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--text-dark);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    display: inline-block;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    animation: slideInUp 0.8s ease-out 0.8s both;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.hero-right {
    position: relative;
    animation: slideInRight 1s ease-out 0.4s both;
}

.hero-image-stack {
    position: relative;
    height: 500px;
}

.image-card {
    position: absolute;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    transition: var(--transition);
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-1 {
    width: 300px;
    height: 200px;
    top: 0;
    left: 0;
    z-index: 3;
}

.card-2 {
    width: 250px;
    height: 180px;
    top: 120px;
    right: 0;
    z-index: 2;
}

.card-3 {
    width: 200px;
    height: 150px;
    bottom: 0;
    left: 50px;
    z-index: 1;
}

.image-card:hover {
    transform: scale(1.05) rotate(2deg);
}

/* Section Styles */
.section-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

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

.section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--bg-white);
}

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

.service-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.card-primary::before { background: var(--gradient-primary); }
.card-secondary::before { background: var(--gradient-secondary); }
.card-accent::before { background: var(--gradient-accent); }
.card-gradient::before { background: linear-gradient(135deg, #FF6B6B 0%, #4ECDC4 50%, #2E86AB 100%); }

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

.card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: white;
}

.card-secondary .card-icon { background: var(--gradient-secondary); }
.card-accent .card-icon { background: var(--gradient-accent); }
.card-gradient .card-icon { background: linear-gradient(135deg, #FF6B6B 0%, #4ECDC4 100%); }

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.card-features span {
    background: var(--bg-light);
    color: var(--text-dark);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Tracking Section */
.tracking {
    padding: 100px 0;
    background: var(--bg-light);
}

.tracking-header {
    text-align: center;
    margin-bottom: 4rem;
}

.tracking-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.tracking-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

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

.tracking-feature {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: var(--border-radius-small);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.tracking-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.2rem;
}

.tracking-feature h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.tracking-feature p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.tracking-map {
    position: relative;
}

.map-wrapper {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    position: relative;
}

.map-wrapper iframe {
    width: 100%;
    height: 500px;
    border: none;
}

.map-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--bg-white);
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

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

.info-card {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--border-radius-small);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

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

.whatsapp-card {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
}

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

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.info-content h4 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.info-content p,
.info-content a {
    color: var(--text-light);
    text-decoration: none;
}

.whatsapp-card .info-content p,
.whatsapp-card .info-content a {
    color: white;
}

.info-content a:hover {
    color: var(--primary-color);
}

.contact-form-container {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

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

.form-field {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid transparent;
    border-radius: var(--border-radius-small);
    background: var(--bg-white);
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.1);
}

.form-field label {
    position: absolute;
    top: 15px;
    left: 20px;
    color: var(--text-light);
    font-size: 1rem;
    transition: var(--transition);
    pointer-events: none;
}

.form-field input:focus + label,
.form-field textarea:focus + label,
.form-field input:not(:placeholder-shown) + label,
.form-field textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: 15px;
    font-size: 0.8rem;
    color: var(--primary-color);
    background: var(--bg-light);
    padding: 0 5px;
}

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

/* Location Section */
.location {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.location-map {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.location-map iframe {
    width: 100%;
    height: 400px;
    border: none;
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: var(--border-radius-small);
}

.location-info h3 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.location-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-brand img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.footer-brand h3 {
    color: var(--primary-color);
    font-weight: 600;
}

.footer-brand p {
    color: #BDC3C7;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(93, 173, 226, 0.4);
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.link-group h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.link-group ul {
    list-style: none;
}

.link-group ul li {
    margin-bottom: 0.5rem;
    color: #BDC3C7;
}

.link-group ul li a {
    color: #BDC3C7;
    text-decoration: none;
    transition: var(--transition);
}

.link-group ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495E;
    color: #BDC3C7;
}

/* WhatsApp Floating Button */
.whatsapp-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-floating a {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-floating a:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

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

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

/* Arabic RTL Support */
[dir="rtl"] {
    text-align: right;
}

[dir="rtl"] .nav-container {
    flex-direction: row-reverse;
}

[dir="rtl"] .hero-content {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

[dir="rtl"] .tracking-container {
    grid-template-columns: 2fr 1fr;
    direction: rtl;
}

[dir="rtl"] .contact-content {
    direction: rtl;
}

[dir="rtl"] .footer-content {
    direction: rtl;
}

[dir="rtl"] .whatsapp-floating {
    left: 30px;
    right: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .floating-nav {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        border-radius: 0;
        width: 100%;
        margin-bottom: 0;
    }
    
    .hero {
        padding-top: 80px;
    }
    
    .tracking-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 15px;
    }
    
    .nav-items {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-left h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image-stack {
        height: 300px;
    }
    
    .card-1 {
        width: 250px;
        height: 150px;
    }
    
    .card-2 {
        width: 200px;
        height: 120px;
    }
    
    .card-3 {
        width: 150px;
        height: 100px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-left h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
}





/* Prices Section in Hero */
.prices-in-hero {
    margin-top: 50px;
    padding: 40px 0;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.prices-in-hero .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.prices-in-hero .section-header h2 {
    color: var(--primary-color); /* Primary color from logo */
}

.price-table-container {
    overflow-x: auto;
    width: 100%;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    font-size: 1.1em;
    min-width: 600px; /* Ensure table is wide enough */
}

.price-table th,
.price-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.price-table thead th {
    background-color: var(--primary-color); /* Primary color from logo */
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.price-table tbody tr:hover {
    background-color: #e6f7ff; /* Light blue on hover */
    transition: background-color 0.3s ease;
}

.price-table tbody td {
    color: var(--text-dark);
}

.price-table tbody td:first-child {
    font-weight: 500;
    color: var(--secondary-color); /* Darker blue for destination */
}

/* Responsive adjustments for price table */
@media (max-width: 768px) {
    .price-table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .price-table {
        font-size: 0.85em;
        min-width: 100%;
        display: table;
    }

    .price-table th,
    .price-table td {
        padding: 8px 12px;
        white-space: nowrap;
        min-width: 120px;
    }
    
    .price-table th:first-child,
    .price-table td:first-child {
        min-width: 180px;
        white-space: normal;
    }
}

@media (max-width: 480px) {
    .price-table {
        font-size: 0.8em;
        min-width: 100%;
    }
    
    .price-table th,
    .price-table td {
        padding: 6px 8px;
        font-size: 0.9em;
    }
    
    .price-table th:first-child,
    .price-table td:first-child {
        min-width: 150px;
    }
    
    .price-table th:nth-child(2),
    .price-table td:nth-child(2),
    .price-table th:nth-child(3),
    .price-table td:nth-child(3) {
        min-width: 100px;
        text-align: center;
    }
}

