        /* ── Contact Page Styles ── */
        html body .contact-wrapper {
            max-width: 1000px;
            margin: 0 auto;
            padding: 48px 24px 72px;
        }

        html body .contact-card {
            display: grid;
            grid-template-columns: 1fr 380px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.10);
            background: #fff;
        }

        /* ── Left: Form Panel ── */
        html body .contact-form-panel {
            padding: 48px 44px;
            background: #fff;
        }

        html body .contact-form-panel h2 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.6rem;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 6px;
        }

        html body .contact-form-panel p.subtext {
            font-size: 14px;
            color: #888;
            margin-bottom: 32px;
            font-family: 'Work Sans', sans-serif;
        }

        /* Input Groups */
        html body .form-group {
            position: relative;
            margin-bottom: 22px;
        }

        html body .form-group input,
        html body .form-group textarea {
            width: 100%;
            padding: 14px 16px 14px 44px;
            border: 1.5px solid #e0e4ef;
            border-radius: 10px;
            font-size: 14px;
            font-family: 'Work Sans', sans-serif;
            color: #333;
            background: #f8f9fc;
            transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
            outline: none;
            box-sizing: border-box;
        }

        html body .form-group textarea {
            resize: vertical;
            min-height: 120px;
            padding-top: 14px;
        }

        html body .form-group input:focus,
        html body .form-group textarea:focus {
            border-color: #2196c4;
            background: #fff;
            box-shadow: 0 0 0 4px rgba(33,150,196,0.10);
        }

        html body .form-group input.error,
        html body .form-group textarea.error {
            border-color: #e74c3c;
            background: #fff8f8;
        }

        html body .form-group .input-icon {
            position: absolute;
            left: 14px;
            top: 50%;
            transform: translateY(-50%);
            color: #aab0c6;
            font-size: 14px;
            pointer-events: none;
            transition: color 0.25s;
        }

        html body .form-group textarea ~ .input-icon {
            top: 18px;
            transform: none;
        }

        html body .form-group input:focus ~ .input-icon,
        html body .form-group textarea:focus ~ .input-icon {
            color: #2196c4;
        }

        html body .form-group .field-label {
            display: block;
            font-size: 12px;
            font-weight: 600;
            color: #555;
            margin-bottom: 6px;
            font-family: 'Poppins', sans-serif;
            letter-spacing: 0.3px;
        }

        html body .form-group .error-msg {
            display: none;
            font-size: 11.5px;
            color: #e74c3c;
            margin-top: 5px;
            font-family: 'Work Sans', sans-serif;
        }

        html body .form-group.has-error .error-msg {
            display: block;
        }

        /* Two-column row */
        html body .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        /* Submit Button */
        html body .btn-submit {
            width: 100%;
            padding: 14px;
            background: linear-gradient(135deg, #1a6faf, #2196c4);
            color: #fff;
            border: none;
            border-radius: 10px;
            font-size: 15px;
            font-weight: 600;
            font-family: 'Poppins', sans-serif;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-top: 8px;
            letter-spacing: 0.3px;
        }

        html body .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(33,150,196,0.35);
        }

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

        html body .btn-submit.loading {
            opacity: 0.8;
            cursor: not-allowed;
            pointer-events: none;
        }

        html body .btn-submit .spinner {
            width: 16px;
            height: 16px;
            border: 2px solid rgba(255,255,255,0.4);
            border-top-color: #fff;
            border-radius: 50%;
            animation: spin 0.7s linear infinite;
            display: none;
        }

        html body .btn-submit.loading .spinner { display: block; }
        html body .btn-submit.loading .btn-text { opacity: 0.7; }

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

        /* ── Success State ── */
        html body .success-overlay {
            display: none;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 48px 32px;
            animation: fadeInUp 0.5s ease forwards;
        }

        html body .success-overlay.show {
            display: flex;
        }

        html body .form-content.hide {
            display: none;
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(24px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        html body .success-icon-wrap {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #1a6faf, #2196c4);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            box-shadow: 0 12px 32px rgba(33,150,196,0.3);
            animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.2s both;
        }

        @keyframes popIn {
            from { transform: scale(0); opacity: 0; }
            to   { transform: scale(1); opacity: 1; }
        }

        html body .success-icon-wrap i {
            font-size: 32px;
            color: #fff;
        }

        html body .success-overlay h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.4rem;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 10px;
        }

        html body .success-overlay p {
            font-size: 14px;
            color: #777;
            font-family: 'Work Sans', sans-serif;
            line-height: 1.7;
            max-width: 280px;
        }

        html body .btn-send-another {
            margin-top: 24px;
            padding: 10px 28px;
            border: 1.5px solid #2196c4;
            border-radius: 8px;
            color: #2196c4;
            font-size: 13px;
            font-weight: 600;
            font-family: 'Poppins', sans-serif;
            cursor: pointer;
            background: transparent;
            transition: background 0.2s, color 0.2s;
        }

        html body .btn-send-another:hover {
            background: #2196c4;
            color: #fff;
        }

        /* ── Right: Info Panel ── */
        html body .contact-info-panel {
            background: linear-gradient(160deg, #1a6faf 0%, #2196c4 50%, #4ab8d8 100%);
            padding: 48px 36px;
            display: flex;
            flex-direction: column;
            gap: 0;
            color: #fff;
        }

        html body .contact-info-panel h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 8px;
        }

        html body .contact-info-panel .info-tagline {
            font-size: 13px;
            color: rgba(255,255,255,0.75);
            font-family: 'Work Sans', sans-serif;
            margin-bottom: 36px;
            line-height: 1.6;
        }

        html body .info-item {
            display: flex;
            flex-direction: column;
            gap: 4px;
            padding: 20px 0;
            border-bottom: 1px dashed rgba(255,255,255,0.25);
        }

        html body .info-item:last-of-type {
            border-bottom: none;
        }

        html body .info-item-label {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            font-weight: 600;
            color: rgba(255,255,255,0.7);
            font-family: 'Poppins', sans-serif;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        html body .info-item-label i {
            font-size: 13px;
            color: rgba(255,255,255,0.9);
        }

        html body .info-item-value {
            font-size: 14.5px;
            color: #fff;
            font-family: 'Work Sans', sans-serif;
            line-height: 1.6;
            padding-left: 22px;
        }

        html body .info-item-value a {
            color: #fff;
            text-decoration: none;
        }

        html body .info-item-value a:hover {
            text-decoration: underline;
        }

        /* Social row */
        html body .social-row {
            display: flex;
            gap: 12px;
            margin-top: 32px;
        }

        html body .social-btn {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: rgba(255,255,255,0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 14px;
            text-decoration: none;
            transition: background 0.2s, transform 0.2s;
        }

        html body .social-btn:hover {
            background: rgba(255,255,255,0.30);
            transform: translateY(-2px);
        }

        /* ── Responsive ── */
        @media (max-width: 768px) {
            html body .contact-card {
                grid-template-columns: 1fr;
            }
            html body .contact-form-panel {
                padding: 32px 24px;
            }
            html body .form-row {
                grid-template-columns: 1fr;
            }
            html body .contact-info-panel {
                padding: 36px 24px;
            }
        }
    