 .contact-container {
     width: 100%;
     padding: 40px 5% 80px;
     background-color: #f8fafc;
     min-height: 80vh;
     position: relative;
     overflow: hidden;
 }

 .contact-container::before {
     content: "";
     position: absolute;
     top: -10%;
     right: -5%;
     width: 400px;
     height: 400px;
     background: radial-gradient(circle, rgba(225, 29, 72, 0.03) 0%, transparent 70%);
     border-radius: 50%;
     z-index: 0;
 }

 .contact-container::after {
     content: "";
     position: absolute;
     bottom: -5%;
     left: -5%;
     width: 300px;
     height: 300px;
     background: radial-gradient(circle, rgba(225, 29, 72, 0.03) 0%, transparent 70%);
     border-radius: 50%;
     z-index: 0;
 }

 .glass-flourish {
     position: absolute;
     width: 150px;
     height: 150px;
     background: rgba(225, 29, 72, 0.01);
     backdrop-filter: blur(10px);
     border: 1px solid rgba(225, 29, 72, 0.05);
     border-radius: 30px;
     z-index: 0;
     pointer-events: none;
     animation: float 6s ease-in-out infinite;
 }

 .glass-1 {
     top: 15%;
     left: 8%;
     transform: rotate(15deg);
 }

 .glass-2 {
     bottom: 10%;
     right: 10%;
     transform: rotate(-15deg);
     animation-delay: 2s;
 }

 @keyframes float {

     0%,
     100% {
         transform: translateY(0) rotate(15deg);
     }

     50% {
         transform: translateY(-20px) rotate(20deg);
     }
 }

 .animate-up {
     animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
     opacity: 0;
 }

 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(30px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .contact-grid {
     display: grid;
     grid-template-columns: 1fr 1.5fr;
     gap: 3rem;
     margin-top: 3rem;
     max-width: 1200px;
     margin-left: auto;
     margin-right: auto;
     position: relative;
     z-index: 1;
 }

 .contact-info-wrapper {
     display: flex;
     flex-direction: column;
     gap: 1.5rem;
 }

 .contact-card {
     background: rgba(255, 255, 255, 0.9);
     backdrop-filter: blur(5px);
     padding: 2rem;
     border-radius: 20px;
     border: 1px solid rgba(241, 245, 249, 0.8);
     box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
     transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
     display: flex;
     align-items: center;
     gap: 1.5rem;
 }

 .contact-card:hover {
     transform: scale(1.03) translateX(-5px);
     box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
     border-color: var(--color-primary, #e11d48);
     background: white;
 }

 .card-icon {
     width: 54px;
     height: 54px;
     background: rgba(225, 29, 72, 0.05);
     color: var(--color-primary, #e11d48);
     border-radius: 14px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.4rem;
     transition: all 0.3s ease;
 }

 .contact-card:hover .card-icon {
     background: var(--color-primary, #e11d48);
     color: white;
     transform: rotate(-10deg);
 }

 .card-details h3 {
     font-size: 1.1rem;
     font-weight: 800;
     color: #0f172a;
     margin-bottom: 4px;
 }

 .card-details p {
     color: #64748b;
     font-size: 0.95rem;
     font-weight: 500;
     margin: 0;
 }

 .contact-form-card {
     background: white;
     padding: 3.5rem;
     border-radius: 28px;
     border: 1px solid #f1f5f9;
     box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.05);
     position: relative;
 }

 .contact-form-card::before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 6px;
     background: var(--color-primary, #e11d48);
     border-radius: 28px 28px 0 0;
     opacity: 0.8;
 }

 .form-header {
     margin-bottom: 2.5rem;
 }

 .form-header h2 {
     font-size: 1.75rem;
     font-weight: 900;
     color: #0f172a;
     margin-bottom: 0.5rem;
 }

 .form-header p {
     color: #64748b;
 }

 .custom-form-group {
     margin-bottom: 1.5rem;
 }

 .custom-label {
     display: block;
     margin-bottom: 0.5rem;
     font-weight: 700;
     color: #1e293b;
     font-size: 0.9rem;
 }

 .custom-input {
     width: 100%;
     padding: 1rem 1.25rem;
     border-radius: 12px;
     border: 2px solid #f1f5f9;
     background: #f8fafc;
     font-size: 1rem;
     transition: all 0.3s ease;
     color: #1e293b;
 }

 .custom-input:focus {
     outline: none;
     border-color: var(--color-primary, #e11d48);
     background: white;
     box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.05);
     transform: translateY(-2px);
 }

 .form-row {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 1.5rem;
 }

 .submit-btn {
     width: 100%;
     padding: 1.1rem;
     background: var(--color-primary, #e11d48);
     color: white;
     border: none;
     border-radius: 12px;
     font-size: 1.1rem;
     font-weight: 800;
     cursor: pointer;
     transition: all 0.3s ease;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
     box-shadow: 0 10px 15px -3px rgba(225, 29, 72, 0.2);
 }

 .submit-btn:hover {
     transform: translateY(-2px) scale(1.02);
     box-shadow: 0 20px 25px -5px rgba(225, 29, 72, 0.3);
     background: #be123c;
 }

 .map-section {
     margin-top: 4rem;
     border-radius: 24px;
     overflow: hidden;
     height: 400px;
     border: 1px solid #f1f5f9;
     box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
     position: relative;
 }

 .map-placeholder {
     width: 100%;
     height: 100%;
     background: #e2e8f0;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     color: #94a3b8;
 }

 .map-placeholder i {
     font-size: 3.5rem;
     margin-bottom: 1rem;
 }

 @media (max-width: 992px) {
     .contact-grid {
         grid-template-columns: 1fr;
     }
 }

 @media (max-width: 600px) {
     .form-row {
         grid-template-columns: 1fr;
     }

     .contact-form-card {
         padding: 2.5rem 1.5rem;
     }
 }