
:root {
    --green-brand: #007031;
    --green-light: #1aa64b;
    --green-soft: #eaf7ef;
    --navy-brand: #1a2b49;
    --bg-mesh-color: #f8fafc;
    --text-slate-900: #0f172a;
    --text-slate-500: #64748b;
    --text-slate-400: #94a3b8;
    --border-color: #e2e8f0;
}
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-mesh-color);
    background-image: 
        radial-gradient(at 0% 0%, rgba(20, 184, 166, 0.07) 0, transparent 50%), 
        radial-gradient(at 50% 0%, rgba(14, 165, 233, 0.07) 0, transparent 50%),
        radial-gradient(at 100% 100%, rgba(13, 148, 136, 0.05) 0, transparent 50%);
    color: var(--text-slate-900);
    min-height: 100vh;
}
/* Hero Header */
.contact-hero {
    padding-top: 5rem;
    padding-bottom: 7rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.visual-orb-1 {
    position: absolute;
    top: 50%;
    left: 2.5rem;
    width: 18rem;
    height: 18rem;
    background-color: rgba(204, 251, 241, 0.1);
    border-radius: 50%;
    filter: blur(64px);
    transform: translateY(-50%);
}
.visual-orb-2 {
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    width: 24rem;
    height: 24rem;
    background-color: rgba(209, 250, 229, 0.1);
    border-radius: 50%;
    filter: blur(64px);
}
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    background-color: #f0fdfa;
    color: #0f766e;
    border: 1px solid #ccfbf1;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}
.hero-pulse-dot {
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 50%;
    background-color: #14b8a6;
    animation: pulse 2s cubic-gradient(0.4, 0, 0.6, 1) infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .5; }
}
.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-slate-900);
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
    line-height: 1.2;
}
@media (min-width: 576px) {
    .hero-title { font-size: 3rem; }
}
@media (min-width: 768px) {
    .hero-title { font-size: 3.75rem; }
}
.hero-underline {
    color: #0d9488;
    position: relative;
    display: inline-block;
}
.hero-underline-accent {
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #ccfbf1;
    border-radius: 2px;
    z-index: -1;
}
.hero-desc {
    font-size: 1.125rem;
    color: var(--text-slate-500);
    max-width: 42rem;
    margin: 0 auto;
    line-height: 1.625;
}
/* Main Card Wrapper */
.contact-container {
    max-width: 80rem;
    margin: -4rem auto 0;
    padding: 0 1.5rem 5rem;
    position: relative;
    z-index: 10;
}
.contact-card {
    background-color: #ffffff;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    border: 1px solid var(--border-color);
}
@media (min-width: 768px) {
    .contact-card {
        border-radius: 2.5rem;
    }
}
/* Left Info Panel */
.info-panel {
    background-color: #0f172a;
    padding: 2rem;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}
@media (min-width: 576px) { .info-panel { padding: 2.5rem; } }
@media (min-width: 768px) { .info-panel { padding: 3.5rem; } }
.info-panel-orb {
    position: absolute;
    top: 0;
    right: 0;
    width: 16rem;
    height: 16rem;
    background-color: rgba(13, 148, 136, 0.1);
    border-radius: 50%;
    filter: blur(64px);
}
.info-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}
@media (min-width: 576px) { .info-title { font-size: 1.875rem; } }
.info-desc {
    color: var(--text-slate-400);
    font-size: 0.875rem;
    margin-bottom: 2rem;
    line-height: 1.625;
}
@media (min-width: 576px) { .info-desc { margin-bottom: 3rem; } }
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
@media (min-width: 576px) { .info-item { gap: 1.25rem; margin-bottom: 2.5rem; } }
.info-icon-wrapper {
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(20, 184, 166, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(20, 184, 166, 0.2);
}
@media (min-width: 576px) {
    .info-icon-wrapper {
        width: 3rem;
        height: 3rem;
        border-radius: 1rem;
    }
}
.info-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #2dd4bf;
}
@media (min-width: 576px) {
    .info-icon {
        width: 1.5rem;
        height: 1.5rem;
    }
}
.info-label {
    color: var(--text-slate-400);
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
}
@media (min-width: 576px) { .info-label { font-size: 0.75rem; } }
.info-value {
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    line-height: 1.625;
}
@media (min-width: 576px) { .info-value { font-size: 1.125rem; } }
.info-value:hover {
    color: #5eead4;
}
.info-guarantee {
    font-size: 1rem;
    font-weight: 500;
    color: #2dd4bf;
    font-style: italic;
}
@media (min-width: 576px) { .info-guarantee { font-size: 1.125rem; } }
.info-social-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #1e293b;
    position: relative;
    z-index: 10;
}
.social-title {
    color: #475569;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}
@media (min-width: 576px) { .social-title { font-size: 0.75rem; } }
.social-links {
    display: flex;
    gap: 1.5rem;
}
.social-icon-link {
    color: var(--text-slate-400);
    transition: color 0.2s ease;
}
.social-icon-link:hover {
    color: #ffffff;
}
.social-svg {
    width: 1.25rem;
    height: 1.25rem;
}
@media (min-width: 576px) {
    .social-svg {
        width: 1.5rem;
        height: 1.5rem;
    }
}
/* Right Form Panel */
.form-panel {
    padding: 2rem;
}
@media (min-width: 576px) { .form-panel { padding: 2.5rem; } }
@media (min-width: 768px) { .form-panel { padding: 3.5rem; } }
.form-label {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #334155;
    margin-bottom: 0.5rem;
    margin-left: 0.25rem;
}
@media (min-width: 576px) { .form-label { font-size: 0.75rem; } }
.custom-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border-color);
    outline: none;
    transition: all 0.2s ease;
    background-color: #f8fafc;
    color: #1e293b;
    font-weight: 500;
    font-size: 0.875rem;
}
@media (min-width: 576px) {
    .custom-input {
        padding: 1rem 1.25rem;
        border-radius: 1rem;
        font-size: 1rem;
    }
}
.custom-input:focus {
    background-color: #ffffff;
    border-color: #0d9488;
    box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.15);
}
.select-wrapper {
    position: relative;
}
.select-arrow {
    position: absolute;
    inset-y: 0;
    right: 1rem;
    display: flex;
    align-items: center;
    pointer-events: none;
    color: #64748b;
}
textarea.custom-input {
    resize: none;
}
.submit-btn {
    width: 100%;
    background-color: #0d9488;
    color: #ffffff;
    font-weight: 700;
    padding: 0.875rem 1rem;
    border-radius: 0.75rem;
    border: none;
    transition: all 0.2s ease;
    box-shadow: 0 10px 15px -3px rgba(13, 148, 136, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
    cursor: pointer;
}
@media (min-width: 576px) {
    .submit-btn {
        padding: 1rem 1.25rem;
        border-radius: 1rem;
        font-size: 1.125rem;
    }
}
.submit-btn:hover {
    background-color: #0f766e;
}
.submit-btn:active {
    transform: scale(0.98);
}
.privacy-notice {
    font-size: 0.625rem;
    text-align: center;
    color: var(--text-slate-400);
    margin-top: 1rem;
    line-height: 1.5;
}
@media (min-width: 576px) { .privacy-notice { font-size: 0.75rem; } }
.privacy-notice a {
    text-decoration: underline;
    color: var(--text-slate-400);
}
.privacy-notice a:hover {
    color: #0d9488;
}
/* Success Overlay */
.success-overlay {
    text-align: center;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}
@media (min-width: 576px) { .success-overlay { padding: 3rem 1.5rem; } }
.success-icon-wrapper {
    width: 4rem;
    height: 4rem;
    background-color: #d1fae5;
    color: #059669;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    animation: bounce 1s infinite;
}
@media (min-width: 576px) {
    .success-icon-wrapper {
        width: 5rem;
        height: 5rem;
        font-size: 2.5rem;
    }
}
@keyframes bounce {
    0%, 100% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }
    50% {
        transform: translateY(0);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}
.success-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-slate-900);
}
@media (min-width: 576px) { .success-title { font-size: 1.875rem; } }
.success-desc {
    color: var(--text-slate-500);
    max-width: 28rem;
    margin: 0 auto;
    font-size: 0.875rem;
    line-height: 1.5;
}
@media (min-width: 576px) { .success-desc { font-size: 1rem; } }
.ticket-info-box {
    background-color: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 0.75rem;
    padding: 1rem;
    width: 100%;
    max-width: 24rem;
    font-size: 0.75rem;
}
@media (min-width: 576px) {
    .ticket-info-box {
        border-radius: 1rem;
        font-size: 0.875rem;
    }
}
.ticket-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}
.ticket-row:last-child {
    margin-bottom: 0;
}
.ticket-label {
    color: var(--text-slate-400);
}
.ticket-value {
    color: #1e293b;
    font-weight: 700;
}
.ticket-priority {
    color: #d97706;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 800;
    font-size: 0.625rem;
}
@media (min-width: 576px) { .ticket-priority { font-size: 0.75rem; } }
.reset-btn {
    background-color: #0d9488;
    color: #ffffff;
    font-weight: 700;
    padding: 0.625rem 1.25rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
    transition: background 0.2s ease;
}
@media (min-width: 576px) {
    .reset-btn {
        padding: 0.75rem 1.5rem;
        border-radius: 0.75rem;
        font-size: 1rem;
    }
}
.reset-btn:hover {
    background-color: #0f766e;
}
/* Self Help Section */
.self-help-section {
    margin-top: 5rem;
}
.self-help-card {
    background-color: #ffffff;
    border-radius: 1.5rem;
    border: 1px solid var(--border-color);
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}
.self-help-card:hover {
    border-color: #ccfbf1;
    box-shadow: 0 20px 25px -5px rgba(13, 148, 136, 0.05);
}
.self-help-icon-wrapper {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}
.self-help-card:hover .self-help-icon-wrapper {
    transform: scale(1.1);
}
.bg-teal-50-custom {
    background-color: #f0fdfa;
    color: #0d9488;
}
.bg-emerald-50-custom {
    background-color: #ecfdf5;
    color: #059669;
}
.bg-blue-50-custom {
    background-color: #eff6ff;
    color: #2563eb;
}
.self-help-title {
    font-weight: 700;
    font-size: 1.125rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
}
.self-help-desc {
    color: var(--text-slate-500);
    font-size: 0.875rem;
    line-height: 1.625;
    margin-bottom: 1rem;
}
.self-help-link {
    color: #0d9488;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: transform 0.2s ease;
}
.self-help-link:hover {
    transform: translateX(4px);
}
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.625rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    background-color: #ecfdf5;
    color: #047857;
    border: 1px solid #d1fae5;
}
.status-ping-dot {
    position: relative;
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 50%;
    background-color: #10b981;
}
.status-ping-dot::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background-color: #10b981;
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}
@keyframes ping {
    75%, 100% {
        transform: scale(2.5);
        opacity: 0;
    }
}