/* Import Tajawal font */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700&display=swap');

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Tajawal', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Navbar styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(44, 62, 80, 0.1);
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #f3b605;
}

.nav-links a.active {
    color: #f3b605;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    transition: 0.3s;
}

/* Hero section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    position: relative;
}

.hero::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-1661361993039-132375eda4cf?q=80&w=1470&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-content {
    max-width: 800px;
    padding: 2rem;
    text-align: center;
    color: white;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: #2c3e50;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.cta-button:hover {
    background: #f3b605;
    transform: translateY(-2px);
}

/* Services section */
.services {
    padding: 6rem 5%;
    background: #f9f9f9;
}

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

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.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: 2.5rem 2rem;
    position: relative;
    border: 1px solid rgba(44, 62, 80, 0.05);
}

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

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

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

.service-icon i {
    font-size: 2.2rem;
    color: #2c3e50;
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

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

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

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

.book-button {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    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;
}

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

@media (max-width: 1200px) {
    .services-grid {
        max-width: 900px;
    }
}

@media (max-width: 992px) {
    .services h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 4rem 5%;
    }

    .services h2 {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }

    .services-grid {
        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;
    }
}

@media (max-width: 480px) {
    .services h2 {
        font-size: 1.8rem;
    }

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

/* About section */
.about {
    padding: 8rem 5%;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1632944398987-494eebe663be?q=80&w=1471&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover;
    opacity: 0.05;
    z-index: 0;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

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

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    direction: ltr;
}

.about-text {
    text-align: left;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.about-text:hover {
    transform: translateY(-5px);
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 2.5rem;
    text-align: left;
    font-family: 'Tajawal', sans-serif;
}

.features-list {
    list-style: none;
    text-align: left;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.features-list li {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
    padding: 1rem;
    background: rgba(243, 182, 5, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.features-list li:hover {
    background: rgba(243, 182, 5, 0.15);
    transform: translateX(5px);
}

.features-list li i {
    color: #f3b605;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.features-list li:hover i {
    transform: scale(1.2);
}

.about-image {
    text-align: right;
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid #f3b605;
    border-radius: 20px;
    z-index: -1;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.02);
}

@media (max-width: 992px) {
    .about {
        padding: 6rem 5%;
    }
    
    .about h2 {
        font-size: 2.5rem;
    }
    
    .about-grid {
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 4rem 5%;
    }
    
    .about h2 {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image {
        order: -1;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .about-text {
        padding: 1.5rem;
    }
    
    .about-text p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .about h2 {
        font-size: 2rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .features-list li {
        padding: 0.8rem;
    }
}

/* Testimonials section */
.testimonials {
    padding: 5rem 5%;
    background: #f9f9f9;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 1px solid rgba(44, 62, 80, 0.1);
}

.quote-icon {
    color: #2c3e50;
    font-size: 1.5rem;
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.testimonial-card p {
    margin: 1rem 0 2rem;
    font-style: italic;
    color: #666;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    color: #2c3e50;
    margin-bottom: 0.2rem;
}

.testimonial-author p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

/* Footer styles */
.site-footer {
    background: #2c3e50;
    color: white;
    padding: 4rem 5% 2rem;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.footer-logo {
    max-width: 180px;
    height: auto;
}

.footer-brand p {
    font-family: 'Tajawal', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 300px;
}

.footer-nav h3,
.footer-social h3 {
    font-family: 'Playfair Display', serif;
    color: #f3b605;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
}

.footer-nav ul li {
    margin-bottom: 1rem;
}

.footer-nav ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-family: 'Tajawal', sans-serif;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.footer-nav ul li a:hover {
    color: #f3b605;
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 1.2rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #f3b605;
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(243, 182, 5, 0.2);
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Tajawal', sans-serif;
    font-size: 1rem;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        align-items: center;
    }

    .footer-brand p {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-nav,
    .footer-social {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-nav ul li a:hover {
        padding-left: 0;
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 1rem;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

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

    .services-grid {
        grid-template-columns: 1fr;
    }

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

    .about-image {
        order: -1;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Services Page Specific Styles */
.hero-section {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    margin-top: 80px;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1400px;
    height: 50vh;
    background: linear-gradient(rgba(44, 62, 80, 0.7), rgba(44, 62, 80, 0.7)),
                url('images/nile-river.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    z-index: -1;
}

.hero-section .hero-content {
    max-width: 800px;
    padding: 2rem;
    text-align: center;
    color: white;
    z-index: 1;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.services-page {
    padding: 4rem 5%;
    background: #f9f9f9;
}

.services-page h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.services-page .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.services-page .service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid rgba(44, 62, 80, 0.05);
}

.services-page .service-card:hover {
    transform: translateY(-10px);
}

.services-page .service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.services-page .service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: #2c3e50;
    font-size: 1.5rem;
}

.services-page .service-card p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    line-height: 1.6;
}

.services-page .service-card .book-button {
    margin: 0 1.5rem 1.5rem;
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: #2c3e50;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.services-page .service-card .book-button:hover {
    background: #f3b605;
}

/* Why Us Section */
.why-us {
    padding: 4rem 5%;
    background: white;
}

.why-us h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.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(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.why-us-card:hover {
    transform: translateY(-5px);
    border-color: #f3b605;
}

.why-us-card i {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.why-us-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.why-us-card p {
    color: #666;
    line-height: 1.6;
}

.why-us-card:hover i {
    color: #f3b605;
}

/* Responsive Design for Services Page */
@media (max-width: 768px) {
    .hero-section {
        height: 50vh;
        margin-top: 60px;
    }

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

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

    .services-page .services-grid,
    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .services-page .service-card img {
        height: 180px;
    }
}

/* Responsive Design for Hero Sections */
@media (max-width: 992px) {
    .hero::before,
    .hero-section::before {
        width: 95%;
        height: 85vh;
    }
}

@media (max-width: 768px) {
    .hero::before,
    .hero-section::before {
        width: 100%;
        border-radius: 20px;
    }

    .hero-content,
    .hero-section .hero-content {
        padding: 1.5rem;
    }
}

/* FAQ Section */
.faq-section {
    margin-top: 6rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(44, 62, 80, 0.1);
}

.faq-section h3 {
    text-align: center;
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    font-family: 'Playfair Display', serif;
    position: relative;
}

.faq-section h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #f3b605;
    margin: 1rem auto 0;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(44, 62, 80, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Tajawal', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(243, 182, 5, 0.05);
}

.faq-question i {
    color: #f3b605;
    transition: transform 0.2s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out, padding 0.2s ease;
    background: rgba(243, 182, 5, 0.03);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 1.5rem 1.5rem;
    transition: max-height 0.2s ease-in, padding 0.2s ease;
}

.faq-answer p {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
    font-family: 'Tajawal', sans-serif;
}

@media (max-width: 768px) {
    .faq-section {
        margin-top: 4rem;
        padding-top: 3rem;
    }
    
    .faq-section h3 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .faq-question {
        padding: 1.2rem;
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.2rem 1.2rem;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .faq-section h3 {
        font-size: 1.6rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1rem 1rem;
    }
} 