:root {
    --primary: #2e5a27;
    --accent: #c5a059;
    --wa-green: #25d366;
    --white: #ffffff;
    --bg-light: #f8faf8;
}

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

body {
    background: var(--bg-light);
    color: #333;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

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

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
    position: relative;
}

.floating-btn.wa {
    background: var(--wa-green);
    animation: pulse 2s infinite;
}

.floating-btn.phone {
    background: var(--primary);
}

.floating-btn:hover {
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Header & Logo */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.logo-name {
    display: block;
    font-weight: 900;
    color: var(--primary);
    font-size: 1.2rem;
}

.logo-sub {
    display: block;
    font-size: 0.7rem;
    color: var(--accent);
    font-weight: bold;
    letter-spacing: 1px;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

.desktop-nav ul li a {
    text-decoration: none;
    color: #444;
    margin: 0 15px;
    font-weight: 600;
    transition: 0.3s;
}

.desktop-nav ul li a:hover {
    color: var(--primary);
}

.btn-call-nav {
    background: var(--primary);
    color: white !important;
    padding: 8px 20px;
    border-radius: 50px;
}

/* Hero Section */

.hero {
    height: 100vh;
    position: relative;
    overflow: hidden; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-top: 90px;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                      url('https://images.unsplash.com/photo-1585320806297-9794b3e4eeae?q=80&w=2000&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    z-index: -1;
    animation: kenBurns 20s infinite alternate ease-in-out;
}

@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

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

.hero-btn-primary {
    background: var(--primary);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    margin: 10px;
    display: inline-block;
    transition: 0.3s;
}

.hero-btn-secondary {
    background: transparent;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    margin: 10px;
    display: inline-block;
    border: 2px solid white;
    transition: 0.3s;
}

.hero-btn-primary:hover {
    background: var(--accent);
    color: black;
}

.hero-btn-secondary:hover {
    background: white;
    color: black;
}

/* Sections */
.section-padding {
    padding: 100px 5%;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.8rem;
    color: var(--primary);
    font-weight: 900;
}

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

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

.service-card {
    background: white;
    padding: 40px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: 0.4s;
    border-bottom: 5px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
}

.card-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

/* Gallery */
.bg-alt {
    background: #f0f3f0;
}

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

.gallery-item {
    position: relative;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.g-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(46, 90, 39, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    opacity: 0;
    transition: 0.4s;
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Contact Card */
.contact-card {
    background: var(--primary);
    color: white;
    padding: 80px 40px;
    border-radius: 40px;
    text-align: center;
    background-image: linear-gradient(45deg, var(--primary), #1a3d16);
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.c-link {
    color: var(--accent);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 900;
}

.map-link {
    color: white;
    font-size: 1.1rem;
    text-decoration: underline;
}

footer {
    background: #1a1a1a;
    color: #888;
    text-align: center;
    padding: 40px;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .desktop-nav {
        display: none;
    }

    .section-padding {
        padding: 60px 5%;
    }

    .floating-contact {
        right: 20px;
        bottom: 20px;
    }
}

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

header {
    background: #ffffff;
    height: 80px;
    display: flex;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero {
    height: 100vh;
    margin-top: 0;
    background: #1a3d16 linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('https://images.unsplash.com/photo-1585320806297-9794b3e4eeae?q=80&w=2000&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
}

.floating-contact {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

.wa-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wa-label {
    background: white;
    color: #333;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.floating-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

.floating-btn.wa {
    background: #25d366;
    animation: shadow-pulse 2s infinite;
}

.floating-btn.phone {
    background: #2e5a27;
}

@keyframes shadow-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.brand {
    cursor: pointer;
}

.logo-circle {
    color: #c5a059 !important;
}

.logo-name {
    font-size: 1.3rem !important;
    line-height: 1;
}


header {
    background: #ffffff;
    height: 90px;
    display: flex;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

header .container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-right: 20px;
}

.desktop-nav {
    margin-left: 20px;
}

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

.desktop-nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 700;
    font-size: 1.05rem;
    transition: 0.3s;
}

.btn-call-nav {
    background: var(--primary);
    color: white !important;
    padding: 10px 25px !important;
    border-radius: 50px;
    margin-right: 10px;
}

.hero {
    padding-top: 90px;
}


.hero-content h1 {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.5s; 
}

.hero-content p {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.8s;
}

.hero-btns {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 1.1s; 
}

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

.hero-btn-primary {
    animation: floating 3s infinite ease-in-out;
}

@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}
.bg-light-gray { background-color: #fcfdfc; }

.sub-title {
    display: block;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

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

.feature-card {
    background: #ffffff;
    padding: 50px 30px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    z-index: 1;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(46, 90, 39, 0.1);
    border-color: var(--primary);
}

.icon-box {
    width: 80px;
    height: 80px;
    background: #f4f7f4;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: 0.4s;
}

.icon-box i {
    font-size: 2.2rem;
    color: var(--primary);
}

.feature-card:hover .icon-box {
    background: var(--primary);
}

.feature-card:hover .icon-box i {
    color: var(--accent);
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 800;
}

.feature-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
}

.feature-card.active {
    border-bottom: 5px solid var(--accent);
}

.bg-dark-green { background: #1a3d16; }
.white-text h2 { color: white !important; }

.steps-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
    perspective: 1000px;
}

.step {
    flex: 1;
    min-width: 280px;
    background: rgba(255, 255, 255, 0.03);
    padding: 50px 30px;
    border-radius: 30px;
    position: relative;
    color: white;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    opacity: 0;
    transform: translateY(50px);
}

.step.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

.step:nth-child(1) { transition-delay: 0.2s; }
.step:nth-child(2) { transition-delay: 0.4s; }
.step:nth-child(3) { transition-delay: 0.6s; }

.step:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent);
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.step-num {
    font-size: 5rem; 
    font-weight: 900;
    color: var(--accent);
    opacity: 0.15;
    position: absolute;
    top: 10px;
    right: 20px;
    transition: all 0.5s ease;
}

.step:hover .step-num {
    opacity: 0.5;
    transform: scale(1.2) rotate(-15deg);
    color: white;
}

.step h4 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--accent);
    position: relative;
    z-index: 2;
}

.step p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
    position: relative;
    z-index: 2;
}
/* .step-num {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent);
    opacity: 0.3;
    margin-bottom: 10px;
} */
/* .step h4 { font-size: 1.4rem; margin-bottom: 15px; color: var(--accent); } */

/* تطوير كارت التواصل */
.contact-card-modern {
    background: linear-gradient(135deg, #2e5a27 0%, #1a3d16 100%);
    border-radius: 40px;
    padding: 80px 40px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}
.contact-card-modern::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('images/img3.jpeg');
    opacity: 0.1;
}
.badge {
    background: var(--accent);
    color: #1a3d16;
    padding: 5px 20px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: inline-block;
}
.contact-methods {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}
.method-item {
    background: white;
    color: #1a3d16;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s;
}
.method-item:hover { transform: scale(1.05); background: var(--accent); }
.location-link a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 1.1rem;
    border-bottom: 1px dashed;
}

@media (max-width: 768px) {
    .step { padding: 30px 20px; }
    .method-item { width: 100%; justify-content: center; font-size: 1.1rem; }
}


.main-footer {
    background-color: #0d0d0d;
    color: #ffffff;
    padding: 80px 0 0;
    direction: rtl;
    text-align: right;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr; 
    gap: 60px; 
    padding-bottom: 60px;
}

.about-col {
    padding-right: 20px; 
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 25px;
    justify-content: flex-start; 
}

.about-col p {
    color: #999;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 0.95rem;
    max-width: 380px; 
}

.footer-col h4 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 12px;
    display: block; 
    text-align: right;
}

.footer-col h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 2px;
    background: var(--accent);
}

.links-col {
    text-align: right;
}

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

.links-col ul li a {
    text-decoration: none;
    color: #999;
    font-size: 1rem;
    display: block;
    margin-bottom: 15px;
    transition: 0.3s;
}

.contact-col {
    text-align: right;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    justify-content: flex-start;
}

.footer-contact-item i {
    color: var(--accent);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    margin-top: 5px;
}

.footer-contact-item p {
    color: #999;
    margin: 0;
    font-size: 1rem;
}

.footer-bottom {
    background: #000;
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.flex-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}
.footer-bottom p {
    color: #555;
    font-size: 0.85rem;
    margin: 0;
}

.bottom-links {
    display: flex;
    gap: 20px;
}

.bottom-links a {
    color: #555;
    text-decoration: none;
    font-size: 0.85rem;
    transition: 0.3s;
}

.bottom-links a:hover {
    color: #fff;
}

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

.social-links a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ccc;
    text-decoration: none;
    transition: 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    color: var(--accent);
    transform: translateY(-3px);
}


@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        padding: 0 20px 40px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-logo, .social-links, .footer-col h4::after, .footer-contact-item {
        justify-content: center;
    }
    .footer-col h4::after {
        right: 50%;
        transform: translateX(50%);
    }
    .flex-bottom {
        flex-direction: column;
        gap: 15px;
    }
}

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

.close-menu { display: none; }
@media (max-width: 768px) {
   .menu-toggle { display: block; }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%; 
        width: 280px;
        height: 100vh;
        background: white;
        z-index: 2000;
        transition: 0.4s ease-in-out;
        padding: 80px 30px;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    }

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

    .main-nav ul {
        flex-direction: column;
        gap: 25px;
        align-items: flex-start;
    }

    .main-nav ul li a {
        font-size: 1.2rem;
        color: var(--dark);
    }

    .close-menu {
        display: block;
        position: absolute;
        top: 25px;
        left: 25px;
        font-size: 1.5rem;
        color: var(--primary);
    }

    .overlay-nav {
        position: fixed;
        top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 1500;
        display: none;
    }
    .overlay-nav.active { display: block; }    header .container {
        padding: 0 15px !important;
    }
    
    .menu-toggle {
        margin-left: 5px;
        font-size: 1.6rem; 
    }

    .step {
        padding: 20px 15px !important; 
        min-height: auto; 
        margin-bottom: 10px;
    }
    
    .step-num {
        font-size: 2.2rem !important; 
        top: 10px;
        right: 10px;
    }

    .step h4 {
        font-size: 1.2rem !important;
        margin-bottom: 8px;
    }

    .step p {
        font-size: 0.9rem !important;
        line-height: 1.5;
    }

    .contact-card-modern {
        padding: 25px 15px !important; 
        margin: 0 10px; 
    }

    .contact-card-modern h2 {
        font-size: 1.4rem !important;
    }

    .contact-card-modern p {
        font-size: 0.9rem !important;
        margin-bottom: 15px;
    }

    .badge {
        padding: 4px 15px;
        font-size: 0.8rem;
    }

    .method-item {
        padding: 10px 20px !important; 
        font-size: 1rem !important;
        gap: 10px;
    }

    .location-link a {
        font-size: 0.9rem !important;
    }

    .floating-contact {
        bottom: 10px;
        right: 10px;
    }
    .floating-btn {
        width: 45px;
        height: 45px;
    }
}


@media (max-width: 768px) {
    
    .main-nav {
        background: #ffffff !important; 
        right: -100%;
        width: 80%; 
        display: flex;
        flex-direction: column;
        padding: 100px 30px !important;
    }

    .main-nav ul {
        list-style: none !important; 
        padding: 0 !important;
        margin: 0 !important;
        width: 100%;
        text-align: right; 
    }

    .main-nav ul li {
        margin-bottom: 20px !important;
        padding-bottom: 10px;
    }

    .main-nav ul li a {
        font-size: 1.1rem !important;
        color: #333 !important;
        display: block;
        font-weight: 700;
    }

    .btn-call-nav {
        background: var(--primary) !important;
        color: white !important;
        text-align: center;
        padding: 12px !important;
        border-radius: 10px !important;
        margin-top: 10px;
        display: block !important;
    }

    .close-menu {
        left: 20px !important;
        top: 20px !important;
        color: var(--primary) !important;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        text-align: center !important; 
        gap: 40px !important;
    }

    .about-col, .links-col, .contact-col {
        display: flex;
        flex-direction: column;
        align-items: center; 
        text-align: center !important;
    }

    .footer-logo {
        justify-content: center !important;
    }

    .about-col p {
        margin: 0 auto 25px !important;
    }

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

   
    .footer-col h4 {
        text-align: center !important;
        width: 100%;
    }

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

    .links-col ul li a {
        text-align: center !important;
    }

    .footer-contact-item {
        justify-content: center !important;
        width: 100%;
        text-align: center !important;
    }

    .footer-contact-item i {
        margin-top: 0 !important;
    }

    .flex-bottom {
        flex-direction: column !important;
        gap: 10px !important;
        text-align: center !important;
    }

    .bottom-links {
        justify-content: center;
        gap: 15px;
    }

    .step {
        padding: 20px !important;
    }
    .step-num {
        font-size: 2.5rem !important;
        opacity: 0.1 !important;
    }
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%; 
        width: 280px;
        height: 100vh;
        background: #ffffff !important;
        z-index: 3000 !important;
        transition: 0.4s ease;
        padding: 100px 20px !important;
        display: block !important;
        box-shadow: -5px 0 15px rgba(0,0,0,0.2);
    }

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

    .main-nav ul {
        display: flex;
        flex-direction: column;
        gap: 20px;
        list-style: none;
        padding: 0;
    }

    .main-nav ul li a {
        display: block; 
        padding: 10px;
        font-size: 1.2rem;
        color: #333;
        text-decoration: none;
        font-weight: bold;
        border-bottom: 1px solid #f5f5f5;
    }

    .overlay-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.6);
        z-index: 2500 !important; 
        display: none;
    }

    .overlay-nav.active {
        display: block;
    }

    .close-menu {
        display: block !important;
        position: absolute;
        top: 20px;
        left: 20px;
        font-size: 2rem;
        color: var(--primary);
        cursor: pointer;
        z-index: 3001;
    }
}

header {
    background: #ffffff;
    height: 90px;
    display: flex;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

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

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

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.main-nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 700;
    font-size: 1rem;
    transition: 0.3s;
}

.main-nav ul li a:hover {
    color: var(--primary);
}

.btn-call-nav {
    background: var(--primary);
    color: white !important;
    padding: 10px 25px !important;
    border-radius: 50px;
}

.menu-toggle, .close-menu {
    display: none;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--primary);
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%; 
        width: 280px;
        height: 100vh;
        background: white;
        transition: 0.4s ease-in-out;
        padding: 80px 30px;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    }

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

    .main-nav ul {
        flex-direction: column; 
        align-items: flex-start;
        gap: 20px;
    }

    .close-menu {
        display: block;
        position: absolute;
        top: 25px;
        left: 25px;
        font-size: 1.5rem;
        color: var(--primary);
    }

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


header {
    z-index: 3000 !important;
}

.main-nav {
    z-index: 3100 !important; 
}

.overlay-nav {
    z-index: 2500 !important; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
}

.overlay-nav.active {
    display: block;
}


.main-nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
}

.main-nav ul li a {
    font-size: 0.95rem; 
}