/* Contact Form Styles */
.comment-form {
    background: rgba(22, 22, 22, 0.4);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
}

.comment-form label {
    color: #FFFFFF;
    font-family: 'Azeret Mono', monospace;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.comment-form input,
.comment-form textarea {
    background: rgba(22, 22, 22, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px 20px;
    color: #fff;
    width: 100%;
    font-family: 'Azeret Mono', monospace;
    font-size: 14px;
    transition: all 0.3s ease;
}

.comment-form textarea {
    resize: vertical;
}

.comment-form input:focus,
.comment-form textarea:focus,
.comment-form .captcha-input:focus {
    border-color: #DDF247 !important;
    outline: none;
    box-shadow: 0 0 0 1px #DDF247;
}

.comment-form fieldset {
    margin-bottom: 20px;
}

/* CAPTCHA Styles */
.captcha-container {
    margin-bottom: 20px;
}

.simple-captcha {
    background: rgba(22, 22, 22, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px 20px;
}

.captcha-code {
    background: rgba(22, 22, 22, 0.8);
    color: #DDF247;
    padding: 8px 12px;
    border-radius: 8px;
    font-family: 'Azeret Mono', monospace;
}

.captcha-input {
    background: rgba(22, 22, 22, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px 12px;
    color: #fff;
    font-family: 'Azeret Mono', monospace;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.captcha-message {
    font-family: 'Azeret Mono', monospace;
    margin-top: 8px;
}

/* Submit Button Styles */
.btn-submit {
    margin-top: 30px;
}

.btn-submit .tf-button {
    min-width: 200px;
    height: 50px;
    padding: 0 30px;
    background: #8121fe;
    border-radius: 12px;
    font-family: 'Azeret Mono', monospace;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit .tf-button i {
    font-size: 18px;
}

/* Override any conflicting styles */
.btn-submit .tf-button.style-1 {
    width: auto;
    min-width: 200px;
    max-width: 100%;
}

/* Information Section Styles */
.box-icon-item {
    text-align: center;
    padding: 30px;
    background: rgba(22, 22, 22, 0.4);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.box-icon-item:hover {
    transform: translateY(-5px);
    background: rgba(22, 22, 22, 0.6);
}

.box-icon-item .icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: #DDF247;
}

.box-icon-item .title {
    margin-bottom: 15px;
}

.box-icon-item .title a {
    color: #FFFFFF;
    font-family: 'Azeret Mono', monospace;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.box-icon-item .title a:hover {
    color: #DDF247;
}

.box-icon-item p {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Azeret Mono', monospace;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Map Container Styles */
.widget-gg-map {
    filter: brightness(0.85);
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 40px;
    position: relative;
}

.widget-gg-map iframe {
    border: none;
    width: 100%;
    height: 460px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.widget-gg-map.map-loaded iframe {
    opacity: 1;
}

.map-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(22, 22, 22, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.map-loaded .map-loader {
    opacity: 0;
    pointer-events: none;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border-top-color: #DDF247;
    animation: spin 1s ease-in-out infinite;
    margin-bottom: 15px;
}

.map-loader p {
    color: #FFFFFF;
    font-family: 'Azeret Mono', monospace;
    font-size: 16px;
    margin: 0;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.comment-form .flex {
    display: flex;
    gap: 30px;
}

@media screen and (max-width: 767px) {
    .comment-form .flex {
        flex-direction: column;
        gap: 20px;
    }

    .comment-form {
        padding: 25px;
    }

    .comment-form fieldset {
        margin-bottom: 15px;
    }

    .comment-form input,
    .comment-form textarea {
        padding: 12px 15px;
    }
} 