.contact-hero-new {
    position: relative;
    min-height: 60vh;
    background: linear-gradient(135deg, #0d6efd 0%, #2196f3 50%, #0a58ca 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 7rem 7rem 0 0;
    margin-top: -100px;
}

.hero-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 50%, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px, 80px 80px;
    animation: patternMove 20s ease-in-out infinite;
}

@keyframes patternMove {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(-10px, -10px); }
    50% { transform: translate(10px, -5px); }
    75% { transform: translate(-5px, 10px); }
}

.hero-content-center {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.floating-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

.floating-badge i {
    font-size: 1.1rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    opacity: 0;
    animation: heroTitleWelcome 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    position: relative;
}

.title-highlight {
    position: relative;
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.decorative-line-contact {
    width: 70%;
    height: 5px;
    background: 
        linear-gradient(90deg, 
            rgba(255, 255, 255, 0.95) 0%, 
            rgba(255, 255, 255, 0.7) 30%,
            rgba(255, 255, 255, 0.9) 50%, 
            rgba(255, 255, 255, 0.7) 70%,
            rgba(255, 255, 255, 0.95) 100%);
    border-radius: 3px;
    opacity: 0;
    animation: lineWelcomeExpand 3s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    position: relative;
    box-shadow: 
        0 0 15px rgba(255, 255, 255, 0.4),
        0 3px 8px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    margin: 0 auto 2rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0;
    animation: heroTextWelcome 2s ease-out 0.4s both;
}

.contact-main-section {
    padding: 6rem 0;
    background: #f8f9fa;
    position: relative;
    margin-bottom: 3rem;
}

.contact-main-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.contact-info-wrapper {
    position: relative;
    z-index: 2;
    margin-bottom: 2rem;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    height: 100%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.info-header {
    text-align: center;
    margin-bottom: 3rem;
}

.info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0d6efd 0%, #2196f3 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.3);
    animation: pulse 3s ease-in-out infinite;
}

.info-icon i {
    font-size: 2rem;
    color: white;
}

.info-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 0.5rem;
}

.info-header p {
    color: #6c757d;
    font-size: 1.1rem;
}

.contact-methods {
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: rgba(13, 110, 253, 0.05);
    border-radius: 15px;
    border-left: 4px solid #0d6efd;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(13, 110, 253, 0.1);
    transform: translateX(5px);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0d6efd 0%, #2196f3 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon i {
    color: white;
    font-size: 1.2rem;
}

.method-content h6 {
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.25rem;
}

.method-content span {
    color: #6c757d;
    font-size: 0.95rem;
}

.contact-stats {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.1) 0%, rgba(33, 150, 243, 0.1) 100%);
    border-radius: 20px;
    border: 1px solid rgba(13, 110, 253, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0d6efd 0%, #2196f3 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, #0d6efd, transparent);
}

.contact-form-wrapper {
    position: relative;
    z-index: 2;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
}

.modern-contact-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 3.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.modern-contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.form-header-new {
    text-align: center;
    margin-bottom: 3rem;
}

.form-icon-badge {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0d6efd 0%, #2196f3 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transform: rotate(-5deg);
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.3);
    transition: transform 0.5s ease;
}

.form-header-new:hover .form-icon-badge {
    transform: rotate(0deg) scale(1.1);
}

.form-icon-badge i {
    font-size: 1.8rem;
    color: white;
}

.form-header-new h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 0.5rem;
}

.form-header-new p {
    color: #6c757d;
    font-size: 1.1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.modern-form-group {
    margin-bottom: 2rem;
}
.service-select-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: #212529;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.service-select-label i {

    font-size: 1.3rem;
}

.required-badge {
    color: #dc3545;
    font-weight: 700;
}

.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-card-wrapper {
    position: relative;
}

.service-radio {
    display: none;
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.75rem 1.25rem;
    background: white;
    border: 2px solid rgba(13, 110, 253, 0.1);
    border-radius: 18px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    min-height: 200px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    border-color: rgba(13, 110, 253, 0.3);
    box-shadow: 0 8px 30px rgba(13, 110, 253, 0.15);
    transform: translateY(-5px);
}

.service-radio:checked + .service-card {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.08) 0%, rgba(33, 150, 243, 0.08) 100%);
    border-color: #0d6efd;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1), 0 8px 30px rgba(13, 110, 253, 0.2);
    transform: scale(1.05);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0d6efd 0%, #2196f3 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
}

.service-radio:checked + .service-card .service-icon {
    transform: scale(1.15) rotate(5deg);
}

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 0.5rem;
}

.service-content p {
    font-size: 0.85rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.4;
}

.service-checkmark {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #198754 0%, #20c997 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-radio:checked + .service-card .service-checkmark {
    opacity: 1;
    transform: scale(1);
}

.service-error-message {
    color: #dc3545;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-error-message::before {
    content: "⚠";
    font-weight: bold;
}
.privacy-checkbox-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.privacy-checkbox {
    display: none;
}

.privacy-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

.checkbox-custom {
    position: relative;
    width: 24px;
    height: 24px;
    min-width: 24px;
    border: 2px solid rgba(13, 110, 253, 0.3);
    border-radius: 6px;
    background: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.checkbox-custom::after {
    content: "✓";
    position: absolute;
    color: white;
    font-size: 16px;
    font-weight: bold;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.privacy-checkbox:checked + .privacy-checkbox-label .checkbox-custom {
    background: linear-gradient(135deg, #198754 0%, #20c997 100%);
    border-color: #198754;
    box-shadow: 0 0 0 4px rgba(25, 135, 84, 0.1);
}

.privacy-checkbox:checked + .privacy-checkbox-label .checkbox-custom::after {
    opacity: 1;
    transform: scale(1);
}

.privacy-checkbox-label:hover .checkbox-custom {
    border-color: rgba(13, 110, 253, 0.5);
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.05);
}

.checkbox-text {
    color: #212529;
    font-size: 0.95rem;
    line-height: 1.5;
    flex: 1;
    padding-top: 2px;
}

.privacy-link {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid rgba(13, 110, 253, 0.2);
    transition: all 0.2s ease;
}

.privacy-link:hover {
    color: #0a58ca;
    border-bottom-color: #0d6efd;
}

.privacy-error-message {
    color: #dc3545;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    animation: slideDown 0.3s ease;
}

.privacy-error-message::before {
    content: "⚠";
    font-weight: bold;
    font-size: 1.1rem;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.progvision-captcha-wrapper {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.1) 0%, rgba(33, 150, 243, 0.08) 100%);
    border: 2.5px solid rgba(13, 110, 253, 0.25);
    border-radius: 25px;
    padding: 2.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    box-shadow: 0 15px 40px rgba(13, 110, 253, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.progvision-captcha-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(33, 150, 243, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float 8s ease-in-out infinite;
}

.captcha-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.captcha-header h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0d6efd;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.captcha-header h4 i {
    font-size: 1.4rem;
    animation: pulse-icon 2.5s ease-in-out infinite;
}

.captcha-header p {
    font-size: 0.95rem;
    color: #555;
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.3px;
}
.captcha-slider-container {
    margin: 2rem 0 1.5rem 0;
    position: relative;
    z-index: 2;
}

.captcha-slider-track {
    position: relative;
    height: 70px;
    background: linear-gradient(90deg, #f0f7ff 0%, #e3f2fd 100%);
    border: 2.5px solid rgba(13, 110, 253, 0.25);
    border-radius: 50px;
    overflow: hidden;
    cursor: grab;
    box-shadow: 
        0 10px 30px rgba(13, 110, 253, 0.12),
        inset 0 2px 8px rgba(255, 255, 255, 0.6);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
}

.captcha-slider-track:hover {
    box-shadow: 
        0 12px 35px rgba(13, 110, 253, 0.15),
        inset 0 2px 8px rgba(255, 255, 255, 0.6);
}

.captcha-slider-track:active {
    box-shadow: 
        0 14px 40px rgba(13, 110, 253, 0.2),
        inset 0 2px 8px rgba(255, 255, 255, 0.6);
}

.captcha-slider-fill {
    position: absolute;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #0d6efd 0%, #0a58ca 100%);
    transition: width 0.05s linear;
    border-radius: 48px;
    box-shadow: inset -3px 0 15px rgba(0, 0, 0, 0.1);
}

.captcha-slider-thumb {
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border: 4px solid white;
    border-radius: 50%;
    cursor: grab;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: left 0.05s linear, box-shadow 0.2s ease;
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.35);
    user-select: none;
    z-index: 10;
    overflow: visible;
}

.captcha-slider-thumb:hover {
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.4);
}

.captcha-slider-thumb:active {
    cursor: grabbing;
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.45);
}

.slider-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    object-position: center;
    transition: transform 0.05s linear;
    filter: brightness(1.1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.slider-interaction-info {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.slider-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
    opacity: 1;
    transition: all 0.3s ease;
}

.slider-text i {
    font-size: 1.1rem;
    color: #0d6efd;
    animation: float-icon 2s ease-in-out infinite;
}

@keyframes float-icon {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(4px); }
}

.slider-progress-indicator {
    position: relative;
    height: 6px;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 1rem;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #0d6efd 0%, #2196f3 100%);
    border-radius: 10px;
    transition: width 0.05s linear;
    box-shadow: 0 0 8px rgba(13, 110, 253, 0.4);
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #999;
    margin-top: 0.4rem;
    padding: 0 1rem;
}

.captcha-slider-track.slider-completed ~ .slider-interaction-info {
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    display: none;
}

.slider-success-message {
    display: none;
    text-align: center;
    color: #28a745;
    font-size: 1.05rem;
    font-weight: 600;
    margin-top: 1.2rem;
    animation: slideDown 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.slider-success-message i {
    margin-right: 0.75rem;
    font-size: 1.3rem;
}

.captcha-slider-track.slider-completed ~ .slider-success-message {
    display: block;
}

.captcha-grid {
    display: none;
}

.captcha-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2.5px solid rgba(13, 110, 253, 0.12);
    border-radius: 18px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.captcha-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
    pointer-events: none;
}

.captcha-item:hover::before {
    left: 100%;
}

.captcha-item:hover {
    border-color: #0d6efd;
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.18);
    transform: translateY(-6px) scale(1.02);
    background: linear-gradient(135deg, #f0f7ff 0%, #e3f2fd 100%);
}

.captcha-item.selected {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    border-color: #0d6efd;
    box-shadow: 0 15px 40px rgba(13, 110, 253, 0.4);
    transform: scale(1.1);
}

.captcha-item.selected::after {
    content: '✓';
    position: absolute;
    top: 8px;
    right: 8px;
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: bold;
    animation: checkmark-pop 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 3px 12px rgba(40, 167, 69, 0.4);
}

@keyframes checkmark-pop {
    0% {
        transform: scale(0) rotate(-45deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.3) rotate(10deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

@keyframes pulse-icon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.captcha-shape {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.captcha-item:hover .captcha-shape {
    transform: scale(1.2) rotateZ(8deg);
}

.captcha-item.selected .captcha-shape {
    transform: scale(1.3);
    filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.4));
}

.blue-square {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(13, 110, 253, 0.25);
}

.captcha-item.selected .blue-square {
    background: white;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.3), 0 4px 10px rgba(255, 255, 255, 0.2);
}

.red-circle {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(220, 53, 69, 0.25);
}

.captcha-item.selected .red-circle {
    background: white;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.green-triangle {
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 43px solid #198754;
    background: transparent;
    filter: drop-shadow(0 4px 10px rgba(25, 135, 84, 0.25));
}

.captcha-item.selected .green-triangle {
    border-bottom-color: white;
}

.yellow-square {
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(255, 193, 7, 0.3);
}

.captcha-item.selected .yellow-square {
    background: white;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.red-circle-large {
    background: linear-gradient(135deg, #e63946 0%, #d62828 100%);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    box-shadow: 0 4px 10px rgba(230, 57, 70, 0.3);
}

.captcha-item.selected .red-circle-large {
    background: white;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.purple-star {
    position: relative;
    display: inline-block;
    color: #6f42c1;
    font-size: 3rem;
    line-height: 1;
    text-shadow: 0 3px 8px rgba(111, 66, 193, 0.2);
}

.captcha-item.selected .purple-star {
    color: white;
    text-shadow: 0 3px 8px rgba(255, 255, 255, 0.3);
}

.captcha-item span {
    font-size: 0.85rem;
    color: #333;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.captcha-item.selected span {
    color: white;
}

.captcha-error-message {
    color: #856404;
    font-size: 0.95rem;
    display: none;
    align-items: center;
    gap: 0.8rem;
    background: #fff3cd;
    padding: 1.2rem 1.5rem;
    border-radius: 14px;
    border-left: 5px solid #ffc107;
    position: relative;
    z-index: 1;
    animation: slideDown 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.15);
}

.captcha-error-message.show {
    display: flex;
}

.captcha-error-message i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.captcha-branding {
    position: absolute !important;
    bottom: 15px !important;
    right: 20px !important;
    font-size: 0.75rem !important;
    color: rgba(13, 110, 253, 0.7) !important;
    text-shadow: none !important;
    opacity: 0.8 !important;
    transition: opacity 0.3s ease;
}

.captcha-branding:hover {
    opacity: 1 !important;
}

.captcha-branding .pv-logo {
    width: 22px !important;
    height: 22px !important;
    margin-right: 8px !important;
    filter: drop-shadow(0 2px 4px rgba(13, 110, 253, 0.3));
    animation: none !important;
}

.input-wrapper {
    position: relative;
}

.modern-input,
.modern-textarea {
    width: 100%;
    padding: 1.5rem 1rem 0.5rem 3.5rem;
    border: 2px solid rgba(13, 110, 253, 0.1);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

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

.modern-input:focus,
.modern-textarea:focus {
    border-color: #0d6efd;
    background: white;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
}

.modern-input.shake-error,
.modern-textarea.shake-error {
    border-color: #dc3545;
    background: rgba(220, 53, 69, 0.05);
    animation: shake-error 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.1);
}

.service-cards-grid.shake-error {
    animation: shake-error 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.captcha-error-message.shake-error,
#service-error.shake-error,
#privacy-error.shake-error {
    animation: shake-error 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.modern-label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6c757d;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    pointer-events: none;
    background: transparent;
    padding: 0;
}

.modern-label i {
    width: 20px;
    color: #0d6efd;
}

.modern-input:focus + .modern-label,
.modern-input:not(:placeholder-shown) + .modern-label,
.modern-textarea:focus + .modern-label,
.modern-textarea:not(:placeholder-shown) + .modern-label {
    top: -0.5rem;
    left: 0.75rem;
    font-size: 0.85rem;
    color: #0d6efd;
    background: white;
    padding: 0 0.5rem;
}

.input-highlight {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, #0d6efd 0%, #2196f3 100%);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.modern-input:focus ~ .input-highlight,
.modern-textarea:focus ~ .input-highlight {
    width: 100%;
}

.form-submit-section {
    margin-top: 3rem;
    position: relative;
}

.modern-submit-btn {
    position: relative;
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, #0d6efd 0%, #2196f3 100%);
    border: none;
    border-radius: 15px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.3);
}

.modern-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(13, 110, 253, 0.4);
}

.modern-submit-btn:active {
    transform: translateY(0);
}

.btn-text {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-ripple {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.modern-submit-btn:hover .btn-ripple {
    left: 100%;
}

.location-section-new {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.05) 0%, rgba(248, 249, 250, 1) 100%);
    position: relative;
}

.section-header-new {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(13, 110, 253, 0.2);
}

.section-title-new {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0d6efd 0%, #2196f3 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}

.section-subtitle-new {
    font-size: 1.2rem;
    color: #6c757d;
    line-height: 1.6;
}

.location-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    z-index: 2;
}

.map-container-new {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    height: 450px;
}

.modern-map {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(0.3);
    transition: filter 0.3s ease;
}

.map-container-new:hover .modern-map {
    filter: grayscale(0);
}

.location-info-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.3s ease;
}

.location-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(13, 110, 253, 0.1);
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0d6efd 0%, #2196f3 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail-icon i {
    color: white;
    font-size: 1.2rem;
}

.detail-content h6 {
    color: #212529;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.detail-content p {
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 0.75rem;
    }

    .service-card {
        min-height: 160px;
        padding: 1rem 0.75rem;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    .service-content h4 {
        font-size: 0.9rem;
    }

    .service-content p {
        font-size: 0.75rem;
    }
    
    .contact-main-section {
        padding: 4rem 0;
    }
    
    .modern-contact-form,
    .contact-info-card {
        padding: 2rem;
    }
    
    .contact-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-divider {
        width: 50px;
        height: 1px;
    }
    
    .floating-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    .service-select-label {
        font-size: 1rem;
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes shake-error {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

@keyframes heroTitleWelcome {
    0% { 
        opacity: 0; 
        transform: translateY(50px) scale(0.8) rotateX(20deg);
        filter: blur(10px);
    }
    50% {
        opacity: 0.7;
        transform: translateY(10px) scale(1.05) rotateX(5deg);
        filter: blur(2px);
    }
    100% { 
        opacity: 1; 
        transform: translateY(0) scale(1) rotateX(0deg);
        filter: blur(0px);
    }
}

@keyframes heroTextWelcome {
    0% { 
        opacity: 0; 
        transform: translateY(30px) translateX(-20px);
        filter: blur(5px);
    }
    60% {
        opacity: 0.8;
        transform: translateY(-5px) translateX(5px);
        filter: blur(1px);
    }
    100% { 
        opacity: 0.95; 
        transform: translateY(0) translateX(0);
        filter: blur(0px);
    }
}

@keyframes lineWelcomeExpand {
    0% { 
        width: 0; 
        opacity: 0; 
        transform: scaleY(0.3) rotateZ(-5deg);
        filter: blur(3px);
    }
    30% {
        opacity: 0.6;
        transform: scaleY(1.4) rotateZ(2deg);
        filter: blur(1px);
    }
    60% {
        transform: scaleY(0.8) rotateZ(-1deg);
        filter: blur(0.5px);
    }
    100% { 
        width: 70%; 
        opacity: 1; 
        transform: scaleY(1) rotateZ(0deg);
        filter: blur(0px);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}
