:root {
    --primary: #1a3c15;
    --accent: #c5a059;
    --bg-light: #fdfdfd;
    --dark: #121212;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg-light);
    color: var(--dark);
    overflow-x: hidden;
}

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

.section-padding {
    padding: 100px 0;
}

.bg-alt {
    background: #f4f7f1;
}

/* --- Header --- */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 4000;
    padding: 25px 0;
    transition: 0.4s ease;
    background: transparent;
}

header.header-scrolled {
    background: rgba(255, 255, 255, 0.98);
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-circle {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--accent);
    border-radius: 50% 0 50% 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.brand-text h1 {
    font-size: 1.4rem;
    color: var(--primary);
    font-weight: 900;
    line-height: 1;
}

.brand-text span {
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 700;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--dark);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-cta {
    background: var(--primary);
    color: white !important;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 900;
    box-shadow: 0 5px 15px rgba(26, 60, 21, 0.2);
}

/* --- Hero --- */
.hero {
    height: 100vh;
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('imgs/wood3.jpeg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.top-badge {
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 6px 20px;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 25px;
    display: inline-block;
}

.hero h2 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.text-gold {
    color: var(--accent);
}

.btn-primary {
    background: var(--accent);
    color: var(--dark);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 900;
    text-decoration: none;
    display: inline-block;
    margin: 10px;
}

.btn-secondary {
    border: 2px solid white;
    color: white;
    padding: 13px 40px;
    border-radius: 50px;
    font-weight: 900;
    display: inline-block;
    margin: 10px;
    text-decoration: none;
}

/* --- Services Grid --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: white;
    padding: 50px 30px;
    border-radius: 25px;
    text-align: center;
    transition: 0.4s;
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.service-card:hover {
    transform: translateY(-15px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.s-icon {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 25px;
}

/* --- Gallery Modern Layout --- */
.gallery-block {
    margin-bottom: 60px;
}

.gallery-block h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 30px;
    border-right: 5px solid var(--accent);
    padding-right: 15px;
}

.img-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.img-box-m {
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.img-box-m img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

.img-box-m:hover img {
    transform: scale(1.1);
}

/* --- Floating Buttons --- */
.fixed-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 5000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-wa {
    background: #25d366;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    text-decoration: none;
}

.btn-call {
    background: var(--white);
    color: var(--primary);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    text-decoration: none;
}

/* --- Mobile Menu --- */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 100px 30px;
        transition: 0.4s;
        z-index: 5000;
    }

    .nav-links.active {
        right: 0;
    }

    .menu-btn {
        display: block;
        font-size: 1.8rem;
        color: var(--primary);
        cursor: pointer;
    }

    .close-menu {
        display: block !important;
        position: absolute;
        top: 30px;
        left: 30px;
        color: var(--primary);
        font-size: 1.8rem;
    }

    .hero h2 {
        font-size: 2.3rem;
    }

    .btn-wa span {
        display: none;
    }

    .btn-wa {
        width: 60px;
        height: 60px;
        justify-content: center;
        padding: 0;
        border-radius: 50%;
        font-size: 2.2rem;
    }
}

.main-footer {
    background: #0c1a08;
    color: #777;
    padding: 50px 0;
    text-align: center;
}

.footer-logo {
    color: var(--accent);
    margin-bottom: 20px;
}


.gallery-block {
    margin-bottom: 80px;
}

.block-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(197, 160, 89, 0.2);
}

.block-title i {
    font-size: 2rem;
    color: var(--accent);
}

.block-title h3 {
    font-size: 1.6rem;
    color: var(--primary);
    font-weight: 800;
}

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

.gallery-item {
    height: 300px;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    background: #eee;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(26, 60, 21, 0.9), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 30px;
    opacity: 0;
    transition: 0.4s ease;
}

.gallery-item .overlay span {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    transform: translateY(20px);
    transition: 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.15) rotate(2deg);
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.gallery-item:hover .overlay span {
    transform: translateY(0);
}

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

    .gallery-item {
        height: 250px;
    }

    .block-title h3 {
        font-size: 1.2rem;
    }
}

.menu-btn,
.close-menu {
    display: none !important;
}

@media (max-width: 768px) {
    .menu-btn {
        display: block !important;
    }

    .close-menu {
        display: block !important;
    }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

@media (min-width: 769px) {
    .nav-links {
        position: static !important;
        background: transparent !important;
        width: auto !important;
        height: auto !important;
        padding: 0 !important;
        box-shadow: none !important;
    }
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1.2;
    min-width: 300px;
}

.features-list {
    list-style: none;
    margin-top: 30px;
}

.features-list li {
    margin-bottom: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--primary);
}

.features-list i {
    font-size: 1.5rem;
    color: var(--accent);
}

.about-img {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.img-frame {
    border: 1px solid var(--accent);
    padding: 15px;
    border-radius: 30px;
}

.img-frame img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step-card {
    background: white;
    padding: 40px 25px;
    border-radius: 25px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.step-num {
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    margin: 0 auto 20px;
}

.areas-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.area-col {
    background: white;
    padding: 20px;
    border-radius: 15px;
    border-right: 4px solid var(--accent);
}

.area-col h5 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.area-col p {
    font-size: 0.85rem;
    color: #777;
    line-height: 1.6;
}

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

.faq-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 15px;
    border: 1px solid #eee;
}

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

.final-cta {
    padding: 80px 0;
    background: #fff;
}

.cta-box {
    background: var(--primary);
    color: white;
    padding: 60px 40px;
    border-radius: 40px;
    text-align: center;
    border: 2px solid var(--accent);
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn-royal-call {
    background: white;
    color: var(--primary);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 900;
    text-decoration: none;
}

.btn-royal-wa {
    background: #25d366;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 900;
    text-decoration: none;
}

.line-gold {
    width: 70px;
    height: 4px;
    background: var(--accent);
    margin: 15px auto;
    border-radius: 50px;
}

.badge {
    background: rgba(197, 160, 89, 0.1);
    color: var(--accent);
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .cta-btns a {
        width: 100%;
    }

    .cta-box h2 {
        font-size: 1.8rem;
    }
}


.section-header {
    text-align: center;
    margin-bottom: 60px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: 900;
    text-align: center;
    width: 100%;
    margin-bottom: 15px;
}

.line-gold {
    width: 80px;
    height: 5px;
    background: var(--accent);
    margin: 0 auto !important;
    border-radius: 10px;
}

.section-header p {
    text-align: center;
    max-width: 700px;
    margin: 15px auto 0;
}

.badge,
.royal-badge {
    display: inline-block;
    margin: 0 auto 15px auto !important;
    text-align: center;
}
:root {
    --primary-green: #1b3022; 
    --accent-gold: #d4af37;  
    --light-green: #2ecc71;  
    --text-gray: #bdc3c7;
}

.main-footer {
    background-color: var(--primary-green);
    color: #fff;
    padding: 60px 0 20px;
    font-family: 'Cairo', sans-serif;
    border-top: 4px solid var(--accent-gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo i {
    color: var(--accent-gold);
    font-size: 24px;
}

.footer-logo h2 {
    font-size: 22px;
    margin: 0;
}

.footer-col p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 14px;
}

.footer-col h3 {
    color: var(--accent-gold);
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}



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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: 0.3s;
    font-size: 15px;
}

.footer-col ul li a:hover {
    color: var(--accent-gold);
    padding-right: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    color: #fff;
    background: rgba(255,255,255,0.1);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--accent-gold);
    transform: translateY(-5px);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text-gray);
    font-size: 14px;
}

.contact-item i {
    color: var(--accent-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
    color: #888;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

.nav-links li a {
    color: #ffffff !important;
    font-weight: 700;
    transition: 0.3s ease;
}

.header-scrolled .nav-links li a {
    color: var(--primary) !important; 
}

.nav-links li a.nav-cta {
    background: var(--primary);
    color: #ffffff !important;
    padding: 8px 18px;
    border-radius: 50px;
}

.header-scrolled .nav-links li a.nav-cta {
    background: var(--primary);
    color: #ffffff !important;
}

.menu-btn {
    color: #ffffff;
}
.header-scrolled .menu-btn {
    color: var(--primary);
}

@media (min-width: 992px) {
    .nav-links {
        gap: 15px;
    }
    .nav-links li a {
        font-size: 0.9rem; 
    }
}

@media (max-width: 768px) {
   
    .nav-links li a {
        color: var(--primary) !important; 
        font-size: 1.2rem;
        font-weight: 700;
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid #f0f0f0;
        text-align: right;
    }

    .close-menu {
        color: var(--primary) !important;
        font-size: 2rem !important;
    }
    
    .nav-links li a.nav-cta {
        background: var(--primary) !important;
        color: #ffffff !important;
        text-align: center;
        border-radius: 10px;
        margin-top: 10px;
    }
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
    margin: 0;
    padding: 0;
}

.footer-map-box {
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px;
    border-radius: 15px;
    border: 1px solid rgba(197, 160, 89, 0.2); 
    transition: 0.3s;
}

.footer-map-box:hover {
    border-color: var(--accent); 
}

.footer-map-box iframe {
    filter: grayscale(0.5) contrast(1.2); 
    transition: 0.4s;
}

.footer-map-box:hover iframe {
    filter: grayscale(0);
}

.map-btn-link {
    display: block;
    text-align: center;
    background: var(--accent);
    color: #1b2e18 !important; 
    padding: 6px;
    margin-top: 8px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 800;
    text-decoration: none !important;
    transition: 0.3s;
}

.map-btn-link:hover {
    background: #ffffff;
    transform: translateY(-2px);
}

.contact-details {
    margin-top: 15px;
}

@media (max-width: 768px) {
    .footer-grid {
        text-align: center;
    }
    .footer-map-box {
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
}
.logo-container {
    width: 65px; 
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: 0.3s ease;
}

.main-logo {
    width: 100%;
    height: 100%;
    object-fit: contain; 
}

.header-scrolled .logo-container {
    width: 50px;
    height: 50px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .logo-container {
        width: 50px;
        height: 50px;
    }
}