@font-face{
    font-family: 'arab';
    src: url('Tajawal-Regular\ copy.ttf');
}

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: 'arab';
    margin: 0;
    padding: 0;
}

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

.header {
    padding: 0px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0b0828;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0;
}

.logo img {
    width: 80px;
    height: auto;
    display: block;
}

.menu {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    align-items: center;
    color: #fff;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.menu a {
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 0.9rem;
    white-space: nowrap;
}

.cu{
    cursor: pointer;
}

.menu a:hover {
    color: #ff6b6b;
    background-color: rgba(255, 107, 107, 0.1);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0b0828 0%, #1a1650 100%);
    color: #fff;
    padding: 120px 20px;
    text-align: center;
    min-height: 700px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-family: 'arab';
}

.btn-primary {
    background-color: #ff6b6b;
    color: #fff;


}

.btn-primary:hover {
    background-color: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background-color: #fff;
    color: #0b0828;
}

.btn-large {
    padding: 18px 50px;
    font-size: 1.1rem;
    width: 100%;
}

/* About Section */
.about-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #0b0828;
    font-weight: bold;
}

.about-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    max-width: 900px;
    margin: 0 auto 50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #ff6b6b;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
}

/* Services Section */
.services-section {
    padding: 80px 20px;
    background-color: #fff;
}

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

.service-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #ff6b6b;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #0b0828;
    font-weight: bold;
}

.service-description {
    color: #666;
    line-height: 1.6;
}

/* Featured Locations Section */
.featured-locations-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #0b0828 0%, #1a1650 100%);
    color: #fff;
}

.featured-locations-section .section-title {
    color: #fff;
    text-align: center;
}

.locations-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.location-preview-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.location-preview-card:hover {
    transform: translateY(-10px);
    border-color: #ff6b6b;
    background: rgba(255, 255, 255, 0.15);
}

.location-preview-image {
    font-size: 5rem;
    margin-bottom: 20px;
}

.location-preview-name {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.location-preview-desc {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.location-preview-link {
    color: #ff6b6b;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.location-preview-link:hover {
    color: #ff5252;
}

.view-all-locations {
    text-align: center;
    margin-top: 40px;
}

/* Booking Section */
.booking-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.booking-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.booking-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

.booking-form {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.form-group {
    text-align: right;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: #0b0828;
    font-weight: bold;
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
    font-family: 'arab';
}

.form-input:focus {
    outline: none;
    border-color: #ff6b6b;
}

.booking-form .btn-large {
    grid-column: 1 / -1;
    margin-top: 10px;
}

/* Footer */
.footer {
    background-color: #0b0828;
    color: #fff;
    padding: 60px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #ff6b6b;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-heading {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #fff;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff6b6b;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 10px 15px;
    }
    
    .header .container {
        flex-direction: row;
        justify-content: space-between;
        gap: 10px;
    }
    
    .logo {
        justify-content: flex-start;
    }
    
    .logo img {
        width: 70px;
    }
    
    .menu {
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 8px;
    }
    
    .menu a {
        padding: 5px 10px;
        font-size: 0.85rem;
    }
    
    .hero-section {
        padding: 60px 15px;
        min-height: 400px;
        width: 100%;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {

        padding: 12px 50px;
    }

    .btn-primary {
    background-color: #ff6b6b;
    color: #fff;
    width: 100%;


}
    
    .about-section {
        padding: 50px 15px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-text {
        font-size: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-item {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .services-section {
        padding: 50px 15px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .featured-locations-section {
        padding: 50px 15px;
    }
    
    .locations-preview {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .booking-section {
        padding: 50px 15px;
    }
    
    .booking-form {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }
    
    .footer {
        padding: 40px 15px 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 10px 15px;
    }
    
    .header .container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .logo {
        justify-content: center;
    }
    
    .logo img {
        width: 70px;
    }
    
    .menu {
        justify-content: center;
        gap: 5px;
    }
    
    .menu a {
        padding: 5px 10px;
        font-size: 0.8rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}