:root {
    --primary: #b08d57; 
    --dark: #121212;
    --gray: #1a1a1a;
    --light: #fcf9f4;
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Cairo', sans-serif; }
html { scroll-behavior: smooth; }
body { background-color: var(--white); color: #333; overflow-x: hidden; }

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

/* --- Header & Logo Design --- */
header {
    background: rgba(255, 255, 255, 0.98);
    position: fixed; width: 100%; top: 0; z-index: 4000;
    padding: 12px 0; box-shadow: 0 5px 20px 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; cursor: pointer; }
.logo-box {
    background: var(--primary); width: 45px; height: 45px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 8px; position: relative;
}
.logo-box i { color: white; font-size: 1.2rem; opacity: 0.3; position: absolute; }
.logo-box span { color: white; font-size: 1.8rem; font-weight: 900; position: relative; z-index: 2; }
.logo-text span { display: block; line-height: 1; font-weight: 900; font-size: 1.4rem; color: var(--dark); }
.logo-text small { color: var(--primary); font-weight: 700; letter-spacing: 1px; font-size: 0.7rem; }
.accent-text { color: var(--primary); }

.nav-links { display: flex; list-style: none; align-items: center; gap: 25px; }
.nav-links a { text-decoration: none; color: var(--dark); font-weight: 700; font-size: 1rem; transition: 0.3s; }
.nav-links a:hover { color: var(--primary); }
.nav-cta { background: var(--primary); color: white !important; padding: 10px 25px; border-radius: 5px; box-shadow: 0 4px 15px rgba(176, 141, 87, 0.3); }

.menu-btn { display: none; font-size: 1.5rem; cursor: pointer; color: var(--dark); }

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

.hero-slider {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1;
}
.slide {
    position: absolute; width: 100%; height: 100%; opacity: 0;
    background-size: cover; background-position: center;
    animation: sliderAnim 15s infinite;
}
.slide-1 { background-image: url('imgs/img25.jpeg'); animation-delay: 0s; }
.slide-2 { background-image: url('imgs/img16.jpeg'); animation-delay: 5s; }
.slide-3 { background-image: url('imgs/img19.jpeg'); animation-delay: 10s; }
.slide-4 { background-image: url('imgs/img20.jpeg'); animation-delay: 10s; }
.slide-5 { background-image: url('imgs/img12.jpeg'); animation-delay: 10s; }



@keyframes sliderAnim {
    0%, 33% { opacity: 1; transform: scale(1); }
    34%, 100% { opacity: 0; transform: scale(1.1); }
}

.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 2; }
.hero-content { position: relative; z-index: 10; }

/* Floating Icons */
.floating-icons i {
    position: absolute; color: rgba(255,255,255,0.1); font-size: 3rem;
    z-index: 5; animation: floatY 8s infinite ease-in-out;
}
@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
}
.icon-1 { left: 10%; top: 20%; }
.icon-2 { right: 15%; top: 30%; animation-delay: 2s; }
.icon-3 { left: 20%; bottom: 20%; animation-delay: 4s; }
.icon-4 { right: 10%; bottom: 15%; animation-delay: 1s; }

.hero h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 900; margin-bottom: 20px; }
.highlight { color: var(--primary); }
.hero p { font-size: 1.3rem; max-width: 800px; margin: 0 auto 40px; opacity: 0.9; }

.btn-gold { background: var(--primary); color: white; padding: 15px 45px; border-radius: 5px; font-weight: 700; transition: 0.3s; }
.btn-white-outline { border: 2px solid white; color: white; padding: 13px 40px; border-radius: 5px; font-weight: 700; margin-right: 15px; }

/* --- Section Headers  --- */
.text-center { text-align: center; }
.sub-title { display: block; color: var(--primary); font-weight: 800; letter-spacing: 2px; margin-bottom: 10px; font-size: 0.9rem; }
.line-center { width: 70px; height: 4px; background: var(--primary); margin: 20px auto; border-radius: 10px; }

/* --- Cards Design --- */
.grid-categories { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 50px; }
.category-card {
    background: white; padding: 50px 30px; border-radius: 25px; text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03); transition: 0.4s; border: 1px solid #f0f0f0;
}
.icon-circle { 
    width: 85px; height: 85px; background: var(--light); color: var(--primary); 
    border-radius: 20px; display: flex; align-items: center; justify-content: center; 
    font-size: 2.2rem; margin: 0 auto 30px; transition: 0.4s;
}
.category-card:hover { transform: translateY(-15px); border-color: var(--primary); box-shadow: 0 20px 50px rgba(176, 141, 87, 0.15); }
.category-card:hover .icon-circle { background: var(--primary); color: white; transform: rotateY(180deg); }

/* --- Gallery Design --- */
.gallery-grid-modern { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-top: 50px; }
.g-card { height: 320px; border-radius: 20px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.g-card img { width: 100%; height: 100%; object-fit: cover; transition: 0.8s; cursor: pointer; }
.g-card:hover img { transform: scale(1.15) rotate(2deg); }

/* --- Footer --- */
.main-footer { background: var(--gray); color: white; padding: 80px 0 0; border-top: 5px solid var(--primary); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 50px; padding-bottom: 50px; }
.f-col h4 { color: var(--primary); margin-bottom: 25px; font-weight: 800; font-size: 1.3rem; }
.f-col ul { list-style: none; }
.f-col ul li { margin-bottom: 12px; }
.f-col a { color: #aaa; transition: 0.3s; }
.f-col a:hover { color: var(--primary); padding-right: 10px; }
.footer-bottom { background: #000; padding: 25px; text-align: center; color: #666; font-size: 0.9rem; }

/* --- Floating Buttons --- */
.fixed-buttons { position: fixed; bottom: 30px; right: 30px; z-index: 5000; display: flex; flex-direction: column; gap: 15px; }
.btn-wa { background: #25d366; color: white; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3); }
.btn-call { background: var(--dark); color: white; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; box-shadow: 0 10px 20px rgba(0,0,0,0.3); }

/* --- Mobile Fixes --- */
@media (max-width: 992px) {
    .nav-links { display: none; }
    .menu-btn { display: block; }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.3rem; }
    .btn-white-outline { margin: 15px 0 0 0; display: block; }
    .logo-text span { font-size: 1.2rem; }
}


.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.btn-gold {
    position: relative;
    background: linear-gradient(135deg, #b08d57 0%, #ceac7b 50%, #b08d57 100%);
    color: white !important;
    padding: 16px 45px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(176, 141, 87, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-gold::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -150%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
    transition: 0s;
}

.btn-gold:hover::after {
    left: 150%;
    transition: 0.7s ease-in-out;
}

.btn-gold:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 30px rgba(176, 141, 87, 0.5);
    filter: brightness(1.1);
}

.btn-white-outline {
    background: rgba(255, 255, 255, 0.1);
    color: white !important;
    padding: 14px 43px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-white-outline:hover {
    background: white;
    color: var(--dark) !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.hero-btns i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .btn-gold, .btn-white-outline {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}
/* --- About Section --- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img { position: relative; }
.about-img img { width: 100%; border-radius: 20px; box-shadow: 20px 20px 0 var(--primary); }
.experience-badge {
    position: absolute; bottom: -20px; right: -20px;
    background: var(--dark); color: var(--primary);
    padding: 20px; border-radius: 15px; text-align: center;
}
.experience-badge span { font-size: 2.5rem; font-weight: 900; display: block; line-height: 1; }
.check-list { list-style: none; margin-top: 25px; }
.check-list li { margin-bottom: 12px; font-weight: 700; display: flex; align-items: center; gap: 10px; }
.check-list i { color: var(--primary); }

/* --- Features Section --- */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 50px; }
.f-card { background: white; padding: 40px; border-radius: 20px; text-align: center; transition: 0.3s; }
.f-card i { font-size: 3rem; color: var(--primary); margin-bottom: 20px; }
.f-card:hover { background: var(--dark); color: white; transform: translateY(-10px); }

/* --- Testimonials --- */
.testi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 50px; }
.testi-card { background: var(--light); padding: 40px; border-radius: 30px; position: relative; }
.stars { color: #f1c40f; margin-bottom: 15px; }
.testi-card h4 { margin-top: 20px; color: var(--primary); font-weight: 800; }


.faq-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr; 
    gap: 50px;
    align-items: start;
}

.faq-info h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 20px 0;
    line-height: 1.3;
}

.faq-item {
    background: #fff;
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border: 1px solid #f0f0f0;
    overflow: hidden;
    transition: 0.3s;
}

.faq-header {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
}

.faq-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}

.arrow-icon {
    font-size: 0.9rem;
    color: var(--primary);
    transition: 0.4s ease;
}

.faq-body {
    max-height: 0; 
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fcfcfc;
}

.faq-content {
    padding: 0 25px 25px 25px;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.8;
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(176, 141, 87, 0.1);
}

.faq-item.active .faq-header {
    background: var(--light);
}

.faq-item.active .arrow-icon {
    transform: rotate(180deg); 
}

.faq-item.active .faq-body {
    max-height: 300px; 
}

@media (max-width: 992px) {
    .faq-wrapper { grid-template-columns: 1fr; text-align: center; }
    .faq-header h3 { font-size: 1rem; text-align: right; }
}

@media (max-width: 992px) {
    .about-grid { grid-template-columns: 1fr; text-align: center; }
    .about-img { margin-bottom: 40px; padding: 0 20px; }
    .check-list li { justify-content: center; }
    .testi-grid { grid-template-columns: 1fr; }
}

.contact-new-section {
    background-color: #fdfdfd;
}

.contact-container-wrap {
    display: grid;
    grid-template-columns: 1.2fr 1.5fr; 
    background: var(--dark);
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}

.contact-info-side {
    padding: 60px;
    color: white;
    text-align: right;
}

.badge-gold {
    background: rgba(176, 141, 87, 0.2);
    color: var(--primary);
    padding: 6px 15px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.85rem;
}

.contact-info-side h2 {
    font-size: 2.2rem;
    margin: 20px 0;
    font-weight: 900;
}

.contact-info-side p {
    color: #aaa;
    margin-bottom: 40px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
}

.info-text span {
    display: block;
    font-size: 0.8rem;
    color: #888;
}

.info-text strong {
    display: block;
    font-size: 1rem;
    color: #fff;
}

.contact-form-side {
    background: white;
    padding: 60px;
    margin: 20px;
    border-radius: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
    text-align: right;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
    font-size: 0.9rem;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 12px;
    background: #f9f9f9;
    font-family: inherit;
    transition: 0.3s;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 10px rgba(176, 141, 87, 0.1);
}

.btn-send-wa {
    width: 100%;
    background: var(--primary);
    color: white;
    padding: 18px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-send-wa:hover {
    background: var(--dark);
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .contact-container-wrap {
        grid-template-columns: 1fr;
    }
    .contact-info-side {
        padding: 40px 20px;
        text-align: center;
    }
    .info-card {
        flex-direction: column;
        text-align: center;
    }
    .contact-form-side {
        padding: 30px 20px;
        margin: 10px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}

.before-after-container {
    position: relative; width: 100%; max-width: 800px; height: 500px;
    margin: 0 auto; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.before-after-container .img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; }
.background-img { background-image: url('images/before.jpg'); }
.foreground-img { 
    background-image: url('images/img1.jpeg'); 
    width: 50%; border-left: 3px solid var(--primary);
}
.slider { position: absolute; -webkit-appearance: none; appearance: none; width: 100%; height: 100%; background: transparent; outline: none; margin: 0; transition: all 0.2s; cursor: pointer; z-index: 100; }
.slider::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 6px; height: 500px; background: white; cursor: ew-resize; }

.reveal-section {
    opacity: 0;
    transform: translateY(100px) scale(0.9); 
    transition: all 1s cubic-bezier(0.2, 1, 0.3, 1);
}

.reveal-section.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.comparison-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 500px;
    margin: 40px auto;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    border: 5px solid #fff;
}

.comparison-container .img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
}

.before-img {
    background-image: url('imgs/before.webp'); 
    filter: grayscale(1); 
}

.after-img {
    background-image: url('imgs/after.png'); 
    width: 50%; 
    z-index: 2;
    border-left: 3px solid var(--primary);
}

.slider {
    position: absolute;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 10;
    outline: none;
    margin: 0;
    cursor: ew-resize;
}

.slider-line {
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    width: 3px;
    background: #fff;
    z-index: 3;
    pointer-events: none;
}

.slider-button {
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    width: 50px; height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    z-index: 4;
    pointer-events: none;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .comparison-container { height: 300px; border-radius: 20px; }
}


.about-tag {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.tag-line {
    width: 35px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 10px;
}

.about-tag span {
    color: var(--primary);
    font-weight: 900;
    font-size: 1rem;
    text-transform: uppercase;
    background: #ffffff;
    padding: 6px 18px;
    border-radius: 8px;
    border: 1px solid rgba(176, 141, 87, 0.3);
    box-shadow: 5px 5px 0px var(--primary);
    letter-spacing: 1px;
    transition: 0.3s ease;
}

.about-tag:hover span {
    transform: translate(-3px, -3px);
    box-shadow: 8px 8px 0px var(--dark);
    color: var(--dark);
}


.location-card-link {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05); 
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(176, 141, 87, 0.3);
    text-decoration: none !important;
    transition: all 0.4s ease;
    margin-top: 20px;
    position: relative;
}

.location-card-link:hover {
    background: var(--primary); 
    transform: translateX(-10px);
    border-color: white;
}

.pulse-gold {
    animation: pulse-border 2s infinite;
}

.location-card-link .info-icon {
    width: 55px;
    height: 55px;
    background: var(--primary);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: 0.3s;
}

.location-card-link .info-text strong {
    color: var(--primary); 
    font-size: 0.95rem;
    display: block;
    margin-top: 5px;
    transition: 0.3s;
}

.location-card-link:hover .info-text strong,
.location-card-link:hover .info-text span,
.location-card-link:hover .open-icon {
    color: white !important;
}

.open-icon {
    margin-right: auto; 
    color: var(--primary);
    font-size: 0.8rem;
    opacity: 0.7;
}

@keyframes pulse-border {
    0% { box-shadow: 0 0 0 0 rgba(176, 141, 87, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(176, 141, 87, 0); }
    100% { box-shadow: 0 0 0 0 rgba(176, 141, 87, 0); }
}


.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-card.interactive-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05); 
    padding: 18px 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.info-card.interactive-card:hover {
    background: var(--white);
    transform: translateX(-10px); 
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.info-card.interactive-card:hover .info-text strong,
.info-card.interactive-card:hover .info-text span,
.info-card.interactive-card:hover .open-icon {
    color: var(--dark) !important;
}

.info-card .info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: 0.3s;
}

.info-card .info-icon.wa-bg {
    background: #25d366;
}

.info-text span {
    display: block;
    font-size: 0.8rem;
    color: #aaa;
    transition: 0.3s;
}

.info-text strong {
    display: block;
    font-size: 1rem;
    color: #fff;
    transition: 0.3s;
}

.open-icon {
    margin-right: auto; 
    color: var(--primary);
    font-size: 0.9rem;
    transition: 0.3s;
}

.highlighted-card {
    border: 1px solid var(--primary) !important;
    background: rgba(176, 141, 87, 0.1) !important;
}

.pulse-gold {
    animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
    0% { box-shadow: 0 0 0 0 rgba(176, 141, 87, 0.4); }
    70% { box-shadow: 0 0 0 12px rgba(176, 141, 87, 0); }
    100% { box-shadow: 0 0 0 0 rgba(176, 141, 87, 0); }
}
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 3500;
    display: none;
    backdrop-filter: blur(4px);
}

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

@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%; 
        width: 280px;
        height: 100vh;
        background: white;
        z-index: 4000;
        transition: 0.4s ease-in-out;
        flex-direction: column;
        padding: 100px 30px;
        display: flex !important;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        right: 0; 
    }

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

.close-menu {
    display: none !important;
}
@media (max-width: 992px) {
    .close-menu {
        display: block !important;
        position: absolute;
        top: 25px;
        left: 25px;
        font-size: 1.8rem;
        color: var(--primary);
        cursor: pointer;
    }
}


@media (max-width: 768px) {
    .contact-container-wrap {
        grid-template-columns: 1fr !important; 
        border-radius: 20px;
        margin: 0 10px;
    }

    .contact-info-side {
        padding: 40px 20px !important;
        text-align: center !important;
    }

    .contact-info-side h2 {
        font-size: 1.8rem !important;
    }

    .contact-info-list {
        align-items: center;
    }

    .info-card.interactive-card {
        width: 100%;
        max-width: 320px;
        padding: 15px !important;
        justify-content: center;
        text-align: right;
    }

    .info-card.interactive-card:hover {
        transform: translateY(-5px) !important; 
    }

    .open-icon {
        margin-right: 15px; 
    }

    .contact-form-side {
        padding: 30px 20px !important;
        margin: 10px !important;
        border-radius: 20px;
    }

    .form-row {
        grid-template-columns: 1fr !important; 
        gap: 0;
    }

    .btn-send-wa {
        padding: 15px !important;
        font-size: 1rem !important;
    }

    .main-footer {
        padding: 60px 0 0;
    }

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

    .f-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .f-col p {
        margin: 0 auto;
    }

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

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

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

    .footer-bottom {
        padding: 20px 0;
    }

    .comparison-container {
        height: 300px !important;
    }
}