/* CONTACT PAGE STYLES */

/* Shared */
.orange-text { color: #ff5a00; text-shadow: 0 0 30px rgba(255,90,0,0.4); }
.section-heading { font-family: 'Teko', sans-serif; font-size: clamp(40px, 6vw, 60px); font-weight: 400; text-transform: uppercase; color: #fff; line-height: 1; margin-bottom: 20px; }
.eyebrow { font-family: 'Outfit', sans-serif; font-size: 12px; font-weight: 500; letter-spacing: 2px; color: #ff5a00; margin-bottom: 15px; text-transform: uppercase; }

/* Hero */
.contact-hero { padding: 60px 0 60px 0; position: relative; overflow: hidden; min-height: 60vh; display: flex; align-items: center; }
.contact-ambient-glow { position: absolute; top: -10%; left: 0%; width: 100vw; height: 100vw; background: radial-gradient(circle at center, rgba(255,90,0,0.08) 0%, rgba(128,0,32,0.05) 30%, rgba(0,0,0,0) 60%); z-index: -1; animation: breathe 12s infinite alternate ease-in-out; }
@keyframes breathe { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(1.1); opacity: 1; } }
.contact-hero-content { max-width: 800px; }
.contact-hero-sub { font-family: 'Outfit', sans-serif; font-size: clamp(16px, 2vw, 20px); color: rgba(255,255,255,0.7); margin-top: 30px; line-height: 1.6; max-width: 600px; }

/* Contact Layout */
.contact-layout-section { padding: 100px 0; }
.contact-layout { display: flex; gap: 80px; align-items: flex-start; }
.contact-left { flex: 1; }
.cl-desc { font-family: 'Outfit', sans-serif; font-size: 16px; color: rgba(255,255,255,0.6); margin-bottom: 40px; }
.cl-availability { display: inline-flex; align-items: center; gap: 10px; font-family: 'Outfit', sans-serif; font-size: 11px; letter-spacing: 1px; color: #fff; background: rgba(255,255,255,0.05); padding: 8px 16px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.1); margin-bottom: 50px; }
.status-dot { width: 8px; height: 8px; background: #ff5a00; border-radius: 50%; box-shadow: 0 0 10px #ff5a00; animation: blink 1.5s infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.cl-rows { display: flex; flex-direction: column; gap: 20px; }
.cl-row { display: flex; flex-direction: column; gap: 5px; text-decoration: none; padding: 25px; border: 1px solid rgba(255,255,255,0.05); border-radius: 16px; background: rgba(0,0,0,0.3); transition: 0.3s; }
.cl-row:hover { background: rgba(255,90,0,0.05); border-color: rgba(255,90,0,0.2); transform: translateY(-3px); }
.cl-label { font-family: 'Outfit', sans-serif; font-size: 12px; color: #ff5a00; letter-spacing: 1px; }
.cl-value { font-family: 'Outfit', sans-serif; font-size: 20px; color: #fff; font-weight: 400; }

/* Form */
.contact-right { flex: 1.2; width: 100%; }
.glass-form { background: rgba(12,12,12,0.65); border: 1px solid rgba(255,255,255,0.08); border-radius: 24px; padding: 50px; backdrop-filter: blur(14px); display: flex; flex-direction: column; gap: 25px; }
.form-row { display: flex; gap: 20px; }
.form-row .form-group { flex: 1; }
.form-group { display: flex; flex-direction: column; gap: 10px; }
.form-group label { font-family: 'Outfit', sans-serif; font-size: 12px; color: rgba(255,255,255,0.6); letter-spacing: 1px; }
.optional { color: rgba(255,255,255,0.3); font-style: italic; }
.glass-form input, .glass-form textarea, .glass-form select { width: 100%; background: rgba(0,0,0,0.3); border: none; border-bottom: 1px solid rgba(255,255,255,0.1); color: #fff; font-family: 'Outfit', sans-serif; font-size: 16px; padding: 15px 0; outline: none; transition: 0.3s; border-radius: 0; appearance: none; }
.glass-form input::placeholder, .glass-form textarea::placeholder { color: rgba(255,255,255,0.2); }
.glass-form input:focus, .glass-form textarea:focus, .glass-form select:focus { border-bottom-color: #ff5a00; box-shadow: 0 10px 10px -10px rgba(255,90,0,0.2); }
.select-wrapper { position: relative; }
.select-wrapper::after { content: '\25BC'; position: absolute; right: 0; top: 50%; transform: translateY(-50%); color: #ff5a00; pointer-events: none; }
.glass-form select option { background: #111; color: #fff; }
.form-btn { width: 100%; justify-content: center; padding: 20px; font-size: 15px; margin-top: 10px; }

/* Discussion */

.cd-content { max-width: 600px; margin: 0 auto; }
.cd-desc { font-family: 'Outfit', sans-serif; font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 40px; }

/* FAQ */
.contact-faq { padding: 120px 0; }
.faq-wrapper { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.05); margin-bottom: 10px; }
.faq-q { padding: 25px 0; font-family: 'Teko', sans-serif; font-size: 24px; color: #fff; display: flex; justify-content: space-between; align-items: center; cursor: pointer; transition: 0.3s; }
.faq-q:hover { color: #ff5a00; }
.faq-icon { font-family: 'Outfit', sans-serif; font-size: 20px; color: #ff5a00; transition: 0.3s; }
.faq-a { font-family: 'Outfit', sans-serif; font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.6; padding-bottom: 25px; display: none; }
.faq-item.active .faq-a { display: block; }
.faq-item.active .faq-icon { transform: rotate(45deg); }

/* Final Moment */
.contact-final-moment { padding: 150px 0; position: relative; overflow: hidden; background: #030303; border-top: 1px solid rgba(255,255,255,0.05); }
.bg-giant-text { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-family: 'Teko', sans-serif; font-size: 30vw; font-weight: 500; color: rgba(255,255,255,0.02); white-space: nowrap; pointer-events: none; z-index: 1; }
.cfm-content { position: relative; z-index: 2; text-align: center; }
.cfm-heading { font-family: 'Teko', sans-serif; font-size: clamp(50px, 8vw, 100px); color: #fff; line-height: 1; margin-bottom: 60px; text-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.cfm-links { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.cfm-links a { font-family: 'Outfit', sans-serif; font-size: 16px; color: #ff5a00; font-weight: 500; text-decoration: none; letter-spacing: 2px; transition: 0.3s; border-bottom: 1px solid transparent; padding-bottom: 5px; }
.cfm-links a:hover { color: #fff; border-bottom-color: #ff5a00; }

/* Responsive */
@media (max-width: 1024px) {
    .contact-layout { flex-direction: column; gap: 50px; }
    .contact-right { width: 100%; }
}
@media (max-width: 768px) {
    .contact-hero { padding: 20px 0 40px 0; min-height: auto; }
    .glass-form { padding: 30px; }
    .form-row { flex-direction: column; gap: 20px; }
    .cfm-links { flex-direction: column; gap: 20px; }
}

/* Discussion & FAQ Merged */
.contact-discussion-faq { padding: 100px 0; background: #050505; border-top: 1px solid rgba(255,255,255,0.05); }
.cdf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: flex-start; }
.cdf-left { text-align: left; padding-right: 40px; }
.cdf-right { width: 100%; }

@media (max-width: 900px) {
    .cdf-grid { grid-template-columns: 1fr; gap: 60px; }
    .cdf-left { padding-right: 0; }
}
