/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    color: #2d4a20;
    background-color: #faf8f2;
    direction: rtl;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a3a0a;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #4a6a38;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: #e07818;
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(224, 120, 24, 0.35);
}

.btn-primary:hover {
    background: #f5a040;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(224, 120, 24, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background: #e07818;
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(224, 120, 24, 0.35);
}

.btn-secondary:hover {
    background: #f5a040;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(224, 120, 24, 0.4);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Navigation - شفاف بالكامل */
.navbar {
    background: rgba(15, 60, 8, 0.93);
    /* تغيير الـ opacity إلى 0.3 أو 0 */
    backdrop-filter: blur(15px);
    /* زيادة تأثير الزجاج */
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    /* تخفيف الظل */
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    /* جعل الحدود أخف */
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Gem Logo Styles - Enhanced */
.logo {
    width: 45px;
    height: 45px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.1) rotate(10deg);
}

.logo::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #e07818 0%, #3d8b2a 25%, #f5a040 50%, #3d8b2a 75%, #e07818 100%);
    clip-path: polygon(50% 0%, 80% 20%, 100% 50%, 80% 80%, 50% 100%, 20% 80%, 0% 50%, 20% 20%);
    box-shadow:
        0 0 30px rgba(224, 120, 24, 0.4),
        0 0 60px rgba(61, 139, 42, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.4),
        inset 0 -2px 4px rgba(0, 0, 0, 0.2);
    animation: gemSparkle 3s ease-in-out infinite;
}

.logo::after {
    content: '';
    position: absolute;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    clip-path: polygon(50% 0%, 80% 20%, 100% 50%, 80% 80%, 50% 100%, 20% 80%, 0% 50%, 20% 20%);
    z-index: 1;
    animation: gemShine 4s ease-in-out infinite;
}

@keyframes gemSparkle {

    0%,
    100% {
        box-shadow:
            0 0 30px rgba(224, 120, 24, 0.4),
            0 0 60px rgba(61, 139, 42, 0.2),
            inset 0 2px 4px rgba(255, 255, 255, 0.4),
            inset 0 -2px 4px rgba(0, 0, 0, 0.2);
    }

    50% {
        box-shadow:
            0 0 50px rgba(224, 120, 24, 0.5),
            0 0 80px rgba(61, 139, 42, 0.3),
            0 0 100px rgba(245, 160, 64, 0.2),
            inset 0 2px 6px rgba(255, 255, 255, 0.6),
            inset 0 -2px 6px rgba(0, 0, 0, 0.3);
    }
}

@keyframes gemShine {

    0%,
    100% {
        opacity: 0.7;
        transform: translateY(0) scale(1);
    }

    50% {
        opacity: 1;
        transform: translateY(-2px) scale(1.05);
    }
}

.nav-brand h1 {
    font-size: 1.5rem;
    color: #1a3a0a;
    margin: 0;
    background: linear-gradient(135deg, #e07818, #f5a040);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #d8f5c0;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #e07818, #f5a040);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #d8f5c0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 40, 5, 0.55), rgba(20, 70, 10, 0.4));
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #f8fafc;
    max-width: 800px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #f8fafc, #e07818, #f5a040);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
    color: #d8f5c0;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: #f0f5eb;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: #1a3a0a;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #e07818, #f5a040);
    border-radius: 3px;
}

.section-header p {
    color: #6a8c5a;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 1.5rem auto 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.93);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(61, 139, 42, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    color: #2d4a20;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(61, 139, 42, 0.2);
    border-color: rgba(224, 120, 24, 0.35);
    background: rgba(245, 250, 240, 0.97);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e07818, #3d8b2a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #ffffff;
    transition: transform 0.3s ease;
    box-shadow: 0 8px 25px rgba(224, 120, 24, 0.35);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    color: #1a3a0a;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #6a8c5a;
    margin: 0;
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0a3005, #1e5c14);
    color: #f8fafc;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #f8fafc, #e07818);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #b8e8a0;
}

/* Page Header */
.page-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #0a3005, #1e5c14);
    color: #f8fafc;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #f8fafc, #f5a040);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    color: #b8e8a0;
}

/* Gallery Styles */
.gallery {
    padding: 4rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(61, 139, 42, 0.15);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(61, 139, 42, 0.2);
    border-color: rgba(224, 120, 24, 0.35);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: none;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(10, 40, 5, 0.88));
    color: #f8fafc;
    padding: 2rem 1rem 1rem;
    transform: translateY(0);
    transition: none;
}

.gallery-overlay h3 {
    margin: 0;
    font-size: 1.2rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 40, 5, 0.92);
    backdrop-filter: blur(10px);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(61, 139, 42, 0.28);
    border: 1px solid rgba(61, 139, 42, 0.28);
}

.modal-close {
    color: #f8fafc;
    font-size: 35px;
    font-weight: bold;
    position: absolute;
    top: 15px;
    right: 35px;
    cursor: pointer;
    z-index: 2001;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #e07818;
}

.modal-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #e8f5e0;
    padding: 10px 0;
    height: 150px;
}

/* Contact Page Styles */
.contact-content {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h2,
.map-section h2 {
    margin-bottom: 2rem;
    color: #1a3a0a;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    color: #2d4a20;
    background: rgba(255, 255, 255, 0.93);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(61, 139, 42, 0.15);
}

.contact-card:hover {
    transform: translateY(-2px);
    border-color: rgba(224, 120, 24, 0.35);
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
    background: linear-gradient(135deg, #e07818, #3d8b2a);
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(224, 120, 24, 0.35);
}

.contact-details h3 {
    margin-bottom: 0.5rem;
    color: #1a3a0a;
}

.contact-details p {
    margin: 0;
    color: #6a8c5a;
}

.working-hours {
    background: rgba(255, 255, 255, 0.93);
    backdrop-filter: blur(10px);
    color: #1a3a0a;
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(61, 139, 42, 0.15);
}

.working-hours h3 {
    margin-bottom: 1rem;
    color: #1a3a0a;
}

.working-hours p {
    margin: 0;
    opacity: 0.9;
    color: #6a8c5a;
}

.map-container {
    background: rgba(255, 255, 255, 0.93);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    margin-bottom: 2rem;
    color: #2d4a20;
    border: 1px solid rgba(61, 139, 42, 0.15);
}

.map-placeholder {
    padding: 3rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(61, 139, 42, 0.06), rgba(61, 139, 42, 0.03));
}

.map-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e07818, #3d8b2a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(224, 120, 24, 0.35);
}

.map-placeholder h3 {
    color: #1a3a0a;
    margin-bottom: 1rem;
}

.map-placeholder p {
    color: #6a8c5a;
    margin-bottom: 2rem;
}

.location-features {
    background: rgba(255, 255, 255, 0.93);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: #2d4a20;
    border: 1px solid rgba(61, 139, 42, 0.15);
}

.location-features h3 {
    color: #1a3a0a;
    margin-bottom: 1.5rem;
    text-align: center;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(61, 139, 42, 0.06);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(61, 139, 42, 0.06);
}

.feature-item:hover {
    background: rgba(61, 139, 42, 0.15);
    transform: translateX(-5px);
    border-color: rgba(61, 139, 42, 0.28);
}

.feature-item i {
    color: #e07818;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.feature-item span {
    color: #2d4a20;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: #082008;
    color: #d8f5c0;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-brand h3 {
    margin: 0;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #e07818, #f5a040);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-desc {
    color: #a8d898;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.footer-contact {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #a8d898;
}

.contact-item i {
    color: #e07818;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
    color: #88c878;
}

.footer-bottom p {
    margin: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoom {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(12, 50, 6, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        border-top: 1px solid rgba(61, 139, 42, 0.15);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        color: #d8f5c0;
    }

    .nav-link:hover,
    .nav-link.active {
        color: #ffffff;
        background: rgba(255, 255, 255, 0.15);
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }

    .feature-card {
        padding: 1.25rem 1rem;
        border-radius: 15px;
    }

    .feature-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
        margin-bottom: 0.75rem;
    }

    .feature-card h3 {
        font-size: 1.15rem;
        margin-bottom: 0.5rem;
    }

    .feature-card p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-list {
        grid-template-columns: 1fr;
    }

    .footer-contact {
        flex-direction: column;
        gap: 1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 15px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .modal-content {
        width: 95%;
    }

    .modal-close {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }

    .map-placeholder {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .nav-container {
        padding: 1rem;
    }

    .feature-card {
        padding: 1rem 0.75rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .contact-card {
        padding: 1rem;
    }

    .map-placeholder {
        padding: 1.5rem 1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f0f5eb;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #e07818, #3d8b2a);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #f5a040, #f5a040);
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 25px;
    justify-content: center;
    align-items: center;
}

.social-icons a {
    color: #a8d898;
    font-size: 24px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: #e07818;
    transform: translateY(-3px);
}

/* Testimonials */
.testimonials {
    background: #f0f5eb;
    padding: 50px 20px;
    text-align: center;
    color: #2d4a20;
}

.testimonial-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.testimonial {
    background: rgba(255, 255, 255, 0.93);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(61, 139, 42, 0.15);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: #2d4a20;
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
    border-color: rgba(224, 120, 24, 0.35);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 15px;
    text-align: center;
    color: #4a6a38;
}

.testimonial-author {
    font-weight: bold;
    color: #e07818;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #2d4a20;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid rgba(61, 139, 42, 0.28);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.93);
    backdrop-filter: blur(10px);
}

.faq-question {
    padding: 15px;
    background: rgba(245, 250, 240, 0.97);
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #1a3a0a;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(61, 139, 42, 0.15);
}

.faq-answer {
    padding: 15px;
    background: rgba(240, 248, 235, 0.7);
    display: none;
    color: #4a6a38;
}

.faq-question i {
    transition: transform 0.3s;
    color: #e07818;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    display: block;
}

/* Navbar Logo */
.navbar-logo {
    height: 65px;
    width: 100px;
    object-fit: contain;
    margin-right: 10px;
    vertical-align: middle;
}

/* Booking Terms Section */
.terms-section {
    background: #f0f5eb;
    padding: 3rem 0 2rem 0;
    margin: 2rem 0;
}

.terms-container {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.93);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    padding: 2.5rem 2rem;
    border: 1px solid rgba(61, 139, 42, 0.2);
    color: #2d4a20;
}

.terms-title {
    text-align: center;
    color: #1a3a0a;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #f8fafc, #e07818);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.terms-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-list li {
    position: relative;
    padding-right: 2.2em;
    margin-bottom: 1.1em;
    font-size: 1.08rem;
    color: #2d4a20;
    background: rgba(61, 139, 42, 0.06);
    border-radius: 8px;
    padding-top: 0.8em;
    padding-bottom: 0.8em;
    padding-left: 1em;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(61, 139, 42, 0.06);
    transition: all 0.3s ease;
}

.terms-list li:hover {
    border-color: rgba(61, 139, 42, 0.28);
    background: rgba(56, 189, 248, 0.08);
}

.terms-list li:before {
    content: "\f058";
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #e07818;
    position: absolute;
    right: 0.7em;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1em;
}

@media (max-width: 600px) {
    .terms-container {
        padding: 1.2rem 0.5rem;
    }

    .terms-title {
        font-size: 1.3rem;
    }

    .terms-list li {
        font-size: 0.98rem;
        padding-right: 2em;
    }
}

/* Terms Notes Styles */
.terms-notes {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px dashed rgba(61, 139, 42, 0.2);
}

.notes-title {
    color: #e07818;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.notes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.notes-list li {
    position: relative;
    padding-right: 2.2em;
    margin-bottom: 0.9em;
    font-size: 1.05rem;
    color: #4a6a38;
    background: rgba(56, 189, 248, 0.03);
    border-radius: 8px;
    padding-top: 0.7em;
    padding-bottom: 0.7em;
    padding-left: 1em;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-right: 4px solid #e07818;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.notes-list li:hover {
    background: rgba(56, 189, 248, 0.06);
}

.notes-list li:before {
    content: "\f05a";
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #e07818;
    position: absolute;
    right: 0.7em;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1em;
}

.notes-list li.alert-item {
    border-right-color: #f87171;
    background: rgba(248, 113, 113, 0.05);
}

.notes-list li.alert-item:before {
    content: "🔴";
    font-family: unset;
    font-size: 1rem;
    right: 0.6em;
}

.notes-list li.info-item {
    border-right-color: #facc15;
    background: rgba(250, 204, 21, 0.05);
}

.notes-list li.info-item:before {
    content: "🎈";
    font-family: unset;
    font-size: 1rem;
    right: 0.6em;
}

@media (max-width: 600px) {
    .notes-list li {
        font-size: 0.98rem;
        padding-right: 2em;
    }

    .notes-title {
        font-size: 1.2rem;
    }
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 0;
    background: #f0f5eb;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.93);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(61, 139, 42, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(61, 139, 42, 0.2);
    border-color: rgba(224, 120, 24, 0.35);
}

.pricing-card.featured {
    border: 2px solid #e07818;
    position: relative;
    box-shadow: 0 10px 30px rgba(61, 139, 42, 0.2);
}

.pricing-card.featured::after {
    content: "الأكثر طلباً";
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #e07818, #3d8b2a);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(224, 120, 24, 0.35);
}

.pricing-card-header {
    margin-bottom: 1.5rem;
}

.pricing-card-title {
    font-size: 1.5rem;
    color: #1a3a0a;
    margin-bottom: 0.5rem;
}

.pricing-card-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: #e07818;
    margin: 1rem 0;
}

.pricing-card-price span {
    font-size: 1.2rem;
    font-weight: normal;
    color: #7a9a6a;
}

.pricing-card-time {
    font-size: 0.95rem;
    color: #6a8c5a;
    display: inline-block;
    padding: 6px 12px;
    background: rgba(61, 139, 42, 0.06);
    border-radius: 30px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(61, 139, 42, 0.15);
}

.pricing-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: right;
}

.pricing-card-features li {
    padding: 0.5rem 2rem 0.5rem 0;
    position: relative;
    color: #4a6a38;
    font-size: 1.05rem;
}

.pricing-card-features li::before {
    content: "\f00c";
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #e07818;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.pricing-card-features li.unavailable {
    color: #7a9a6a;
    text-decoration: line-through;
}

.pricing-card-features li.unavailable::before {
    content: "\f00d";
    color: #f87171;
}

.pricing-footer-note {
    text-align: center;
    margin-top: 3rem;
    font-size: 1.1rem;
    color: #2d4a20;
    background: rgba(255, 255, 255, 0.93);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px dashed rgba(61, 139, 42, 0.2);
}

.pricing-footer-note p {
    margin: 0 0 0.5rem 0;
    color: #6a8c5a;
}

.pricing-footer-note p:last-child {
    margin: 0;
}

/* Video Tour Section */
.video-tour-section {
    padding: 5rem 0 2rem 0;
    background: #f0f5eb;
}

.video-wrapper {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(61, 139, 42, 0.2);
    border: 2px solid rgba(61, 139, 42, 0.15);
    background: #082008;
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
}