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

:root {
    --primary-blue: #1E3A8A;
    --bright-blue: #2563EB;
    --light-blue: #DBEAFE;
    --bg-light: #F3F4F6;
    --white: #FFFFFF;
    --text-dark: #1F2937;
    --text-light: #6B7280;
}

body {
    font-family: 'Tajawal', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

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

/* Header */
header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.logo-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--bright-blue);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.logo h1 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    font-weight: 700;
}

nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--bright-blue);
}

.btn-header {
    background: var(--bright-blue);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-header:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--bright-blue) 0%, var(--primary-blue) 100%);
    color: var(--white);
    padding: 100px 20px;
    text-align: center;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.btn-primary {
    display: inline-block;
    background: var(--white);
    color: var(--bright-blue);
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid var(--white);
}

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

/* Why Choose Section */
.why-choose {
    padding: 80px 20px;
    background: var(--bg-light);
}

.why-choose h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--text-dark);
}

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

.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.feature-card h3 {
    color: var(--bright-blue);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 80px 20px;
}

.services h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--text-dark);
}

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

.service-card {
    background: var(--light-blue);
    padding: 30px;
    border-radius: 10px;
    border-right: 5px solid var(--bright-blue);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.service-card h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--text-dark);
    line-height: 1.8;
}

/* Booking Section */
.booking {
    background: linear-gradient(135deg, var(--bright-blue) 0%, var(--primary-blue) 100%);
    padding: 80px 20px;
    color: var(--white);
}

.booking h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--white);
}

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

.booking-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.booking-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--white);
}

.booking-locations {
    font-size: 1rem;
    margin-bottom: 25px;
    line-height: 1.8;
}

.booking-details h4 {
    font-size: 1.1rem;
    margin: 15px 0 10px;
    color: var(--white);
}

.booking-phones {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
}

.booking-phones p {
    margin: 10px 0;
    font-size: 1rem;
}

.booking-phones a {
    color: var(--white);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.booking-phones a:hover {
    text-decoration: underline;
    transform: scale(1.05);
}

.booking-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-number {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.feature-item h4 {
    color: var(--bright-blue);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-item p {
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* About Section */
.about {
    padding: 80px 20px;
    background: var(--bg-light);
}

.about h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--text-dark);
}

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

.about-text h3 {
    color: var(--bright-blue);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.about-text p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-text h4 {
    color: var(--primary-blue);
    margin-top: 20px;
    margin-bottom: 10px;
}

.about-text ul {
    list-style: none;
    padding-right: 20px;
}

.about-text li {
    color: var(--text-dark);
    margin-bottom: 10px;
    padding-right: 20px;
    position: relative;
}

.about-text li:before {
    content: "✓";
    position: absolute;
    right: 0;
    color: var(--bright-blue);
    font-weight: bold;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 20px;
}

.testimonials h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--text-dark);
}

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

.testimonial-card {
    background: var(--light-blue);
    padding: 30px;
    border-radius: 10px;
    border-right: 5px solid var(--bright-blue);
}

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

.testimonial-author {
    color: var(--bright-blue);
    font-weight: 600;
}

/* FAQ Section */
.faq {
    padding: 80px 20px;
    background: var(--bg-light);
}

.faq h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--text-dark);
}

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

.faq-item {
    background: var(--white);
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    border-right: 5px solid var(--bright-blue);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    color: var(--bright-blue);
    margin-bottom: 15px;
    font-size: 1.1rem;
    cursor: pointer;
}

.faq-item p {
    color: var(--text-dark);
    line-height: 1.8;
}

/* Contact Section */
.contact {
    padding: 80px 20px;
}

.contact h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3 {
    color: var(--bright-blue);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.contact-info p {
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.8;
}

.contact-info a {
    color: var(--bright-blue);
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 2px solid var(--light-blue);
    border-radius: 8px;
    font-family: 'Tajawal', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--bright-blue);
}

.btn-submit {
    background: var(--bright-blue);
    color: var(--white);
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Tajawal', sans-serif;
}

.btn-submit:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 30px 20px;
    text-align: center;
}

.footer-content p {
    margin-bottom: 10px;
}

.footer-content a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-content a:hover {
    opacity: 0.8;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: var(--bright-blue);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: none;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top.show {
    display: flex;
}

.back-to-top:hover {
    background: var(--primary-blue);
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }

    nav {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }

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

    .booking-content {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .services-grid,
    .testimonials-grid,
    .booking-features {
        grid-template-columns: 1fr;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        bottom: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 1.5rem;
    }

    .why-choose h2,
    .services h2,
    .booking h2,
    .about h2,
    .testimonials h2,
    .faq h2,
    .contact h2 {
        font-size: 1.5rem;
    }

    .btn-header,
    .btn-primary {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    nav {
        gap: 10px;
    }

    nav a {
        font-size: 0.9rem;
    }
}


/* Footer Styles */
footer {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--bright-blue) 100%);
    color: var(--white);
    padding: 40px 0 20px;
    margin-top: 60px;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-section p {
    margin-bottom: 10px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 0.8;
}

/* Social Media Section */
.social-media {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    margin-bottom: 20px;
}

.social-media h4 {
    margin-bottom: 15px;
    font-size: 1rem;
}

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

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-link.facebook {
    font-weight: bold;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
}

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

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

/* Contact Form Styles */
.contact-form {
    display: grid;
    gap: 15px;
    margin-top: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid var(--light-blue);
    border-radius: 5px;
    font-family: 'Tajawal', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--bright-blue);
    box-shadow: 0 0 5px rgba(37, 99, 235, 0.2);
}

/* Contact Details Grid */
.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.contact-detail {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-detail:hover {
    transform: translateY(-5px);
}

.detail-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.contact-detail h3 {
    margin-bottom: 10px;
    color: var(--primary-blue);
}

.contact-detail p {
    margin: 5px 0;
}

.contact-detail a {
    color: var(--bright-blue);
    text-decoration: none;
}

.contact-detail a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .contact-details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .contact-details-grid {
        grid-template-columns: 1fr;
    }
}

/* Business Hours */
.hours-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.hour-item {
    background: var(--bg-light);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}

.hour-item h4 {
    color: var(--primary-blue);
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .hours-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hours-grid {
        grid-template-columns: 1fr;
    }
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 12px;
    border: 1px solid var(--light-blue);
    border-radius: 5px;
    font-family: 'Tajawal', sans-serif;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--bright-blue);
}

@media (max-width: 480px) {
    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        min-width: 100%;
    }
}

/* Articles Grid */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.article-card {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
}

.article-card h3 {
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.article-date {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.read-more {
    color: var(--bright-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--primary-blue);
}

@media (max-width: 768px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }
}

/* Timeline Styles */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 2px solid var(--light-blue);
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-date {
    font-weight: 600;
    color: var(--bright-blue);
    font-size: 1.1rem;
}

.timeline-content h3 {
    color: var(--primary-blue);
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* Specialist Info */
.specialist-info {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 30px;
    margin: 20px 0;
    align-items: start;
}

.specialist-image {
    width: 200px;
    height: 200px;
    border-radius: 10px;
    object-fit: cover;
}

.specialist-text p {
    margin-bottom: 15px;
}

.specialist-text ul {
    list-style-position: inside;
    margin-top: 10px;
}

.specialist-text li {
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .specialist-info {
        grid-template-columns: 1fr;
    }

    .specialist-image {
        width: 100%;
        max-width: 300px;
    }
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.stat-card {
    background: linear-gradient(135deg, var(--bright-blue) 0%, var(--primary-blue) 100%);
    color: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.stat-card h4 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Achievements Grid */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.achievement-card {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border-left: 4px solid var(--bright-blue);
}

.achievement-card h4 {
    color: var(--primary-blue);
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .achievements-grid {
        grid-template-columns: 1fr;
    }
}

/* Values List */
.values-list {
    list-style: none;
    margin: 20px 0;
}

.values-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--light-blue);
}

.values-list li:last-child {
    border-bottom: none;
}

.values-list strong {
    color: var(--primary-blue);
}

/* Reasons Grid */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.reason-card {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.reason-card h3 {
    color: var(--primary-blue);
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .reasons-grid {
        grid-template-columns: 1fr;
    }
}


/* 404 Error Page Styles */
.error-hero {
    background: linear-gradient(135deg, var(--bright-blue) 0%, var(--primary-blue) 100%);
    color: var(--white);
    padding: 100px 20px;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-hero h1 {
    font-size: 6rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.error-hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.error-content {
    padding: 60px 20px;
    background: var(--bg-light);
}

.error-box {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.error-box h2 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 20px;
}

.error-box p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.error-suggestions {
    background: var(--light-blue);
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
}

.error-suggestions h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.error-suggestions ul {
    list-style: none;
    padding: 0;
}

.error-suggestions li {
    margin-bottom: 10px;
}

.error-suggestions a {
    color: var(--bright-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.error-suggestions a:hover {
    color: var(--primary-blue);
    text-decoration: underline;
}

.error-contact {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.error-contact h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.contact-info {
    line-height: 1.8;
    color: var(--text-dark);
}

.contact-info a {
    color: var(--bright-blue);
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .error-hero h1 {
        font-size: 4rem;
    }

    .error-hero p {
        font-size: 1.2rem;
    }

    .error-box {
        padding: 30px 20px;
    }
}

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

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

    .error-box {
        padding: 20px;
    }

    .error-box h2 {
        font-size: 1.5rem;
    }
}

/* 2026 homepage refresh */
html {
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(circle at top right, rgba(37, 99, 235, 0.08), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

header {
    backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(37, 99, 235, 0.08);
}

.header-container {
    gap: 20px;
}

.menu-toggle {
    display: none;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 14px;
    width: 46px;
    height: 46px;
    cursor: pointer;
    font-size: 1.25rem;
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.18);
}

nav a {
    position: relative;
    padding-bottom: 6px;
}

nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--bright-blue);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
    transform: scaleX(1);
}

.btn-header {
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.22);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 120px 20px 90px;
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.14) 0%, transparent 26%),
        radial-gradient(circle at 85% 10%, rgba(255, 255, 255, 0.18) 0%, transparent 22%),
        linear-gradient(135deg, #1d4ed8 0%, #0f172a 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: 10px 18px;
    margin-bottom: 22px;
    font-weight: 700;
}

.hero-content h1 {
    font-size: clamp(2.3rem, 5vw, 4.2rem);
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.btn-secondary {
    display: inline-block;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.65);
    border-radius: 30px;
    padding: 15px 32px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.08);
}

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

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 12px;
}

.hero-highlight {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    padding: 20px;
    text-align: right;
    backdrop-filter: blur(12px);
}

.hero-highlight strong,
.hero-highlight span {
    display: block;
}

.hero-highlight strong {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.hero-highlight span {
    color: rgba(255, 255, 255, 0.82);
}

.quick-contact-strip {
    margin-top: -38px;
    position: relative;
    z-index: 2;
    padding: 0 20px 20px;
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.quick-contact-card {
    display: block;
    text-decoration: none;
    color: var(--text-dark);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(37, 99, 235, 0.1);
    border-radius: 22px;
    padding: 22px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quick-contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 44px rgba(15, 23, 42, 0.14);
}

.quick-contact-card span,
.quick-contact-card strong {
    display: block;
}

.quick-contact-card span {
    color: var(--text-light);
    margin-bottom: 8px;
}

.quick-contact-card strong {
    color: var(--primary-blue);
    line-height: 1.5;
}

.feature-card,
.service-card,
.testimonial-card,
.faq-item,
.feature-item,
.booking-info,
.contact-form,
.contact-info,
.about-image img {
    border-radius: 22px;
}

.service-card,
.testimonial-card,
.faq-item {
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.services-intro,
.trust-section,
.location-info {
    background: linear-gradient(180deg, rgba(219, 234, 254, 0.58), rgba(255, 255, 255, 0.95));
    border: 1px solid rgba(37, 99, 235, 0.08);
    padding: 28px;
    border-radius: 24px;
    margin-bottom: 28px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.trust-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.8);
    padding: 16px 18px;
    border-radius: 18px;
}

.location-info a {
    color: var(--primary-blue);
    font-weight: 700;
}

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(37, 99, 235, 0.08);
    padding: 28px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.07);
}

.contact-info {
    background: linear-gradient(180deg, rgba(219, 234, 254, 0.48), rgba(255, 255, 255, 0.92));
    border: 1px solid rgba(37, 99, 235, 0.08);
    padding: 28px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.form-note {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-top: -6px;
}

@media (max-width: 900px) {
    .header-container {
        flex-wrap: wrap;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-inline-start: auto;
    }

    nav {
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 16px;
        background: rgba(248, 250, 252, 0.98);
        border: 1px solid rgba(37, 99, 235, 0.1);
        border-radius: 20px;
    }

    nav.active {
        display: flex;
    }

    nav a {
        padding: 12px 10px;
        border-radius: 12px;
    }

    nav a:hover,
    nav a.active {
        background: rgba(37, 99, 235, 0.08);
    }

    .btn-header {
        width: 100%;
        text-align: center;
    }

    .hero-highlights,
    .quick-contact-grid,
    .trust-items {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 96px 16px 74px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-badge {
        font-size: 0.9rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .quick-contact-strip {
        margin-top: -22px;
    }

    .services-intro,
    .trust-section,
    .location-info,
    .contact-form,
    .contact-info {
        padding: 22px 18px;
    }
}

.section-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 34px;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 14px;
}

.section-heading h2 {
    font-size: clamp(1.9rem, 4vw, 3rem);
    color: var(--text-dark);
    margin-bottom: 12px;
}

.section-heading p {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 0;
}

.gallery-showcase {
    padding: 90px 20px;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.08), transparent 28%),
        linear-gradient(180deg, #eef5ff 0%, #ffffff 100%);
}

.gallery-slider {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
}

.gallery-track {
    position: relative;
}

.gallery-slide {
    position: relative;
    display: none;
    overflow: hidden;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(37, 99, 235, 0.1);
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.gallery-slide.active {
    display: block;
    animation: galleryFade 0.45s ease;
}

.gallery-slide a {
    color: inherit;
    text-decoration: none;
}

.gallery-slide img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
}

.gallery-overlay {
    position: absolute;
    inset-inline: 18px;
    bottom: 18px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.08), rgba(15, 23, 42, 0.82));
    color: var(--white);
    padding: 22px;
    border-radius: 20px;
    backdrop-filter: blur(8px);
    text-align: right;
}

.gallery-overlay strong,
.gallery-overlay span {
    display: block;
}

.gallery-overlay strong {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.gallery-overlay span {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.58);
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease;
}

.gallery-nav:hover {
    background: rgba(29, 78, 216, 0.9);
}

.gallery-prev {
    right: 18px;
}

.gallery-next {
    left: 18px;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(37, 99, 235, 0.24);
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease;
}

.gallery-dot.active {
    background: var(--bright-blue);
    transform: scale(1.2);
}

@keyframes galleryFade {
    from {
        opacity: 0.35;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.privacy-highlight {
    padding: 80px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #eff6ff 100%);
}

.privacy-card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.98) 0%, rgba(29, 78, 216, 0.96) 100%);
    color: var(--white);
    border-radius: 30px;
    padding: 34px;
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.2);
}

.privacy-card .section-heading h2,
.privacy-card .section-kicker,
.privacy-card .section-heading p {
    color: var(--white);
}

.privacy-card .section-kicker {
    background: rgba(255, 255, 255, 0.12);
}

.privacy-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.privacy-point {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    padding: 22px;
}

.privacy-point strong {
    display: block;
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.privacy-point p,
.privacy-note {
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.9;
}

.privacy-note {
    margin-top: 20px;
}

.privacy-note a {
    color: var(--white);
    font-weight: 700;
}

@media (max-width: 900px) {
    .privacy-points {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .gallery-showcase,
    .privacy-highlight {
        padding: 64px 16px;
    }

    .gallery-slide img {
        height: 230px;
    }

    .gallery-nav {
        width: 42px;
        height: 42px;
        font-size: 1.6rem;
    }

    .gallery-prev {
        right: 10px;
    }

    .gallery-next {
        left: 10px;
    }

    .privacy-card {
        padding: 24px 18px;
        border-radius: 24px;
    }
}

/* Generic interior pages */
main > .container,
main .content,
main .search-section,
main > nav:not(#mainNav) .container {
    max-width: 1100px;
    margin-inline: auto;
}

main > .container {
    padding-top: 48px;
    padding-bottom: 32px;
}

.page-title,
main .header h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--primary-blue);
    line-height: 1.2;
    margin-bottom: 14px;
}

.page-intro,
main .header p {
    color: var(--text-light);
    font-size: 1.08rem;
    max-width: 760px;
    margin-bottom: 28px;
    line-height: 1.9;
}

main > nav:not(#mainNav) {
    background: transparent;
    box-shadow: none;
    padding-top: 28px;
}

main > nav:not(#mainNav) .container {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 20px;
}

main > nav:not(#mainNav) a {
    color: var(--bright-blue);
    background: rgba(37, 99, 235, 0.08);
    padding: 10px 16px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
}

main .header {
    max-width: 1100px;
    margin: 18px auto 24px;
    padding: 0 20px;
}

.category {
    display: inline-flex;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-blue);
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 700;
}

.content-section,
.content,
.search-box,
.map-container {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(37, 99, 235, 0.08);
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.content-section,
.content {
    padding: 30px;
    margin-bottom: 24px;
}

.section-title {
    color: var(--primary-blue);
    margin-bottom: 16px;
    font-size: 1.55rem;
}

.content-text,
.content p,
.content li,
.content-section p,
.content-section li {
    line-height: 1.95;
    color: var(--text-dark);
}

.content h2,
.content h3 {
    color: var(--primary-blue);
    margin: 24px 0 14px;
}

.content ul,
.content ol,
.content-section ul,
.content-section ol {
    padding-right: 20px;
    margin: 12px 0 20px;
}

.info-box {
    background: linear-gradient(180deg, rgba(219, 234, 254, 0.7), rgba(255, 255, 255, 0.95));
    border-right: 4px solid var(--bright-blue);
    padding: 18px 20px;
    border-radius: 16px;
    margin: 24px 0;
}

.contact-cta {
    background: linear-gradient(135deg, #1d4ed8 0%, #0f172a 100%);
    color: var(--white);
    padding: 34px 28px;
    border-radius: 24px;
    margin: 28px 0 10px;
    text-align: center;
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.18);
}

.contact-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 18px;
}

.btn-light {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.32);
    padding: 13px 20px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
}

.btn-light:hover {
    background: rgba(255, 255, 255, 0.2);
}

.map-container {
    padding: 24px;
    margin-top: 30px;
}

.map-title {
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.map-container iframe {
    width: 100%;
    min-height: 360px;
    border: 0;
    border-radius: 18px;
}

.search-section {
    padding: 0 20px;
}

.search-box {
    padding: 22px;
}

.search-box input {
    width: 100%;
    border: 2px solid rgba(37, 99, 235, 0.12);
    border-radius: 16px;
    padding: 14px 16px;
    font-family: 'Tajawal', sans-serif;
    font-size: 1rem;
    margin-bottom: 16px;
}

.category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.category-btn {
    border: 1px solid rgba(37, 99, 235, 0.12);
    background: rgba(37, 99, 235, 0.06);
    color: var(--primary-blue);
    border-radius: 999px;
    padding: 10px 16px;
    cursor: pointer;
    font-family: 'Tajawal', sans-serif;
    font-weight: 700;
}

.category-btn.active,
.category-btn:hover {
    background: var(--bright-blue);
    color: var(--white);
}

.article-card {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(37, 99, 235, 0.08);
    border-radius: 22px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.article-card p {
    line-height: 1.9;
    color: var(--text-light);
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    background: rgba(37, 99, 235, 0.08);
    padding: 10px 14px;
    border-radius: 999px;
}

.no-results {
    text-align: center;
    padding: 30px;
}

@media (max-width: 768px) {
    main > .container {
        padding-top: 32px;
    }

    .content-section,
    .content,
    .search-box,
    .map-container {
        padding: 22px 18px;
        border-radius: 20px;
    }

    .contact-buttons {
        flex-direction: column;
    }

    .btn-light {
        width: 100%;
    }
}
