/* Contact Page Layout */
.ct-page {
    position: relative;
    padding-top: 120px;
    padding-bottom: 80px;
    min-height: 100vh;
}

/* Background (Consistent with About/Blogs) */
.ct-page::before {
    content:"";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(900px 520px at 12% 18%, rgba(255, 200, 90, .08), transparent 62%), radial-gradient(900px 560px at 88% 24%, rgba(95, 140, 255, .08), transparent 65%), radial-gradient(980px 700px at 70% 84%, rgba(140, 255, 210, .05), transparent 70%), radial-gradient(1400px 900px at 50% 55%, rgba(0,0,0,.40), rgba(0,0,0,.85) 66%), linear-gradient(180deg, #14140f, #0c0b09);
}

.ct-wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.ct-shell {
    position: relative;
    z-index: 1;
}

/* Header */
.ct-head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.ct-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    margin-bottom: 24px;
}

.ct-dot {
    width: 6px;
    height: 6px;
    background: #34d399;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(52, 211, 153, 0.4);
}

.ct-badge__text {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.8);
}

.ct-title {
    margin-top: 16px;
    font-size: clamp(34px, 4.5vw, 56px);
    font-weight: 900;
    letter-spacing: -0.7px;
    color: rgba(255,255,255,.92);
}

.ct-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}

/* Main Grid Layout */
.ct-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
    margin-top: 40px;
}

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

.ct-panel {
    min-width: 0;
}

/* Cards (Consistent with About) */
.ct-card {
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.06);
    box-shadow: 0 22px 70px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.08);
    backdrop-filter: blur(14px);
    padding: 32px;
    height: 100%;
}

/* Typography for Panels */
.ct-card__title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(to right, #fff, rgba(255,255,255,0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ct-card__desc {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 400px;
}

/* Status Indicator */
.ct-status {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    padding: 10px 14px;
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.2);
    border-radius: 12px;
    width: fit-content;
}

.ct-status__dot {
    width: 8px;
    height: 8px;
    background: #34d399;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.15);
    animation: pulse 2s infinite;
}

.ct-status__text {
    font-size: 13px;
    font-weight: 600;
    color: #34d399;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(52, 211, 153, 0); }
    100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

/* Contact Methods */
.ct-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ct-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ct-method:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.2);
    transform: translateX(4px);
}

.ct-method__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #38BDF8;
}

.ct-method__body {
    flex: 1;
}

.ct-method__label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 4px;
}

.ct-method__value {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}

.ct-method__chev {
    color: rgba(255,255,255,0.3);
    font-size: 20px;
}

/* Form Styling */
.ct-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ct-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.ct-field label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    margin-bottom: 8px;
}

.ct-control input,
.ct-control textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 14px 16px;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.ct-control textarea {
    min-height: 150px;
    resize: vertical;
}

.ct-control input:focus,
.ct-control textarea:focus {
    background: rgba(0, 0, 0, 0.3);
    border-color: #38BDF8;
    outline: none;
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.1);
}

.ct-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: rgba(255, 184, 0, .95);
    color: #000;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 8px;
}

.ct-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 184, 0, .2);
}

.ct-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.ct-submit__spinner {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(0,0,0,0.1);
    border-top-color: #000;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-right: 8px;
}

.ct-submit.is-loading .ct-submit__spinner {
    display: block;
}

@keyframes spin { to { transform: rotate(360deg); } }

.ct-meta {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    margin-top: 16px;
}

/* FAQ Section */
.ct-faq {
    margin-top: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.ct-faq-title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: #fff;
}

.ct-acc-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ct-acc-item:hover {
    border-color: rgba(255,255,255,0.15);
}

.ct-acc-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
}

.ct-acc-btn i {
    font-size: 20px;
    color: rgba(255,255,255,0.5);
    transition: transform 0.3s ease;
}

.ct-acc-item.is-open .ct-acc-btn i {
    transform: rotate(45deg);
    color: #34d399;
}

.ct-acc-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.ct-acc-body {
    padding: 0 24px 24px;
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    line-height: 1.6;
}

/* Toast Notification */
.ct-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 16px 24px;
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
    z-index: 100;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 400px;
}

.ct-toast.is-visible {
    transform: translateY(0);
    opacity: 1;
}

.ct-toast.success {
    border-left: 4px solid #34d399;
}

.ct-toast.error {
    border-left: 4px solid #f87171;
}

/* Animations */
.ct-anim {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: opacity, transform;
}

.ct-anim.is-in-view {
    opacity: 1;
    transform: translateY(0);
}

.ct-anim-item {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.ct-anim.is-in-view .ct-anim-item {
    opacity: 1;
    transform: translateY(0);
}

.ct-anim.is-in-view .ct-anim-item:nth-child(1) { transition-delay: 0.1s; }
.ct-anim.is-in-view .ct-anim-item:nth-child(2) { transition-delay: 0.2s; }
.ct-anim.is-in-view .ct-anim-item:nth-child(3) { transition-delay: 0.3s; }

.ct-delay-1 { transition-delay: 0.15s; }
.ct-delay-2 { transition-delay: 0.3s; }
.ct-delay-3 { transition-delay: 0.45s; }

@media (max-width: 768px) {
    .ct-card { padding: 24px; }
}
