
        :root {
            --primary-color: #095669;
            --secondary-color: #693e74;
            --tertiary-color: #005683;
            --light-color: #ffffff;
            --text-color: #333333;
            --gray-color: #f5f5f5;
            --hover-color: #693e74;
        }

        body {
            margin: 0;
            font-family: 'Inter', sans-serif;
            color: var(--text-color);
            background-color: #f8f9fa;
        }

        .contact-wrapper {
            min-height: 100vh;
            padding: 80px 20px;
            position: relative;
            overflow: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }

        .contact-section {
            max-width: 1140px;
            margin: 0 auto;
        }

        .contact-info-card {
            background: linear-gradient(135deg, var(--primary-color), var(--tertiary-color));
            height: 100%;
            transition: transform 0.3s ease;
            display: flex;
            flex-direction: column;
            border-radius: 1rem;
        }

        .contact-info-card:hover {
            transform: translateY(-5px);
        }

        .contact-info-wrapper {
            flex: 1;
            margin-bottom: 1rem;
        }

        .info-icon {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            transition: all 0.3s ease;
        }

        .contact-card {
            border-radius: 20px;
            backdrop-filter: blur(10px);
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .social-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            margin-top: 2rem !important;
            padding: 0 15px;
        }

        .social-icon {
            width: 38px;
            height: 38px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
        }

        .custom-btn {
            background: linear-gradient(135deg, var(--primary-color), var(--tertiary-color));
            border: none;
            transition: all 0.3s ease;
            padding: 12px 30px;
        }

        .custom-btn:hover {
            background: var(--secondary-color);
            transform: translateY(-2px);
        }

        .form-control {
            border-radius: 12px;
            padding: 12px 15px;
            border: 1.5px solid #e0e0e0;
        }

        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.25rem rgba(9, 86, 105, 0.1);
        }

        .loading-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.8);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 9999;
        }

        .spinner {
            width: 40px;
            height: 40px;
            border: 4px solid #f3f3f3;
            border-top: 4px solid var(--primary-color);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @media (max-width: 991.98px) {
            .contact-wrapper {
                padding: 60px 20px;
            }
            .contact-info-card {
                margin-bottom: 30px;
            }
        }

        @media (max-width: 767.98px) {
            .contact-wrapper {
                padding: 40px 15px;
            }
            .contact-card {
                padding: 20px !important;
            }
            .contact-info-wrapper {
                padding: 0 10px;
            }
            .info-icon {
                width: 40px;
                height: 40px;
                font-size: 16px;
                min-width: 40px;
            }
        }

        @media (max-width: 575.98px) {
            .social-links {
                margin-top: 1.5rem !important;
                gap: 10px;
            }
            .social-icon {
                width: 34px;
                height: 34px;
                font-size: 0.9em;
            }
            .contact-info-card {
                padding: 1.5rem !important;
            }
        }