.contact-modern.section-universal {
 background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #1a1a2e 75%, #0f0f23 100%);
 background-size: 400% 400%;
 animation: gradientShift 15s ease infinite, sectionSlideIn 1s ease-out;
 color: #ffffff;
 padding: 80px 0;
 margin-top: 0;
 min-height: 100vh;
 display: flex;
 align-items: center;
 justify-content: center;
 position: relative;
 z-index: 1;
 overflow: hidden;

} @keyframes sectionSlideIn {
 0% {
 opacity: 0;
 transform: translateY(50px);
 
} 100% {
 opacity: 1;
 transform: translateY(0);
 
}

} .contact-modern.section-universal::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(236, 72, 153, 0.1) 0%, transparent 50%), radial-gradient(circle at 40% 40%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
 animation: floatBackground 20s ease-in-out infinite;
 pointer-events: none;
 z-index: -1;

} @keyframes gradientShift {
 0% {
 background-position: 0% 50%;
 
} 50% {
 background-position: 100% 50%;
 
} 100% {
 background-position: 0% 50%;
 
}

} @keyframes floatBackground {
 0%, 100% {
 transform: translateY(0px) rotate(0deg);
 opacity: 0.7;
 
} 33% {
 transform: translateY(-20px) rotate(1deg);
 opacity: 0.9;
 
} 66% {
 transform: translateY(10px) rotate(-1deg);
 opacity: 0.8;
 
}

} .container {
 max-width: 1200px;
 margin: 0 auto;
 padding: 0 20px;
 background: transparent;
 color: #ffffff;
 width: 100%;
 text-align: center;
 position: relative;
 z-index: 2;

} .contact-header {
 text-align: center;
 margin-bottom: 4rem;

} .contact-badge {
 display: inline-flex;
 align-items: center;
 gap: 0.5rem;
 background: linear-gradient(135deg, #8b5cf6, #ec4899);
 color: #ffffff;
 padding: 0.75rem 1.5rem;
 border-radius: 50px;
 font-size: 0.9rem;
 font-weight: 600;
 margin-bottom: 2rem;
 text-transform: uppercase;
 letter-spacing: 1px;
 box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
 animation: badgeFloat 3s ease-in-out infinite;

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

} .contact-title {
 font-size: clamp(2.5rem, 6vw, 4rem);
 font-weight: 800;
 margin-bottom: 1.5rem;
 line-height: 1.1;
 background: linear-gradient(135deg, #ffffff, #8b5cf6);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;

} .contact-subtitle {
 font-size: clamp(1rem, 2.5vw, 1.25rem);
 color: #a0a0a0;
 max-width: 600px;
 margin: 0 auto;
 line-height: 1.6;
 display: block;
 visibility: visible;
 opacity: 1;

} .contact-main-grid {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 3rem;
 margin-bottom: 3rem;
 align-items: start;

} .contact-info {
 display: flex;
 align-items: center;
 justify-content: center;
 padding: 0 1rem;

} .contact-info-container {
 background: rgba(255, 255, 255, 0.05);
 backdrop-filter: blur(20px);
 border: 1px solid rgba(255, 255, 255, 0.1);
 border-radius: 20px;
 padding: 2.5rem;
 width: 100%;
 max-width: 600px;
 min-height: 500px;
 position: relative;
 overflow: hidden;
 display: flex;
 flex-direction: column;
 justify-content: space-between;
 transition: all 0.3s ease;
 animation: cardFloat 10s ease-in-out infinite;

} @keyframes cardFloat {
 0%, 100% {
 transform: translateY(0px) rotate(0deg);
 
} 25% {
 transform: translateY(-5px) rotate(0.2deg);
 
} 50% {
 transform: translateY(-2px) rotate(-0.2deg);
 
} 75% {
 transform: translateY(-7px) rotate(0.1deg);
 
}

} .contact-info-container::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 height: 3px;
 background: linear-gradient(90deg, #8b5cf6, #ec4899);

} .contact-info-container:hover {
 transform: translateY(-5px);
 box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);

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

} .contact-info-header h3 {
 font-size: 1.5rem;
 font-weight: 700;
 color: #ffffff;
 margin-bottom: 0.5rem;

} .contact-info-header p {
 color: #a0a0a0;
 font-size: 0.95rem;
 margin: 0;

} .contact-info-list {
 margin-bottom: 2rem;

} .contact-info-item {
 display: flex;
 align-items: center;
 justify-content: center;
 gap: 1rem;
 padding: 1rem 0;
 border-bottom: 1px solid #333333;
 transition: all 0.3s ease;
 text-align: center;

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

} .contact-info-item:hover {
 background: rgba(139, 92, 246, 0.05);
 border-radius: 10px;
 padding-left: 1rem;
 padding-right: 1rem;

} .contact-icon {
 width: 50px;
 height: 50px;
 background: linear-gradient(135deg, #8b5cf6, #ec4899);
 border-radius: 12px;
 display: flex;
 align-items: center;
 justify-content: center;
 flex-shrink: 0;

} .contact-icon i {
 font-size: 1.2rem;
 color: #ffffff;
 animation: iconPulse 2.5s ease-in-out infinite;

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

} .contact-details {
 text-align: center;

} .contact-details h4 {
 font-size: 1rem;
 font-weight: 600;
 color: #ffffff;
 margin: 0 0 0.25rem 0;

} .contact-details p {
 font-size: 1.1rem;
 font-weight: 700;
 color: #ffffff;
 margin: 0 0 0.25rem 0;

} .contact-details span {
 font-size: 0.85rem;
 color: #a0a0a0;
 margin: 0;

} .contact-cta {
 background: rgba(139, 92, 246, 0.1);
 border: 1px solid rgba(139, 92, 246, 0.2);
 border-radius: 16px;
 padding: 1.5rem;
 text-align: center;

} .contact-cta h4 {
 font-size: 1.2rem;
 font-weight: 700;
 color: #ffffff;
 margin-bottom: 0.5rem;

} .contact-cta p {
 color: #a0a0a0;
 font-size: 0.9rem;
 margin-bottom: 1.5rem;

} .contact-cta-buttons {
 display: flex;
 gap: 1rem;
 justify-content: center;

} .btn-call,
.btn-email {
 display: flex;
 align-items: center;
 gap: 0.5rem;
 padding: 0.75rem 1.5rem;
 border-radius: 10px;
 text-decoration: none;
 font-weight: 600;
 font-size: 0.9rem;
 transition: all 0.3s ease;

} .btn-call {
 background: #10b981;
 color: #ffffff;
 animation: buttonPulse 3s ease-in-out infinite;
 animation-delay: -1s;

} .btn-call:hover {
 background: #059669;
 transform: translateY(-2px);

} .btn-email {
 background: #3b82f6;
 color: #ffffff;
 animation: buttonPulse 3s ease-in-out infinite;
 animation-delay: -2s;

} .btn-email:hover {
 background: #2563eb;
 transform: translateY(-2px);

} @keyframes buttonPulse {
 0%, 100% {
 box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
 
} 50% {
 box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
 
}

} .contact-form-container {
 display: flex;
 align-items: center;
 justify-content: center;
 padding: 0 1rem;

} .contact-form-card {
 background: rgba(255, 255, 255, 0.05);
 backdrop-filter: blur(20px);
 border: 1px solid rgba(255, 255, 255, 0.1);
 border-radius: 20px;
 padding: 2.5rem;
 width: 100%;
 max-width: 600px;
 min-height: 500px;
 position: relative;
 overflow: hidden;
 display: flex;
 flex-direction: column;
 justify-content: space-between;
 transition: all 0.3s ease;
 animation: cardFloat 12s ease-in-out infinite;
 animation-delay: -6s;

} .contact-form-card::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 height: 3px;
 background: linear-gradient(90deg, #ec4899, #8b5cf6);

} .contact-form-card:hover {
 transform: translateY(-5px);
 box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);

} .contact-form-header {
 text-align: center;
 margin-bottom: 2rem;

} .contact-form-header h3 {
 font-size: 1.5rem;
 font-weight: 700;
 color: #ffffff;
 margin-bottom: 0.5rem;

} .contact-form-header p {
 color: #a0a0a0;
 font-size: 0.95rem;
 margin: 0;

} .contact-form {
 display: flex;
 flex-direction: column;
 gap: 1.5rem;

} .form-group {
 text-align: left;

} .form-group label {
 display: block;
 color: #ffffff;
 font-weight: 600;
 margin-bottom: 0.5rem;
 font-size: 0.9rem;

} .form-group input,
.form-group select,
.form-group textarea {
 width: 100%;
 padding: 0.75rem 1rem;
 background: rgba(255, 255, 255, 0.05);
 border: 1px solid rgba(255, 255, 255, 0.1);
 border-radius: 12px;
 color: #ffffff;
 font-size: 1rem;
 transition: all 0.3s ease;
 font-family: inherit;
 backdrop-filter: blur(10px);

} .form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
 outline: none;
 border-color: #8b5cf6;
 box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
 transform: translateY(-2px);
 background: rgba(255, 255, 255, 0.08);

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

} .form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 3rem;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.05);
} .form-group select:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(139, 92, 246, 0.3);
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
} .form-group select:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
} .form-group select option {
 background: #1a1a2e;
 color: #ffffff;
 padding: 0.5rem;

} .form-group select:active {
    background: rgba(255, 255, 255, 0.08);
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
} .form-group select,
.form-group select:hover,
.form-group select:focus,
.form-group select:active {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 3rem;
} .form-error {
 color: #ef4444;
 font-size: 0.8rem;
 margin-top: 0.25rem;
 display: none;
 animation: errorShake 0.3s ease;

} .form-error.show {
 display: block;

} @keyframes errorShake {
 0%, 100% {
 transform: translateX(0);
 
} 25% {
 transform: translateX(-5px);
 
} 75% {
 transform: translateX(5px);
 
}

} .btn-submit {
 background: linear-gradient(135deg, #8b5cf6, #ec4899);
 color: #ffffff;
 border: none;
 padding: 1rem 2rem;
 border-radius: 12px;
 font-size: 1rem;
 font-weight: 600;
 cursor: pointer;
 transition: all 0.3s ease;
 position: relative;
 overflow: hidden;
 text-transform: uppercase;
 letter-spacing: 0.5px;
 box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
 animation: buttonPulse 3s ease-in-out infinite;
 animation-delay: -3s;

} .btn-submit::before {
 content: '';
 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;

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

} .btn-submit:hover {
 transform: translateY(-2px);
 box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);

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

} .btn-submit.loading {
 pointer-events: none;

} .btn-loading {
 display: none;

} .btn-submit.loading .btn-text {
 display: none;

} .btn-submit.loading .btn-loading {
 display: block;

} .form-success {
 display: none;
 text-align: center;
 padding: 2rem;
 background: #1a1a1a;
 border-radius: 16px;
 border: 2px solid #10b981;

} .form-success.show {
 display: block;

} .form-success i {
 font-size: 3rem;
 color: #10b981;
 margin-bottom: 1rem;

} .form-success h4 {
 color: #ffffff;
 font-size: 1.3rem;
 margin-bottom: 0.5rem;

} .form-success p {
 color: #a0a0a0;
 margin: 0;

} .contact-social {
 text-align: center;
 margin-top: 4rem;
 background: rgba(255, 255, 255, 0.05);
 backdrop-filter: blur(20px);
 border: 1px solid rgba(255, 255, 255, 0.1);
 border-radius: 20px;
 padding: 2.5rem;
 position: relative;
 overflow: hidden;
 transition: all 0.3s ease;
 animation: cardFloat 14s ease-in-out infinite;
 animation-delay: -10s;

} .contact-social::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 height: 3px;
 background: linear-gradient(90deg, #8b5cf6, #ec4899);

} .contact-social:hover {
 transform: translateY(-5px);
 box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);

} .contact-social h3 {
 font-size: 1.8rem;
 font-weight: 700;
 color: #ffffff;
 margin-bottom: 2rem;

} .social-links {
 display: flex;
 justify-content: center;
 gap: 1.5rem;
 flex-wrap: wrap;

} .social-link {
 display: flex;
 align-items: center;
 gap: 0.5rem;
 padding: 0.75rem 1.5rem;
 background: rgba(255, 255, 255, 0.05);
 border: 1px solid rgba(255, 255, 255, 0.1);
 border-radius: 25px;
 color: #ffffff;
 text-decoration: none;
 transition: all 0.3s ease;
 font-weight: 600;
 backdrop-filter: blur(10px);

} .social-link:hover {
 background: rgba(139, 92, 246, 0.1);
 border-color: rgba(139, 92, 246, 0.3);
 transform: translateY(-2px);
 box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);

} .social-link i {
 font-size: 1.2rem;
 animation: iconPulse 2s ease-in-out infinite;

} @media (min-width: 1200px) {
 .contact-info-container, .contact-form-card {
 max-width: 700px;
 min-height: 550px;
 
} .contact-info-container {
 padding: 3rem;
 
} .contact-form-card {
 padding: 3rem;
 
}

} @media (max-width: 1024px) {
 .contact-main-grid {
 grid-template-columns: 1fr;
 gap: 2rem;
 
}

} @media (max-width: 768px) {
 .contact-modern.section-universal {
 padding: 40px 0;
 margin-top: 0;
 min-height: auto;
 display: block;
 
} .container {
 padding: 0 15px;
 
} .contact-header {
 margin-bottom: 2rem;
 
} .contact-title {
 font-size: 2.2rem;
 
} .contact-subtitle {
 font-size: 1.1rem;
 line-height: 1.5;
 
} .contact-main-grid {
 gap: 2rem;
 
} .contact-info-container {
 padding: 1.5rem;
 min-height: auto;
 
} .contact-form-card {
 padding: 1.5rem;
 min-height: auto;
 
} .contact-cta-buttons {
 flex-direction: column;
 align-items: center;
 gap: 0.8rem;
 
} .btn-call, .btn-email {
 width: 100%;
 max-width: 200px;
 justify-content: center;
 
} .social-links {
 gap: 1rem;
 
} .social-link {
 padding: 0.5rem 1rem;
 font-size: 0.9rem;
 
}

} @media (max-width: 480px) {
 .contact-modern.section-universal {
 padding: 30px 0;
 
} .container {
 padding: 0 10px;
 
} .contact-header {
 margin-bottom: 1.5rem;
 
} .contact-title {
 font-size: 1.8rem;
 margin-bottom: 1rem;
 
} .contact-subtitle {
 font-size: 0.95rem;
 line-height: 1.4;
 
} .contact-main-grid {
 gap: 1.5rem;
 
} .contact-info-container {
 padding: 1rem;
 
} .contact-form-card {
 padding: 1rem;
 
} .contact-info-item {
 padding: 0.8rem 0;
 
} .contact-icon {
 width: 40px;
 height: 40px;
 
} .contact-icon i {
 font-size: 1rem;
 
} .contact-details h4 {
 font-size: 0.9rem;
 
} .contact-details p {
 font-size: 1rem;
 
} .contact-details span {
 font-size: 0.8rem;
 
} .contact-cta {
 padding: 1rem;
 
} .contact-cta h4 {
 font-size: 1.1rem;
 
} .contact-cta p {
 font-size: 0.85rem;
 
} .social-links {
 flex-direction: column;
 align-items: center;
 gap: 0.8rem;
 
} .social-link {
 width: 100%;
 max-width: 200px;
 justify-content: center;
 
}

} .notification {
 position: fixed;
 top: 20px;
 right: 20px;
 background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
 border: 1px solid rgba(139, 92, 246, 0.3);
 border-radius: 16px;
 box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
 padding: 20px 24px;
 min-width: 320px;
 max-width: 500px;
 z-index: 99999;
 transform: translateX(100%);
 transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
 backdrop-filter: blur(20px);
 color: #ffffff;
 display: flex;
 align-items: center;
 justify-content: space-between;

} .notification::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 height: 3px;
 background: linear-gradient(90deg, #8b5cf6, #ec4899);
 border-radius: 16px 16px 0 0;

} .notification.show {
 transform: translateX(0);

} .notification-error {
 border-color: rgba(239, 68, 68, 0.3);
 background: linear-gradient(135deg, #2d1b1b 0%, #3d1a1a 100%);

} .notification-error::before {
 background: linear-gradient(90deg, #ef4444, #dc2626);

} .notification-success {
 border-color: rgba(16, 185, 129, 0.3);
 background: linear-gradient(135deg, #1b2d1b 0%, #1a3d1a 100%);

} .notification-success::before {
 background: linear-gradient(90deg, #10b981, #059669);

} .notification-content {
 display: flex;
 align-items: center;
 gap: 16px;
 flex: 1;

} .notification-content i {
 font-size: 20px;
 color: #8b5cf6;
 animation: iconPulse 2s ease-in-out infinite;

} .notification-error .notification-content i {
 color: #ef4444;

} .notification-success .notification-content i {
 color: #10b981;

} .notification-content span {
 color: #ffffff;
 font-weight: 500;
 flex: 1;
 line-height: 1.4;

} .notification-close {
 background: rgba(255, 255, 255, 0.1);
 border: none;
 color: #a0a0a0;
 cursor: pointer;
 padding: 8px;
 border-radius: 8px;
 transition: all 0.3s ease;
 display: flex;
 align-items: center;
 justify-content: center;
 width: 32px;
 height: 32px;

} .notification-close:hover {
 background: rgba(255, 255, 255, 0.2);
 color: #ffffff;
 transform: scale(1.1);

} .notification-close i {
 font-size: 14px;
 animation: none;

} @keyframes notificationSlideIn {
 from {
 transform: translateX(100%);
 opacity: 0;
 
} to {
 transform: translateX(0);
 opacity: 1;
 
}

} .notification.show {
 animation: notificationSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);

} .form-group input.error,
.form-group select.error,
.form-group textarea.error {
 border-color: #ef4444;
 box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
 animation: errorShake 0.5s ease;

} .form-group input.success,
.form-group select.success,
.form-group textarea.success {
 border-color: #10b981;
 box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);

} .btn-submit:disabled {
 opacity: 0.6;
 cursor: not-allowed;
 transform: none;

} .btn-submit:disabled:hover {
 transform: none;
 box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);

} @media (max-width: 768px) {
 .notification {
 top: 10px;
 right: 10px;
 left: 10px;
 min-width: auto;
 max-width: none;
 transform: translateY(-100%);
 
} .notification.show {
 transform: translateY(0);
 
}

} @media (max-width: 480px) {
 .notification {
 padding: 16px 20px;
 font-size: 0.9rem;
 
} .notification-content {
 gap: 12px;
 
} .notification-content i {
 font-size: 18px;
 
} .notification-close {
 width: 28px;
 height: 28px;
 padding: 6px;
 
}

}