/* --- SHARED VARIABLES --- */
:root {
    --orange: #ffa500;
    --dark: #0f172a;
    --light-bg: #f8fafc;
    --radius-lg: 30px;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.section-padding { padding: 100px 0; }
.fw-800 { font-weight: 800; }
.ls-2 { letter-spacing: 2px; }
.text-outline-dark { color: transparent; -webkit-text-stroke: 1.5px var(--orange); }

/* --- CONTACT HEADER --- */
.contact-header { padding: 180px 0 60px; background: white; }

/* --- CONTACT WRAPPER --- */
.contact-main-wrapper {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(15, 23, 42, 0.08);
}

.contact-dark-panel {
    background: var(--dark);
    color: white;
    padding: 80px 60px;
}

.contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.icon-box {
    width: 55px; height: 55px;
    background: rgba(255,165,0,0.1);
    border: 1px solid rgba(255,165,0,0.3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 1.2rem;
    margin-right: 20px;
}

.contact-method small { color: #94a3b8; text-transform: uppercase; font-weight: 800; font-size: 0.7rem; letter-spacing: 1px; }
.contact-method p { font-size: 1.1rem; font-weight: 600; margin: 0; }

.social-grid-contact a {
    color: white;
    font-size: 1.3rem;
    margin-right: 30px;
    transition: var(--transition);
}

.social-grid-contact a:hover { color: var(--orange); transform: translateY(-3px); }

/* --- MODERN FORM --- */
.contact-form-panel { padding: 80px 60px; }

.floating-input {
    position: relative;
    margin-bottom: 10px;
}

.floating-input input, .floating-input textarea {
    width: 100%;
    padding: 15px 0;
    border: none;
    border-bottom: 2px solid #e2e8f0;
    background: transparent;
    outline: none;
    font-weight: 600;
    transition: 0.3s;
}

.floating-input label {
    position: absolute;
    top: 15px; left: 0;
    color: #94a3b8;
    pointer-events: none;
    transition: 0.3s;
    font-weight: 600;
}

.floating-input input:focus ~ label,
.floating-input input:not(:placeholder-shown) ~ label,
.floating-input textarea:focus ~ label,
.floating-input textarea:not(:placeholder-shown) ~ label {
    top: -10px;
    font-size: 0.75rem;
    color: var(--orange);
    font-weight: 800;
}

.floating-input input:focus, .floating-input textarea:focus {
    border-color: var(--orange);
}

.btn-submit-modern {
    background: var(--dark);
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 15px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    transition: var(--transition);
}

.btn-submit-modern:hover {
    background: var(--orange);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255,165,0,0.2);
}

/* --- FAQ ACCORDION --- */
.custom-faq .accordion-item { border: none; margin-bottom: 15px; border-radius: 15px; background: var(--light-bg); }
.custom-faq .accordion-button {
    background: transparent;
    font-weight: 800;
    color: var(--dark);
    padding: 25px;
    border-radius: 15px !important;
    box-shadow: none !important;
}
.custom-faq .accordion-button:not(.collapsed) { color: var(--orange); }

@media (max-width: 768px) {
    .contact-dark-panel, .contact-form-panel { padding: 40px 30px; }
    .contact-header { padding: 120px 0 40px; }
}