:root {
    --navy: #000e4b;
    --orange: #ff5a00;
    --orange-dark: #cc4800;
    --bg: #000914;
    --surface: #070f27;
    --surface-2: #0d1737;
    --text: #ffffff;
    --muted: rgba(255, 255, 255, 0.72);
    --border: rgba(255, 255, 255, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    color: var(--text);
    overflow-x: hidden;
}

.contact-shell {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 56px;
}

/* ── Hero Section ── */
.contact-hero {
    padding: 100px 24px 0;
    background: #0a0a0a;
}

.contact-hero-card {
    position: relative;
    width: 100%;
    min-height: 420px;
    border-radius: 0 0 28px 28px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(ellipse at 50% 20%, #0d1117 0%, #020204 60%);
}

/* Wave glow container */
.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 75%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

/* Individual wave layers */
.wave-layer {
    position: absolute;
    bottom: -25%;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 100%;
    transition: left 0.3s ease-out, transform 0.3s ease-out;
}

.wave-layer svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Wave 1 - Main intense orange */
.wave-1 {
    opacity: 0.95;
    filter: blur(8px);
}

/* Wave 2 - Mid layer, slightly offset */
.wave-2 {
    bottom: -35%;
    opacity: 0.6;
    filter: blur(20px);
    width: 140%;
}

/* Wave 3 - Soft ambient glow */
.wave-3 {
    bottom: -20%;
    opacity: 0.35;
    filter: blur(45px);
    width: 160%;
}

/* Bottom edge glow line */
.contact-hero-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 5%;
    width: 90%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 120, 40, 0.5) 20%, rgba(255, 90, 0, 0.95) 50%, rgba(255, 120, 40, 0.5) 80%, transparent 100%);
    z-index: 3;
}

/* Ambient skin-tone reflection on card */
.contact-hero-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 15%;
    width: 70%;
    height: 180px;
    background: radial-gradient(ellipse at 50% 100%, rgba(255, 140, 60, 0.18) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.contact-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 60px 10%;
}

.contact-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(38px, 5.5vw, 68px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: #fff;
}

.contact-subtitle {
    max-width: 580px;
    color: rgba(255, 255, 255, 0.6);
    font-size: clamp(13px, 1.1vw, 16px);
    line-height: 1.7;
}

.contact-main {
    padding: 60px 0 90px;
    background: #0d1117;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

/* ── LEFT: Form Card ── */
.form-card {
    background: #12182b;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 18px;
    padding: 40px 36px 36px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.form-card h2 {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.form-card > p {
    font-size: 16px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.52);
    margin-bottom: 32px;
}

.input-group {
    margin-bottom: 18px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
}

.input-group input,
.input-group textarea {
    width: 100%;
    background: #0a0f1e;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    outline: none;
    padding: 14px 16px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.input-group input::placeholder,
.input-group textarea::placeholder {
    color: rgba(255,255,255,0.3);
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: rgba(255, 90, 0, 0.7);
    box-shadow: 0 0 0 3px rgba(255, 90, 0, 0.15);
}

.input-group textarea {
    min-height: 130px;
    resize: vertical;
}

.btn-submit {
    width: 100%;
    border: none;
    border-radius: 10px;
    background: var(--orange);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    padding: 15px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    margin-top: 8px;
}

.btn-submit:hover {
    background: var(--orange-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(255, 90, 0, 0.3);
}

/* ── RIGHT: Info Panel ── */
.contact-info-panel {
    padding-top: 4px;
}

.contact-info-panel > h2 {
    font-family: 'Inter', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.contact-info-panel > p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 22px;
    max-width: 480px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #12182b;
}

.info-card + .info-card {
    margin-top: 12px;
}

.info-avatar {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    background: rgba(255, 90, 0, 0.12);
    border: 1px solid rgba(255, 90, 0, 0.28);
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--orange);
    box-shadow: 0 0 14px rgba(255, 90, 0, 0.15);
}

.info-content h4 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3px;
}

.info-content p {
    font-size: 13.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

/* ── Socials ── */
.socials {
    margin-top: 24px;
}

.socials span {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 12px;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--orange);
    border: 1px solid rgba(255, 90, 0, 0.35);
    font-size: 14px;
    transition: all 0.2s ease;
    background: rgba(255, 90, 0, 0.1);
    box-shadow: 0 0 10px rgba(255, 90, 0, 0.1);
}

.social-icons a:hover {
    border-color: var(--orange);
    background: rgba(255, 90, 0, 0.22);
    color: #fff;
    box-shadow: 0 0 16px rgba(255, 90, 0, 0.3);
    transform: translateY(-2px);
}

@media (max-width: 1240px) {
    .contact-shell {
        padding: 0 42px;
    }

    .contact-main {
        padding: 56px 0 80px;
    }

    .contact-hero {
        padding: 0;
    }

    .contact-grid {
        gap: 32px;
    }
}

@media (max-width: 1024px) {
    .contact-shell {
        padding: 0 28px;
    }

    .contact-main {
        padding: 48px 0 72px;
    }

    .contact-grid {
        gap: 24px;
    }

    .form-card {
        padding: 32px 28px;
    }

    .form-card h2 {
        font-size: 24px;
    }

    .form-card > p {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .input-group label {
        font-size: 14px;
    }

    .input-group input,
    .input-group textarea {
        padding: 13px 15px;
        font-size: 15px;
    }

    .btn-submit {
        font-size: 15px;
        padding: 14px;
    }

    .contact-info-panel > h2 {
        font-size: 24px;
    }

    .info-avatar {
        width: 46px;
        height: 46px;
        min-width: 46px;
        font-size: 16px;
    }

    .contact-hero {
        padding: 0;
    }

    .contact-hero-card {
        min-height: 560px;
    }

    .hero-waves {
        height: 68%;
    }
}

@media (max-width: 768px) {
    .contact-shell {
        padding: 0 20px;
    }

    .contact-main {
        padding: 44px 0 64px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .form-card {
        height: auto;
        border-radius: 16px;
        padding: 28px 24px;
    }

    .form-card h2 {
        font-size: 22px;
    }

    .form-card > p {
        font-size: 14.5px;
        margin-bottom: 24px;
    }

    .input-group {
        margin-bottom: 16px;
    }

    .input-group label {
        font-size: 13.5px;
        margin-bottom: 7px;
    }

    .input-group input,
    .input-group textarea {
        padding: 12px 14px;
        font-size: 14.5px;
        border-radius: 9px;
    }

    .input-group textarea {
        min-height: 120px;
    }

    .btn-submit {
        font-size: 15px;
        padding: 14px;
    }

    .contact-info-panel {
        padding-top: 0;
    }

    .contact-info-panel > h2 {
        font-size: 22px;
    }

    .contact-info-panel > p {
        font-size: 13.5px;
        margin-bottom: 18px;
    }

    .info-card {
        padding: 14px 16px;
        gap: 14px;
    }

    .info-avatar {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 15px;
    }

    .info-content h4 {
        font-size: 14px;
    }

    .info-content p {
        font-size: 13px;
    }

    .contact-hero {
        padding: 0;
    }

    .contact-hero-card {
        min-height: 480px;
    }

    .contact-hero-inner {
        padding: 60px 8%;
    }

    .hero-waves {
        height: 65%;
    }
}

@media (max-width: 640px) {
    .contact-shell {
        padding: 0 16px;
    }

    .contact-main {
        padding: 36px 0 56px;
    }

    .form-card {
        border-radius: 14px;
        padding: 24px 20px;
    }

    .form-card h2 {
        font-size: 20px;
    }

    .form-card > p {
        font-size: 14px;
        margin-bottom: 22px;
    }

    .input-group {
        margin-bottom: 14px;
    }

    .input-group label {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .input-group input,
    .input-group textarea {
        padding: 11px 13px;
        font-size: 14px;
        border-radius: 8px;
    }

    .input-group textarea {
        min-height: 110px;
    }

    .btn-submit {
        padding: 13px;
        font-size: 14.5px;
    }

    .contact-info-panel > h2 {
        font-size: 20px;
    }

    .contact-grid {
        gap: 24px;
    }

    .info-card {
        padding: 12px 14px;
        gap: 12px;
    }

    .info-avatar {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 14px;
    }

    .social-icons a {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }

    .contact-hero {
        padding: 0;
    }

    .contact-hero-card {
        min-height: 420px;
    }

    .contact-hero-inner {
        padding: 48px 6%;
        gap: 12px;
    }

    .hero-waves {
        height: 60%;
    }
}

@media (max-width: 480px) {
    .contact-shell {
        padding: 0 14px;
    }

    .contact-main {
        padding: 30px 0 48px;
    }

    .contact-title {
        font-size: 34px;
    }

    .contact-subtitle {
        font-size: 13px;
    }

    .form-card {
        border-radius: 12px;
        padding: 20px 16px;
    }

    .form-card h2 {
        font-size: 18px;
    }

    .form-card > p {
        font-size: 13px;
        margin-bottom: 18px;
    }

    .input-group {
        margin-bottom: 12px;
    }

    .input-group label {
        font-size: 12.5px;
        margin-bottom: 5px;
    }

    .input-group input,
    .input-group textarea {
        padding: 10px 12px;
        font-size: 13.5px;
        border-radius: 8px;
    }

    .input-group textarea {
        min-height: 100px;
    }

    .btn-submit {
        font-size: 14px;
        padding: 12px;
    }

    .contact-info-panel > h2 {
        font-size: 19px;
    }

    .contact-info-panel > p {
        font-size: 13px;
    }

    .info-card {
        padding: 11px 12px;
        border-radius: 10px;
    }

    .info-avatar {
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: 13px;
    }

    .info-content h4 {
        font-size: 13.5px;
    }

    .info-content p {
        font-size: 12.5px;
    }

    .socials {
        margin-top: 18px;
    }

    .contact-hero-card {
        min-height: 380px;
    }

    .hero-waves {
        height: 55%;
    }
}

@media (max-width: 375px) {
    .contact-shell {
        padding: 0 12px;
    }

    .contact-main {
        padding: 26px 0 40px;
    }

    .contact-hero {
        padding: 0;
    }

    .contact-title {
        font-size: 30px;
    }

    .form-card {
        padding: 16px 14px;
    }

    .form-card h2 {
        font-size: 17px;
    }

    .form-card > p {
        font-size: 12.5px;
        margin-bottom: 16px;
    }

    .input-group {
        margin-bottom: 10px;
    }

    .input-group label {
        font-size: 12px;
        margin-bottom: 4px;
    }

    .input-group input,
    .input-group textarea {
        padding: 9px 11px;
        font-size: 13px;
    }

    .input-group textarea {
        min-height: 90px;
    }

    .btn-submit {
        padding: 11px;
        font-size: 13.5px;
    }

    .contact-info-panel > h2 {
        font-size: 18px;
    }

    .info-card + .info-card {
        margin-top: 10px;
    }

    .social-icons a {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
}
