.contact-v2 {
    --ink: #0b1120;
    --ink-2: #111827;
    --muted: #5b6678;
    --soft: #e2e8f0;
    --emerald: #10b981;
    --amber: #f59e0b;
    --sky: #38bdf8;
    --white: #ffffff;
    font-family: 'Manrope', 'Open Sans', sans-serif;
    color: var(--ink);
    background: #f8fafc;
}

.contact-v2 h1,
.contact-v2 h2,
.contact-v2 h3,
.contact-v2 h4,
.contact-v2 h5 {
    font-family: 'Space Grotesk', 'Open Sans', sans-serif;
    letter-spacing: -0.01em;
}

.contact-v2 a {
    text-decoration: none;
}

.contact-hero {
    position: relative;
    padding: 90px 0 70px;
    overflow: hidden;
    background: radial-gradient(circle at 15% 10%, rgba(255, 247, 237, 0.9), transparent 45%),
        radial-gradient(circle at 85% 20%, rgba(239, 246, 255, 0.9), transparent 50%),
        linear-gradient(120deg, #f8fafc 0%, #eef2ff 45%, #fff7ed 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(60px);
    opacity: 0.6;
    animation: float 12s ease-in-out infinite;
}

.glow-amber {
    width: 260px;
    height: 260px;
    background: rgba(245, 158, 11, 0.45);
    top: -60px;
    right: 60px;
}

.glow-sky {
    width: 320px;
    height: 320px;
    background: rgba(56, 189, 248, 0.4);
    top: 160px;
    left: -90px;
    animation-duration: 14s;
}

.glow-emerald {
    width: 230px;
    height: 230px;
    background: rgba(16, 185, 129, 0.35);
    bottom: -40px;
    right: 0;
    animation-duration: 11s;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(15, 23, 42, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(circle at 30% 20%, rgba(0, 0, 0, 0.5), transparent 70%);
    opacity: 0.35;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-16px); }
    100% { transform: translateY(0); }
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: var(--muted);
    font-weight: 700;
    margin-bottom: 16px;
}

.hero-lead {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 520px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 24px 0 26px;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
    background: var(--ink);
    color: var(--white);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.2);
}

.btn-primary:hover {
    color: var(--white);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(15, 23, 42, 0.2);
    color: var(--ink);
}

.btn-secondary:hover {
    color: var(--ink);
    transform: translateY(-2px);
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.quick-card {
    background: rgba(255, 255, 255, 0.75);
    border-radius: 18px;
    padding: 16px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.quick-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
}

.quick-title {
    font-weight: 700;
    margin: 0 0 4px;
}

.quick-link {
    color: var(--ink);
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 4px;
}

.social-links a {
    color: var(--ink);
    font-size: 1rem;
}

.hero-card {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 28px;
    padding: 28px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.15);
}

.hero-pill {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.15);
    color: #047857;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.hero-card p {
    color: var(--muted);
}

.hero-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 20px;
    display: grid;
    gap: 10px;
    color: var(--muted);
}

.hero-list i {
    color: var(--emerald);
    margin-right: 8px;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    max-width: 70%;
    filter: drop-shadow(0 20px 30px rgba(15, 23, 42, 0.2));
}

.contact-form-section {
    padding: 80px 0;
    background: #ffffff;
}

.section-tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.1);
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.section-lead {
    color: var(--muted);
    font-size: 1.05rem;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 24px;
    display: grid;
    gap: 10px;
    color: var(--muted);
}

.info-list i {
    color: var(--emerald);
    margin-right: 8px;
}

.info-box {
    padding: 16px 18px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid rgba(148, 163, 184, 0.35);
}

.info-box a {
    color: var(--ink);
    font-weight: 700;
}

.form-card {
    background: #f8fafc;
    padding: 28px;
    border-radius: 24px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 22px 42px rgba(15, 23, 42, 0.12);
}

.contact-form-section .form-control,
.contact-form-section .form-floating label {
    font-size: 0.95rem;
}

.contact-form-section .btn-dark {
    border-radius: 999px;
    padding: 12px 24px;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.18);
}

.cta {
    padding: 80px 0 110px;
    background: linear-gradient(135deg, #0f172a 0%, #0f4c81 55%, #0ea5e9 100%);
}

.cta-inner {
    background: #ffffff;
    border-radius: 28px;
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 24px 44px rgba(15, 23, 42, 0.2);
}

.cta-inner h2 {
    margin-bottom: 10px;
}

.cta-inner p {
    color: var(--muted);
    margin: 0;
}

.grecaptcha-badge {
    visibility: hidden;
}

@media (max-width: 991px) {
    .contact-hero {
        padding: 70px 0 60px;
    }

    .cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .hero-image img {
        max-width: 60%;
    }
}

@media (max-width: 575px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-image img {
        max-width: 75%;
    }
}
