/* contact.css — page-specific rules (shared rules in common.css) */

:root {
            --primary-color: #2563eb;
            --primary-dark: #1d4ed8;
            --success-color: #10b981;
            --warning-color: #f59e0b;
            --gradient-start: #3b82f6;
            --gradient-end: #8b5cf6;
        }

body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0fdf4 100%);
            min-height: 100vh;
        }

.navbar {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            padding: 16px 0;
        }

.navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

.navbar .nav-link {
            font-weight: 500;
            color: #475569;
            padding: 8px 16px !important;
            transition: color 0.3s ease;
        }

.btn-get-started {
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            border: none;
            padding: 10px 24px;
            border-radius: 8px;
            font-weight: 600;
            color: white;
        }

.btn-get-started:hover {
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
        }

.hero-section {
            padding: 80px 0 40px;
            text-align: center;
        }

.hero-title {
            font-size: 3rem;
            font-weight: 800;
            color: #1e293b;
            margin-bottom: 1rem;
        }

.hero-subtitle {
            font-size: 1.25rem;
            color: #64748b;
            max-width: 600px;
            margin: 0 auto;
        }

.contact-section {
            padding: 40px 0 80px;
        }

.contact-card {
            background: white;
            border-radius: 24px;
            padding: 40px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

.contact-info-card {
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            border-radius: 24px;
            padding: 40px;
            color: white;
            height: 100%;
        }

.contact-info-title {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

.contact-info-desc {
            opacity: 0.9;
            margin-bottom: 2rem;
        }

.contact-info-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 24px;
        }

.contact-info-icon {
            width: 48px;
            height: 48px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            flex-shrink: 0;
        }

.contact-info-text h5 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 4px;
        }

.contact-info-text p {
            font-size: 0.95rem;
            opacity: 0.9;
            margin: 0;
        }

.social-links {
            display: flex;
            gap: 12px;
            margin-top: 2rem;
        }

.social-link {
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

.social-link:hover {
            background: rgba(255, 255, 255, 0.3);
            color: white;
            transform: translateY(-2px);
        }

.form-label {
            font-weight: 500;
            color: #374151;
            margin-bottom: 8px;
        }

.form-control, .form-select {
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            padding: 12px 16px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

textarea.form-control {
            resize: none;
        }

.btn-submit {
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            border: none;
            border-radius: 12px;
            padding: 14px 32px;
            font-weight: 600;
            font-size: 1rem;
            color: white;
            transition: all 0.3s ease;
        }

.btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
            color: white;
        }

.btn-submit:disabled {
            opacity: 0.7;
            transform: none;
        }

.alert-success-custom {
            background: #dcfce7;
            border: none;
            border-radius: 12px;
            color: #166534;
            padding: 16px 20px;
        }

.alert-danger-custom {
            background: #fee2e2;
            border: none;
            border-radius: 12px;
            color: #991b1b;
            padding: 16px 20px;
        }

.faq-section {
            background: white;
            padding: 80px 0;
        }

.faq-item {
            background: #f8fafc;
            border-radius: 16px;
            margin-bottom: 16px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

.faq-item .accordion-button {
            font-weight: 600;
            color: #1e293b;
            padding: 20px 24px;
            background: #f8fafc;
        }

.faq-item .accordion-button:not(.collapsed) {
            background: #f1f5f9;
            color: var(--primary-color);
        }

.faq-item .accordion-button:focus {
            box-shadow: none;
        }

.office-card {
            background: white;
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            height: 100%;
        }

.office-card h5 {
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 12px;
        }

.office-card p {
            color: #64748b;
            font-size: 0.95rem;
            margin: 0;
        }

@media (max-width: 992px) {
            .footer .row > div {
                text-align: center !important;
            }

            .footer-social {
                justify-content: center;
                margin-top: 16px;
            }

            .footer-links-inline {
                margin: 16px 0;
            }
        }

@media (max-width: 992px) {
            .hero-title {
                font-size: 2.25rem;
            }

            .contact-card, .contact-info-card {
                padding: 28px;
            }
        }
