/* Services Page Styles */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: left;
    padding: 0 5%;
    position: relative;
    margin: 0 !important;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1400px;
    height: 80vh;
    background: linear-gradient(rgba(44, 62, 80, 0.301), rgba(44, 62, 80, 0.466)),
                url('https://images.unsplash.com/photo-1678308510980-e855e5f31dea?q=80&w=1632&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    z-index: -1;
}

.hero-section .hero-content {
    max-width: 1200px;
    margin: 0;
    text-align: left;
    padding-top: 200px;
    font-family: 'Playfair Display', serif;
    z-index: 1;
}

.hero-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    color: white;
}

.hero-section p {
    font-family: 'Tajawal', sans-serif;
    font-size: 1.3rem;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
    color: white;
}

.services-page {
    padding: 6rem 5% 0;
    background: #f9f9f9;
    margin-bottom: 10rem;
}

.services-page h2 {
    font-family: 'Playfair Display', serif;
    text-align: center;
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 4rem;
    color: #2c3e50;
    position: relative;
}

.services-page h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #f3b605;
    margin: 1rem auto 0;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 10rem !important;
    padding: 0 1rem;
}

.services-row {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem;
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    padding: 3.5rem 2.5rem;
    position: relative;
    border: 1px solid rgba(44, 62, 80, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(44, 62, 80, 0.12);
}

.service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(243, 182, 5, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: #f3b605;
    transform: scale(1.1);
}

.service-icon i {
    font-size: 2.8rem;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
    color: white;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    color: #2c3e50;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
}

.service-card p {
    font-family: 'Tajawal', sans-serif;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.service-card .book-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: #2c3e50;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: 'Tajawal', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
}

.service-card .book-button:hover {
    background: transparent;
    color: #2c3e50;
    border: 2px solid #2c3e50;
}

/* Why Us Section */
.why-us {
    padding: 8rem 5% 10rem;
    background: white;
    position: relative;
}

.why-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, #f9f9f9, white);
}

.why-us h2 {
    font-family: 'Playfair Display', serif;
    text-align: center;
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 4rem;
    color: #2c3e50;
    position: relative;
}

.why-us h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #f3b605;
    margin: 1rem auto 0;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.why-us-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: #f9f9f9;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(44, 62, 80, 0.05);
}

.why-us-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(44, 62, 80, 0.08);
    background: white;
    border-color: #f3b605;
}

.why-us-card i {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.why-us-card:hover i {
    transform: scale(1.1);
    color: #f3b605;
}

.why-us-card h3 {
    font-family: 'Playfair Display', serif;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.why-us-card p {
    font-family: 'Tajawal', sans-serif;
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-grid,
    .why-us-grid {
        max-width: 900px;
    }
}

@media (max-width: 992px) {
    .hero-section::before {
        width: 95%;
        height: 85vh;
    }
    
    .hero-section h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 100vh;
    }

    .hero-section::before {
        width: 100%;
        border-radius: 20px;
    }

    .hero-section .hero-content {
        padding-top: 150px;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }

    .services-page {
        padding: 4rem 5% 0;
    }

    .services-page h2,
    .why-us h2 {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }

    .services-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-card {
        padding: 2.5rem 2rem;
    }

    .service-icon {
        width: 80px;
        height: 80px;
    }

    .service-icon i {
        font-size: 2.5rem;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .why-us-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .services-page h2,
    .why-us h2 {
        font-size: 1.8rem;
    }

    .service-card h3 {
        font-size: 1.4rem;
    }

    .why-us-card h3 {
        font-size: 1.3rem;
    }
} 