/* ===========================
   Contact Us Page Styles
   =========================== */

:root {
    --cu-gradient: linear-gradient(90deg, #53FECD 0%, #2C74C9 100%);
    --cu-gradient-diag: linear-gradient(135deg, #53FECD 0%, #2C74C9 100%);
    --cu-bg-dark: #0a0e27;
    --cu-bg-card: rgba(20, 25, 45, 0.8);
    --cu-bg-card-hover: rgba(30, 38, 68, 0.9);
    --cu-border: rgba(60, 80, 150, 0.3);
    --cu-border-hover: rgba(83, 254, 205, 0.4);
    --cu-text-primary: #ffffff;
    --cu-text-secondary: rgba(255, 255, 255, 0.7);
    --cu-text-muted: rgba(255, 255, 255, 0.45);
    --cu-cyan: #53FECD;
    --cu-blue: #2C74C9;
    --cu-green: #53FECD;
    --cu-radius: 15px;
    --cu-radius-sm: 8px;
    --cu-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* ========== Contact Wrapper ========== */
.cu-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 80px;
}

/* ========== Page Hero ========== */
.cu-hero {
    background: linear-gradient(180deg, rgba(44, 116, 201, 0.18) 0%, transparent 100%);
    background: radial-gradient(ellipse, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
    border-bottom: 1px solid var(--cu-border);
    padding: 52px 20px 44px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.cu-hero::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 360px;
    background: radial-gradient(ellipse, rgba(83, 254, 205, 0.08) 0%, transparent 65%);
    pointer-events: none;
}

.cu-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(83, 254, 205, 0.08);
    border: 1px solid rgba(83, 254, 205, 0.25);
    border-radius: 20px;
    padding: 5px 16px;
    font-size: 11px;
    font-weight: 700;
    color: var(--cu-cyan);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.cu-hero-badge::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cu-cyan);
    box-shadow: 0 0 6px var(--cu-cyan);
    animation: cu-blink 2s infinite;
}

@keyframes cu-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.cu-hero h1 {
    font-size: 44px;
    font-weight: 800;
    color: var(--cu-text-primary);
    letter-spacing: -0.5px;
    margin-bottom: 14px;
    line-height: 1.15;
}

.cu-hero h1 span {
    background: var(--cu-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cu-hero p {
    max-width: 540px;
    margin: 0 auto;
    color: var(--cu-text-secondary);
    font-size: 15px;
    line-height: 1.75;
}

.cu-hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.cu-stat-item { text-align: center; }

.cu-stat-value {
    font-size: 28px;
    font-weight: 800;
    background: var(--cu-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.cu-stat-label {
    font-size: 11px;
    color: var(--cu-text-muted);
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* ========== Section Header ========== */
.cu-section-header {
    text-align: center;
    margin-bottom: 32px;
}

.cu-section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--cu-cyan);
    margin-bottom: 10px;
}

.cu-section-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--cu-text-primary);
    letter-spacing: -0.3px;
}

.cu-section-desc {
    margin-top: 10px;
    color: var(--cu-text-secondary);
    font-size: 14px;
}

/* ========== Category Cards ========== */
.cu-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

@media (max-width: 900px) {
    .cu-categories { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
    .cu-categories { grid-template-columns: 1fr; }
}

.cu-cat-card {
    background: var(--cu-bg-card);
    border: 1px solid var(--cu-border);
    border-radius: var(--cu-radius);
    padding: 24px 20px;
    cursor: pointer;
    transition: all 0.25s ease;
    backdrop-filter: blur(10px);
    box-shadow: var(--cu-shadow);
    position: relative;
    overflow: hidden;
}

.cu-cat-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--cu-radius);
    background: linear-gradient(135deg, rgba(83, 254, 205, 0.04), transparent);
    opacity: 0;
    transition: opacity 0.25s;
}

.cu-cat-card:hover {
    border-color: var(--cu-border-hover);
    background: var(--cu-bg-card-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(83, 254, 205, 0.1);
}

.cu-cat-card:hover::after { opacity: 1; }

.cu-cat-card h3 {
    font-size: 15px;
    /* font-weight: 700; */
    color: var(--cu-text-primary);
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
    line-height: 1.3;
}

.cu-cat-card p {
    font-size: 13px;
    color: var(--cu-text-secondary);
    line-height: 1.6;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.cu-cat-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.cu-cat-header h3 {
    margin-bottom: 0;
}

.cu-cat-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.cu-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    /* font-weight: 700; */
    position: relative;
    z-index: 1;
    letter-spacing: 0.3px;
}

.cu-badge-green {
    background: rgba(83, 254, 205, 0.1);
    color: #53FECD;
    border: 1px solid rgba(83, 254, 205, 0.25);
}

.cu-badge-blue {
    background: rgba(44, 116, 201, 0.15);
    color: #7bb8f8;
    border: 1px solid rgba(44, 116, 201, 0.35);
}

.cu-badge-gold {
    background: rgba(245, 196, 78, 0.12);
    color: #F5C44E;
    border: 1px solid rgba(245, 196, 78, 0.28);
}

/* ========== Grid Layout ========== */
.cu-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 24px;
    align-items: start;
}

@media (max-width: 900px) {
    .cu-grid { grid-template-columns: 1fr; }
}

/* ========== Form Card ========== */
.cu-form-card {
    background: var(--cu-bg-card);
    border: 1px solid var(--cu-border);
    border-radius: var(--cu-radius);
    padding: 28px;
    backdrop-filter: blur(10px);
    box-shadow: var(--cu-shadow);
}

.cu-form-card h2 {
    font-size: 19px;
    font-weight: 700;
    color: var(--cu-text-primary);
    margin-bottom: 4px;
}

.cu-form-sub {
    font-size: 13px;
    color: var(--cu-text-secondary);
    margin-bottom: 20px;
}

.cu-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

@media (max-width: 600px) {
    .cu-form-row { grid-template-columns: 1fr; }
}

.cu-form-group { margin-bottom: 14px; }

.cu-form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--cu-text-secondary);
    margin-bottom: 7px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.cu-form-group label .cu-req {
    color: var(--cu-cyan);
    margin-left: 2px;
}

.cu-input {
    width: 100%;
    padding: 10px 14px;
    background: rgba(10, 14, 39, 0.8);
    border: 1px solid var(--cu-border);
    border-radius: var(--cu-radius-sm);
    color: var(--cu-text-primary);
    font-size: 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    font-family: inherit;
    box-sizing: border-box;
}

.cu-input::placeholder { color: var(--cu-text-muted); }

.cu-input:focus {
    border-color: rgba(83, 254, 205, 0.5);
    box-shadow: 0 0 0 3px rgba(83, 254, 205, 0.08);
}

textarea.cu-input { resize: vertical; min-height: 90px; }

.cu-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.cu-hint { font-size: 12px; color: var(--cu-text-muted); margin-top: 5px; }

.cu-file-zone {
    border: 1px dashed rgba(83, 254, 205, 0.25);
    border-radius: var(--cu-radius-sm);
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    background: rgba(83, 254, 205, 0.02);
}

.cu-file-zone:hover {
    border-color: rgba(83, 254, 205, 0.5);
    background: rgba(83, 254, 205, 0.04);
}

.cu-file-zone input { display: none; }
.cu-file-icon { font-size: 26px; margin-bottom: 8px; opacity: 0.8; }
.cu-file-zone p { font-size: 13px; color: var(--cu-text-secondary); }
.cu-file-zone strong { color: var(--cu-cyan); }

.cu-submit-btn {
    width: 100%;
    padding: 13px;
    background: var(--cu-gradient);
    border: none;
    border-radius: var(--cu-radius-sm);
    color: #0a0e27;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
    letter-spacing: 0.5px;
    margin-top: 8px;
    font-family: inherit;
}

.cu-submit-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(83, 254, 205, 0.3);
}

.cu-privacy {
    margin-top: 12px;
    font-size: 12px;
    color: var(--cu-text-muted);
    text-align: center;
    line-height: 1.7;
}

.cu-privacy a { color: var(--cu-cyan); }
.cu-privacy a:hover { text-decoration: underline; }

/* ========== Sidebar ========== */
.cu-sidebar { display: flex; flex-direction: column; gap: 16px; }

/* Live Chat Card */
.cu-livechat-card {
    background: linear-gradient(135deg, rgba(44, 116, 201, 0.25) 0%, rgba(10, 14, 39, 0.9) 100%);
    border: 1px solid rgba(83, 254, 205, 0.2);
    border-radius: var(--cu-radius);
    padding: 26px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: var(--cu-shadow);
}

.cu-livechat-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(83, 254, 205, 0.15), transparent 70%);
    pointer-events: none;
}

.cu-online-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.cu-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--cu-cyan);
    box-shadow: 0 0 8px var(--cu-cyan);
    animation: cu-pulse 2s infinite;
    flex-shrink: 0;
}

@keyframes cu-pulse {
    0%, 100% { box-shadow: 0 0 4px var(--cu-cyan); }
    50%       { box-shadow: 0 0 14px var(--cu-cyan); }
}

.cu-online-text {
    font-size: 12px;
    font-weight: 700;
    color: var(--cu-cyan);
    letter-spacing: 0.3px;
}

.cu-livechat-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--cu-text-primary);
    margin-bottom: 8px;
    position: relative;
}

.cu-livechat-card p {
    font-size: 13px;
    color: var(--cu-text-secondary);
    margin-bottom: 18px;
    line-height: 1.65;
    position: relative;
}

.cu-chat-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 11px;
    background: var(--cu-gradient);
    border: none;
    border-radius: var(--cu-radius-sm);
    color: #0a0e27;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.cu-chat-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 4px 18px rgba(83, 254, 205, 0.3);
}

/* Info Card */
.cu-info-card {
    background: var(--cu-bg-card);
    border: 1px solid var(--cu-border);
    border-radius: var(--cu-radius);
    padding: 24px;
    backdrop-filter: blur(10px);
    box-shadow: var(--cu-shadow);
}

.cu-info-card h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--cu-text-primary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* Email row (non-link) */
.cu-info-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cu-info-row:last-child { border-bottom: none; padding-bottom: 0; }

.cu-info-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: rgba(83, 254, 205, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.cu-info-lbl {
    font-size: 10px;
    font-weight: 700;
    color: var(--cu-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cu-info-val {
    font-size: 13px;
    color: var(--cu-text-primary);
    margin-top: 2px;
    font-weight: 500;
}

/* Link rows */
a.cu-info-row {
    text-decoration: none;
    color: inherit;
    border-radius: var(--cu-radius-sm);
    margin: 0 -8px;
    padding-left: 8px;
    padding-right: 8px;
    transition: background 0.18s;
    cursor: pointer;
}

a.cu-info-row:hover { background: rgba(255, 255, 255, 0.04); }

.cu-info-arrow {
    font-size: 14px;
    color: var(--cu-text-muted);
    margin-left: auto;
    flex-shrink: 0;
    transition: transform 0.2s, color 0.2s;
}

a.cu-info-row:hover .cu-info-arrow {
    transform: translateX(3px);
    color: var(--cu-cyan);
}

/* Platform icon colors */
.cu-icon-discord { background: rgba(88, 101, 242, 0.15) !important; color: #7289DA; }
a.cu-info-row--discord:hover .cu-icon-discord { background: rgba(88, 101, 242, 0.28) !important; }
a.cu-info-row--discord:hover .cu-info-val { color: #7289DA; }

.cu-icon-youtube { background: rgba(255, 0, 0, 0.1) !important; color: #FF4444; }
a.cu-info-row--youtube:hover .cu-icon-youtube { background: rgba(255, 0, 0, 0.2) !important; }
a.cu-info-row--youtube:hover .cu-info-val { color: #FF4444; }

.cu-icon-whatsapp { background: rgba(37, 211, 102, 0.1) !important; color: #25D366; }
a.cu-info-row--whatsapp:hover .cu-icon-whatsapp { background: rgba(37, 211, 102, 0.2) !important; }
a.cu-info-row--whatsapp:hover .cu-info-val { color: #25D366; }

/* ========== Responsive ========== */
@media (max-width: 768px) {
    .cu-hero { padding: 36px 16px 32px; }
    .cu-hero h1 { font-size: 30px; }
    .cu-hero-stats { gap: 28px; }
    .cu-wrap { padding: 0 16px 60px; }
    .cu-form-card { padding: 20px; }
}

/* ========== Success Modal ========== */
#cu-success-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, .45);
    align-items: center;
    justify-content: center;
}
.cu-success-modal-box {
    background: #fff;
    border-radius: 12px;
    padding: 30px 22px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .18);
}
.cu-success-modal-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #d1fae5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.cu-success-modal-box >p {
    color: #000;
    margin-bottom: 20px;
}
.cu-success-modal-box h3 {
    margin: 0 0 10px;
    font-size: 20px;
    color: #111;
}
#cu-success-modal-msg {
    margin: 0 0 24px;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}
.cu-success-modal-btn {
    background: #10b981;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 32px;
    font-size: 15px;
    cursor: pointer;
}
