:root {
    --primary-color: #2e7d32; 
    --primary-gradient: linear-gradient(135deg, #43a047 0%, #2e7d32 100%);
    --secondary-color: #fbc02d;
    --secondary-gradient: linear-gradient(135deg, #fdd835 0%, #fbc02d 100%);
    --dark-color: #212121;
    --gray-color: #616161;
    --white: #fff;
    --border-radius: 12px;
    --transition: all 0.3s ease-in-out;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Cairo', sans-serif; }
html, body { width: 100%; max-width: 100%; overflow-x: hidden !important; position: relative; }
html { scroll-behavior: smooth; }
body { background-color: var(--white); color: var(--dark-color); }

.section-gradient-1 { background: linear-gradient(180deg, #ffffff 0%, #fffde7 100%); }
.section-gradient-2 { background: linear-gradient(180deg, #f1f8e9 0%, #dcedc8 100%); }
.section-gradient-3 { background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%); }
.section-gradient-4 { background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%); }

header {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 15px 0;
    position: fixed; top: 0; width: 100%; z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05); backdrop-filter: blur(5px);
}
.container { width: 90%; max-width: 1200px; margin: auto; }
header .container { display: flex; justify-content: space-between; align-items: center; }
.logo h1 { color: var(--primary-color); font-size: 1.7rem; font-weight: 800; display: flex; align-items: center; gap: 10px; }
.nav-links { list-style: none; display: flex; gap: 30px; }
.nav-links li a { text-decoration: none; color: var(--dark-color); font-weight: 700; font-size: 1.05rem; position: relative; padding-bottom: 5px; }
.nav-links li a::after { content: ''; position: absolute; bottom: 0; right: 0; width: 0; height: 3px; background: var(--secondary-color); transition: var(--transition); }
.nav-links li a:hover::after, .nav-links li a.active::after { width: 100%; }
.nav-links li a:hover { color: var(--primary-color); }
.hamburger { display: none; font-size: 1.8rem; cursor: pointer; color: var(--primary-color); z-index: 5000; }

.mobile-nav {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.98), rgba(27, 94, 32, 0.98));
    z-index: 9999; display: flex; justify-content: center; align-items: center;
    opacity: 0; visibility: hidden; transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    backdrop-filter: blur(10px);
}
.mobile-nav.active { opacity: 1; visibility: visible; }
.mobile-nav ul { list-style: none; text-align: center; }
.mobile-nav ul li { margin: 25px 0; overflow: hidden; }
.mobile-nav ul li a {
    color: #fff; font-size: 2rem; font-weight: 800; text-decoration: none;
    display: inline-block; transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}
.mobile-nav.active ul li a { transform: translateY(0); }
.mobile-nav.active ul li:nth-child(1) a { transition-delay: 0.1s; }
.mobile-nav.active ul li:nth-child(2) a { transition-delay: 0.2s; }
.mobile-nav.active ul li:nth-child(3) a { transition-delay: 0.3s; }
.mobile-nav.active ul li:nth-child(4) a { transition-delay: 0.4s; }
.mobile-nav.active ul li:nth-child(5) a { transition-delay: 0.5s; }
.mobile-nav.active ul li:nth-child(6) a { transition-delay: 0.6s; }
.mobile-nav ul li a:hover { color: var(--secondary-color); transform: scale(1.1); }
.close-btn {
    position: absolute; top: 30px; left: 30px; font-size: 2.5rem; color: #fff; cursor: pointer;
    background: rgba(255,255,255,0.1); width: 60px; height: 60px; border-radius: 50%;
    display: flex; justify-content: center; align-items: center; transition: 0.3s;
}
.close-btn:hover { background: #fff; color: var(--primary-color); transform: rotate(90deg); }
.mobile-nav-overlay { display: none !important; }
.hero {
    width: 100vw; height: 100vh; background: url('images/IMG-20251204-WA0015.jpg') no-repeat center center/cover;
    position: relative; display: flex; justify-content: center; align-items: center; text-align: center; overflow: hidden;
}
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(rgba(0,0,0,0.3), rgba(12, 45, 13, 0.8)); }
.hero-content { position: relative; z-index: 1; color: var(--white); padding: 0 20px; max-width: 850px; }
.experience-badge {
    display: inline-block;
    background: rgba(0, 0, 0, 0.6); 
    color: var(--secondary-color); 
    font-size: 1.3rem;
    font-weight: 700;
    padding: 10px 25px;
    border-radius: 50px; 
    border: 2px solid var(--secondary-color); 
    margin-bottom: 25px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.3); 
    backdrop-filter: blur(5px);
}

.experience-badge i {
    margin-left: 10px;
    color: #fff; 
}
@media (max-width: 768px) {
    .experience-badge {
        font-size: 1rem;
        padding: 8px 15px;
        width: 100%; 
        border-radius: 10px;
    }
}
.hero-content h1 { font-size: 3.5rem; margin-bottom: 25px; text-shadow: 0 4px 15px rgba(0,0,0,0.4); }
.highlight-text { color: var(--secondary-color); font-style: italic; }
.hero-content p { font-size: 1.3rem; margin-bottom: 45px; max-width: 700px; margin: 0 auto 40px; }

.hero-btns { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 16px 40px; border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 1.1rem; transition: 0.4s; border: none; cursor: pointer; }
.btn-primary { background: var(--primary-gradient); color: var(--white); box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
.btn-primary:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(46, 125, 50, 0.4); }
.btn-secondary { background: rgba(255,255,255,0.15); border: 2px solid #fff; color: #fff; backdrop-filter: blur(5px); }
.btn-secondary:hover { background: #fff; color: var(--primary-color); transform: translateY(-5px); }
.pulse-btn { animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(46, 125, 50, 0.7); } 70% { box-shadow: 0 0 0 15px rgba(46, 125, 50, 0); } 100% { box-shadow: 0 0 0 0 rgba(46, 125, 50, 0); } }

.section-padding { padding: 90px 0; }
.section-title { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 25px; font-weight: 800; }
.center-title { text-align: center; margin-bottom: 70px; }
.center-title::after { content: ''; display: block; width: 120px; height: 6px; background: var(--secondary-gradient); margin: 15px auto 0; border-radius: 10px; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.service-card { background: var(--white); border-radius: var(--border-radius); overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: 0.3s; cursor: pointer; }
.service-card:hover { transform: translateY(-15px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.service-img { height: 240px; overflow: hidden; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s; }
.service-card:hover .service-img img { transform: scale(1.15); }
.service-content { padding: 30px; text-align: right; }
.service-content h3 { font-size: 1.5rem; margin-bottom: 15px; color: var(--primary-color); border-bottom: 3px solid var(--secondary-color); display: inline-block; padding-bottom: 5px; }
.service-content p { color: var(--gray-color); line-height: 1.7; }
.details-link {
    display: inline-block;
    margin-top: 12px;           
    color: var(--secondary-color); 
    font-weight: 700;           
    font-size: 0.95rem;         
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;  
}

.details-link i {
    font-size: 0.8rem;
    margin-right: 5px;
    transition: transform 0.3s ease;
}

.service-card:hover .details-link {
    color: var(--primary-color); 
    transform: translateX(-5px); 
}

.service-card:hover .details-link i {
    transform: translateX(-3px); 
}
.row { display: flex; flex-wrap: wrap; align-items: center; gap: 50px; }
.col-image, .col-text { flex: 1; min-width: 320px; }
.col-image img { width: 100%; border-radius: 20px; box-shadow: 0 20px 50px rgba(0,0,0,0.15); }
.float-animation { animation: float 6s ease-in-out infinite; }
@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-20px); } 100% { transform: translateY(0px); } }
.lead-text { font-size: 1.4rem; font-weight: 700; margin-bottom: 20px; }
.process-container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 30px; }
.process-step { flex: 1; min-width: 220px; text-align: center; background: #fff; padding: 40px 25px; border-radius: 20px; box-shadow: 0 10px 25px rgba(0,0,0,0.03); transition: 0.3s; }
.process-step:hover { transform: translateY(-10px); }
.step-number { width: 50px; height: 50px; background: var(--secondary-gradient); border-radius: 50%; display: flex; justify-content: center; align-items: center; font-weight: 800; font-size: 1.4rem; margin: 0 auto 25px; }
.process-step i { font-size: 3rem; color: var(--primary-color); margin-bottom: 20px; }
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; margin-top: 35px; }
.feature-box { background: #fff; padding: 25px; border-radius: 15px; transition: 0.3s; }
.feature-box:hover { box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.feature-box i { font-size: 2.2rem; color: var(--secondary-color); margin-bottom: 15px; }
.contact-container { display: flex; flex-wrap: wrap; gap: 50px; align-items: flex-start; }
.contact-info, .contact-form-wrapper { flex: 1; min-width: 350px; }
.contact-card { background: #fff; padding: 40px; border-radius: 20px; box-shadow: 0 10px 40px rgba(0,0,0,0.05); }
.contact-card h3 { margin-bottom: 20px; font-size: 1.8rem; color: var(--primary-color); }
.info-item { display: flex; align-items: center; margin-bottom: 30px; }
.icon-circle { width: 60px; height: 60px; background: #e8f5e9; border-radius: 50%; display: flex; justify-content: center; align-items: center; margin-left: 20px; color: var(--primary-color); font-size: 1.5rem; transition: 0.3s; }
.info-item:hover .icon-circle { background: var(--primary-color); color: #fff; transform: rotate(360deg); }
.styled-form { background: #fff; padding: 40px; border-radius: 20px; box-shadow: 0 15px 50px rgba(0,0,0,0.1); border-top: 5px solid var(--primary-color); }
.form-group { margin-bottom: 25px; }
.styled-form input, .styled-form select, .styled-form textarea { width: 100%; padding: 15px 20px; border: 2px solid #eee; border-radius: 10px; background: #f9f9f9; outline: none; }
.styled-form input:focus { border-color: var(--primary-color); background: #fff; }
.w-100 { width: 100%; }
.details-hero { height: 60vh; background-size: cover; background-position: center; position: relative; display: flex; align-items: center; justify-content: center; text-align: center; margin-top: 70px; }
.details-hero::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); }
.details-hero h1 { position: relative; color: #fff; font-size: 3.5rem; z-index: 2; }
.details-content { background: #fff; margin-top: -50px; position: relative; z-index: 3; border-radius: 30px 30px 0 0; padding: 60px 0; }
.details-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }
.features-list-check { list-style: none; margin: 30px 0; }
.features-list-check li { font-size: 1.1rem; margin-bottom: 15px; display: flex; align-items: center; }
.features-list-check li i { color: var(--secondary-color); margin-left: 10px; font-size: 1.2rem; }
.gallery-mini-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 15px; margin-top: 30px; }
.gallery-mini-grid img { width: 100%; height: 150px; object-fit: cover; border-radius: 10px; cursor: pointer; transition: 0.3s; }
.gallery-mini-grid img:hover { transform: scale(1.05); }
.booking-sidebar { background: #f9f9f9; padding: 30px; border-radius: 20px; border: 1px solid #eee; position: sticky; top: 100px; }

footer {
    background-color: #1a252f; 
    color: #ecf0f1;
    padding-top: 60px;
    margin-top: 50px;
    border-top: 5px solid var(--primary-color); 
    direction: rtl;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-col {
    flex: 1;
    min-width: 280px;
}

.footer-col h3 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin-bottom: 25px;
    padding-bottom: 15px; 
    position: relative;
    font-weight: 700;
    text-align: center; 
}
.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0; 
    right: 50%; 
    transform: translateX(50%);  
    width: 50px; 
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}
.footer-col p {
    color: #bdc3c7;
    line-height: 1.8;
    font-size: 0.95rem;
    max-width: 90%;
}
.footer-links-list {
    list-style: none;
    padding: 0;
}

.footer-links-list li {
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.05); 
    padding-bottom: 8px;
    width: 80%; 
}

.footer-links-list li:last-child {
    border: none;
}

.footer-links-list li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: 0.3s;
    display: block;
}

.footer-links-list li a:hover {
    color: var(--secondary-color);
    padding-right: 8px;
}
.contact-row {
    display: flex;
    align-items: center;
    justify-content: space-between; 
    margin-bottom: 18px;
    color: #bdc3c7;
}

.contact-row .text {
    font-size: 0.95rem;
    font-weight: 600;
}

.contact-row .icon {
    width: 35px;
    height: 35px;
    background-color: rgba(255,255,255,0.05); 
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--secondary-color); 
    font-size: 1rem;
    transition: 0.3s;
}

.contact-row:hover .icon {
    background-color: var(--primary-color);
    color: #fff;
    transform: rotate(360deg);
}
.copyright {
    background-color: #151e26;
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.copyright p {
    margin: 0;
    font-size: 0.9rem;
    color: #7f8c8d;
}
@media (max-width: 768px) {
    .footer-row {
        flex-direction: column;
        text-align: center;
    }

    .footer-col h3::after {
        right: 50%;
        transform: translateX(50%); 
    }

    .footer-col p, .footer-links-list li {
        margin-right: auto;
        margin-left: auto;
    }
    .contact-row {
        justify-content: center; 
        gap: 15px;
    }
}
@media (max-width: 768px) {
    .container { width: 100%; padding: 0 20px; overflow: hidden; }
    header .nav-links { display: none !important; }
    .hamburger { display: block !important; }
    .hero-content h1 { font-size: 2rem; }
    .hero-btns { flex-direction: column; width: 100%; }
    .btn { width: 100%; }
    .row { flex-direction: column; }
    .contact-container { flex-direction: column-reverse; }
    .features-grid { grid-template-columns: 1fr; }
    .details-grid { grid-template-columns: 1fr; }
    .booking-sidebar { position: static; }
    .service-card, .process-step, .contact-card, .styled-form { width: 100%; margin-bottom: 20px; }
}
.process-step {
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
}

.process-step:hover {
    transform: translateY(-15px) !important;
    border-bottom: 5px solid var(--secondary-color);
}
.step-number {
    transition: 0.6s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.process-step:hover .step-number {
    transform: rotate(360deg) scale(1.1);
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 0 20px rgba(46, 125, 50, 0.5);
}

.process-step i {
    transition: 0.5s;
}

.process-step:hover i {
    transform: scale(1.2);
    color: var(--secondary-color);
}
.phone-link {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 800;
    font-size: 1.2rem;
    transition: 0.3s;
}
.phone-link:hover {
    color: var(--primary-color);
}

.social-box {
    margin-top: 25px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}
.social-box p {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 10px;
}
.social-buttons {
    display: flex;
    gap: 15px;
}
.social-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.social-btn i {
    margin-left: 8px;
    font-size: 1.2rem;
}
.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.insta {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.tiktok {
    background: #000;
    border: 1px solid #333;
}
.footer-social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}
.icon-link {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.3rem;
    text-decoration: none;
    transition: 0.4s;
}
.icon-link:hover {
    transform: rotate(360deg);
}
.insta-icon:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.tiktok-icon:hover {
    background: #000;
    color: #00f2ea; 
    text-shadow: 2px 2px 0 #ff0050;
}
@media (max-width: 768px) {
    .footer-social-icons {
        justify-content: center;
    }
}
.video-container {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    padding-bottom: 56.25%; 
    background: #000;
}

.video-container video, 
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-mini-grid {
    grid-template-columns: repeat(2, 1fr); 
}
.media-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 20px;
    margin-bottom: 30px;
}
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; 
    height: 0;
    border-radius: 15px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.media-grid img {
    width: 100%;
    height: 200px; 
    object-fit: cover;
    border-radius: 15px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.media-grid img:hover {
    transform: scale(1.03);
}
@media (max-width: 768px) {
    .media-grid {
        grid-template-columns: 1fr; 
    }
}
footer {
    background-color: #1a252f;
    color: #cfd8dc;
    padding: 30px 0; 
    text-align: center; 
}

footer p {
    margin: 0; 
}
.developer {
    margin-top: 5px !important; 
    font-size: 0.85rem;         
    color: #bdc3c7;             
}

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

.developer a:hover {
    color: var(--primary-color);   
    text-shadow: 0 0 5px rgba(46, 125, 50, 0.5); 
}
@media (max-width: 768px) {
    .container {
        width: 100%;
        padding: 0 20px;
        overflow: hidden;
    }
    header {
        padding: 10px 0; 
    }
    
    header .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .logo h1 {
        font-size: 1rem; 
        line-height: 1.4;
        max-width: 200px; 
    }
    
    .logo h1 i {
        font-size: 1.2rem;
    }

    .hamburger {
        display: block !important;
        font-size: 1.5rem;
    }
    
    header .nav-links { display: none !important; }
    .hero {
        height: 100vh; 
        padding-top: 80px; 
        background-position: center;
    }

    .hero-content {
        width: 100%;
        padding: 0 10px;
    }

    .hero-content h1 { 
        font-size: 1.8rem; 
        margin-bottom: 15px;
    }
        .experience-badge {
        font-size: 0.85rem; 
        padding: 8px 15px;
        width: auto;
        display: inline-block; 
        max-width: 100%;
        line-height: 1.6;
        margin-bottom: 20px;
        white-space: normal; 
    }

    .hero-content p { 
        font-size: 0.95rem; 
        line-height: 1.6;
        margin-bottom: 25px;
    }
        .hero-btns { 
        flex-direction: column; 
        width: 100%; 
        gap: 15px;
    }
    
    .btn { 
        width: 100%; 
        margin: 0; 
        padding: 12px 0; 
        font-size: 1rem;
    }
        .section-padding { padding: 50px 0; }
    .row { flex-direction: column; gap: 30px; }
    .col-image img { width: 100%; height: auto; }
    .contact-container { flex-direction: column-reverse; }
    .features-grid { grid-template-columns: 1fr; }
    .service-card, .process-step, .contact-card, .styled-form {
        width: 100%;
        margin-bottom: 20px;
        box-sizing: border-box;
    }
        .footer-col h3::after {
        right: 50%;
        transform: translateX(50%);
    }
    .footer-row { text-align: center; }
    .contact-row { justify-content: center; }
}

.intro-grid-container {
    display: flex;
    align-items: center;       
    justify-content: space-between;
    gap: 50px;                
    max-width: 1000px;         
    margin: 0 auto;            
}

.intro-caption {
    flex: 1;                  
    text-align: right;        
}

.square-title {
    font-size: 3rem;           
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1.2;
}

.intro-caption p {
    font-size: 1.2rem;
    color: #666;
}

.square-video-wrapper {
    flex: 0 0 600px;           
    height: 450px;             
    border-radius: 30px;       
    overflow: hidden;          
    border: 5px solid #fff;
    position: relative;
}
.square-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;         
    display: block;
}

@media (max-width: 991px) {
    .intro-grid-container {
        flex-direction: column; 
        text-align: center;     
        gap: 30px;
    }

    .intro-caption {
        text-align: center;
        width: 100%;
    }
    
    .square-title {
        font-size: 2.2rem;
    }

    .square-video-wrapper {
        width: 100%;           
        max-width: 400px;      
        height: auto;          
        aspect-ratio: 1 / 1;   
        flex: none;
         
    }
}