.contact-hero {
            background: linear-gradient(90deg, rgba(0, 0, 0, 0.41) 44.23%, rgba(0, 0, 0, 0) 100%), 
                        url('../../assets/img/contact_lnd.png') no-repeat center center;
            background-size: cover;
            min-height: 50vh;
            display: flex;
            align-items: center;
            position: relative;
            padding: 80px 0;
        }

     
        .hero-text h1 {
            font-size: 3.8rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 20px;
        }

        .hero-text p {
            font-size: 1.2rem;
            color: #e9ecef;
            max-width: 480px;
            line-height: 1.6;
        }

        .hero-text .faq-link {
            color: #fff;
            font-weight: bold;
            text-decoration: none;
            border-bottom: 2px solid #fff;
        }

      
        .contact-card {
            background: #fff;
            border-radius: 12px;
            padding: 35px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
            width: 100%;
        }

        .form-label {
            font-weight: 700;
            font-size: 0.85rem;
           
            margin-bottom: 8px;
            width: 100%;
            text-align: left;
        }

        .form-control {
            border: 1px solid #ced4da;
            padding: 12px 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            font-size: 0.95rem;
        }

        .form-control::placeholder {
            color: #adb5bd;
        }

        textarea.form-control {
            min-height: 140px;
            resize: none;
        }

     
        .form-footer {
            display: flex;
            justify-content: flex-end;
            width: 100%;
        }

        .btn-send {
            background-color: #6da128;
            color: white;
            font-weight: 600;
            padding: 10px 35px;
            border: none;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .btn-send:hover {
            background-color: #6da128;
            box-shadow: 0 4px 12px rgba(127, 180, 50, 0.3);
            color: white;
        }











.contact-details-extraordinary {
    padding: 80px 0;
    background: #f8f9fa; 
}

.info-glass-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
}

.info-glass-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.svg-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #6da128, #6da128) ;
    color: white;
    padding: 18px;
    border-radius: 20px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.svg-wrapper svg {
    width: 100%;
    height: 100%;
}

.info-glass-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.info-glass-card p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
}


.card-accent {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, #6da128, #6da128);
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

.info-glass-card:hover .card-accent {
    width: 100%;
}


.contact-link-wrapper {
    display: inline-block;
    text-align: left;
    margin-top: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #6c757d;
    font-size: 0.95rem;
}


.contact-icon-small {
    width: 20px; 
    height: 20px;
    margin-right: 12px;
    flex-shrink: 0; 
}

.contact-item span {
    white-space: nowrap;
}


.svg-wrapper svg {
    width: 32px; 
    height: 32px;
}



.contact-card {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    width: 100%;
}

@media (max-width: 600px) {
           
.contact-card {
 
    padding: 15px;
 
}
        }
        
@media (max-width: 991px) {
            .contact-hero { text-align: center; }
            .hero-text p { margin: 0 auto 40px; }
            .hero-text h1 { font-size: 2.8rem; }
        }