/* Global Font Declaration - Applies to Entire Website */
body,
html,
* {
    font-family: 'Aldrich', sans-serif !important;
}

.neon-contact-form-container {
    position: relative;
    width: 100%;
    background-color: #0a0a0a;
    overflow: hidden;
    padding: 80px 0;
}

.neon-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.neon-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: row;
    gap: 40px;
}

.neon-form-wrapper {
    position: relative;
    padding: 40px;
    width: 100%;
}

.neon-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid #00E5A3;
    border-radius: 8px;
    z-index: -1;
}

.neon-map-wrapper {
    position: relative;
    width: 100%;
}

.neon-form-title {
    text-align: center;
    color: #ffffff;
    font-family: 'Aldrich', sans-serif;
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    }

.neon-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.neon-form-group {
    width: 100%;
}

.neon-input,
.neon-textarea {
    width: 100%;
    padding: 12px 16px;
    background-color: rgba(10, 10, 10, 0.8);
    border: 1px solid #00E5A3 !important;
    border-radius: 4px;
    color: #ffffff;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 
        0 0 5px rgba(0, 229, 163, 0.3),
        inset 0 0 5px rgba(0, 229, 163, 0.1);
}

.neon-input::placeholder,
.neon-textarea::placeholder {
    color: #aaaaaa;
    font-family: 'Aldrich', sans-serif !important; 
}

.neon-input:focus,
.neon-textarea:focus {
    border-color: #00E5A3;
    box-shadow: 
        0 0 10px #00E5A3,
        0 0 20px #00E5A3,
        inset 0 0 10px rgba(0, 229, 163, 0.2);
}

.neon-textarea {
    resize: vertical;
    min-height: 120px;
}

.neon-button-wrapper {
    text-align: center;
    margin-top: 20px;
    width: 100%;
}

.neon-submit-button {
    font-family: 'Aldrich', sans-serif !important; 
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background-color: transparent;
    border: 2px solid #00E5A3 !important;
    border-radius: 4px;
    color: #00E5A3 !important;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    
}

.neon-submit-button:hover {
    background-color: rgba(0, 229, 163, 0.1) !important;
    box-shadow: 
        0 0 20px #00E5A3,
        0 0 30px #00E5A3,
        inset 0 0 15px rgba(0, 229, 163, 0.2) !important;
    text-shadow: 0 0 10px #00E5A3 !important;
}

.neon-arrow {
    transition: transform 0.3s ease;
}

.neon-submit-button:hover .neon-arrow {
    transform: translateX(5px);
}

/* Map Container Styles */
.neon-map-container {
    border: 2px solid #00E5A3;
    border-radius: 8px;
    overflow: hidden;
    height: 530px !important;
    width: 620px;
   }

.neon-map-iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(50%) contrast(1.1);
    transition: filter 0.3s ease;
}

.neon-map-iframe:hover {
    filter: grayscale(0%) contrast(1);
}

@media (max-width: 768px) {
    .neon-map-container {
    border: 2px solid #00E5A3;
    border-radius: 8px;
    overflow: hidden;
    height: 530px !important;
    width: 100%;
}
    .neon-wrapper {
        padding: 0 20px;
        gap: 20px;
        flex-direction: column;
    }

    .neon-form-wrapper {
        padding: 20px;
    }

    .neon-form-row {
        grid-template-columns: 1fr;
    }

    .neon-form-title {
        font-size: 22px;
    }
}

/* ====================
   Neon Why Contact Widget Styles
   ==================== */

.neon-why-contact-container {
    position: relative;
    width: 100%;
    background-color: #0a0a0a;
    overflow: hidden;
    padding: 80px 0;
}

.neon-why-contact-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.neon-why-contact-title {
    text-align: center;
    color: #ffffff;
    font-family: 'Aldrich', sans-serif;
    font-size: 40px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 40px;
    
  }

.neon-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.neon-feature-card {
    position: relative;
    padding: 40px 30px;
    background-color: rgba(10, 10, 10, 0.9);
    border: 2px solid #00E5A3;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.neon-feature-card:hover {
    box-shadow: 
        0 0 25px #00E5A3,
        0 0 50px rgba(0, 229, 163, 0.6),
        0 0 80px rgba(0, 229, 163, 0.3),
        inset 0 0 20px rgba(0, 229, 163, 0.2);
    transform: translateY(-5px);
}

.neon-feature-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.neon-feature-icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid #00E5A3;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 229, 163, 0.08);
    box-shadow: 
        0 0 20px #00E5A3,
        0 0 40px rgba(0, 229, 163, 0.5),
        inset 0 0 15px rgba(0, 229, 163, 0.15);
    transition: all 0.3s ease;
}

.neon-feature-icon-circle i,
.neon-feature-icon-circle svg {
    font-size: 40px !important;
    color: #00E5A3 !important;
    fill: #00E5A3 !important;
    width: 40px !important;
    height: 40px !important;
    display: block !important;
}

.neon-feature-card:hover .neon-feature-icon-circle {
    box-shadow: 
        0 0 30px #00E5A3,
        0 0 60px rgba(0, 229, 163, 0.7),
        inset 0 0 20px rgba(0, 229, 163, 0.25);
    transform: scale(1.05);
}

.neon-feature-title {
    color: #ffffff;
    font-family: 'Aldrich', sans-serif;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    
}

.neon-feature-description {
    color: #a0b2b8;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .neon-why-contact-wrapper {
        padding: 0 30px;
    }

    .neon-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    svg.e-font-icon-svg.e-fas-headset {
    width: 40px;
}

svg.e-font-icon-svg.e-far-envelope {
    width: 40px;
}
    .neon-why-contact-container {
        padding: 50px 0;
    }

    .neon-why-contact-wrapper {
        padding: 0 20px;
    }

    .neon-features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .neon-why-contact-title {
        font-size: 24px;
        letter-spacing: 2px;
        margin-bottom: 30px;
    }

    .neon-feature-card {
        padding: 35px 25px;
    }

    .neon-feature-icon-circle {
        width: 90px;
        height: 90px;
    }

    .neon-feature-icon-circle i,
    .neon-feature-icon-circle svg {
        font-size: 32px !important;
        width: 32px !important;
        height: 32px !important;
    }

    .neon-feature-title {
        font-size: 18px;
        letter-spacing: 1px;
    }

    .neon-feature-description {
        font-size: 15px;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .neon-why-contact-wrapper {
        padding: 0 15px;
    }

    .neon-why-contact-title {
        font-size: 20px;
        letter-spacing: 1px;
    }

    .neon-feature-card {
        padding: 30px 20px;
    }

    .neon-feature-icon-circle {
        width: 80px;
        height: 80px;
    }

    .neon-feature-icon-circle i,
    .neon-feature-icon-circle svg {
        font-size: 28px !important;
        width: 28px !important;
        height: 28px !important;
    }

    .neon-feature-title {
        font-size: 16px;
    }

    .neon-feature-description {
        font-size: 14px;
    }
}
