/* ══════════════════════════════════════════
   CONTACT PAGE - PREMIUM
   ══════════════════════════════════════════ */

/* ── Hero ── */
.pf-contact-hero {
    position: relative;
    background: linear-gradient(135deg, #072890 0%, #0a3ab8 40%, #051c66 100%);
    padding: 80px 0 60px;
    overflow: hidden;
    text-align: center;
    color: #fff;
}
.pf-contact-hero::before {
    content: '';
    position: absolute; top: -80px; right: -80px;
    width: 300px; height: 300px;
    background: rgba(255,255,255,.04);
    border-radius: 50%;
}
.pf-contact-hero::after {
    content: '';
    position: absolute; bottom: -100px; left: -60px;
    width: 350px; height: 350px;
    background: rgba(255,255,255,.03);
    border-radius: 50%;
}
.pf-contact-hero .container { position: relative; z-index: 1; }
.pf-contact-hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 30px; padding: 8px 20px;
    font-size: 13px; font-weight: 600;
    margin-bottom: 20px;
    animation: ctFadeInUp .6s ease both;
}
.pf-contact-hero-badge i { font-size: 14px; opacity: .8; }
.pf-contact-hero h1 {
    font-size: 38px; font-weight: 800;
    margin: 0 0 14px; line-height: 1.2;
    animation: ctFadeInUp .6s ease .1s both;
}
.pf-contact-hero p {
    font-size: 16px; opacity: .85;
    max-width: 560px; margin: 0 auto;
    line-height: 1.7;
    animation: ctFadeInUp .6s ease .2s both;
}
.pf-contact-hero-wave {
    position: absolute; bottom: -1px; left: 0; right: 0;
    line-height: 0;
}
.pf-contact-hero-wave svg { width: 100%; height: 50px; }

/* ── Animations ── */
@keyframes ctFadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes ctFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
@keyframes ctPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(7,40,144,.2); }
    50% { box-shadow: 0 0 0 12px rgba(7,40,144,0); }
}

/* ── Info Cards ── */
.pf-contact-info {
    padding: 60px 0 20px;
}
.pf-contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: -80px;
    position: relative; z-index: 2;
}
.pf-contact-info-card {
    background: #fff;
    border-radius: 18px;
    padding: 30px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(7,40,144,.08);
    border: 1px solid rgba(7,40,144,.06);
    transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s ease;
    animation: ctFadeInUp .5s ease both;
}
.pf-contact-info-card:nth-child(1) { animation-delay: .1s; }
.pf-contact-info-card:nth-child(2) { animation-delay: .15s; }
.pf-contact-info-card:nth-child(3) { animation-delay: .2s; }
.pf-contact-info-card:nth-child(4) { animation-delay: .25s; }
.pf-contact-info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(7,40,144,.14);
}
.pf-contact-info-icon {
    width: 60px; height: 60px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    font-size: 22px; color: #fff;
    transition: transform .3s ease;
}
.pf-contact-info-card:hover .pf-contact-info-icon {
    transform: scale(1.1) rotate(-5deg);
    animation: ctFloat 2s ease infinite;
}
.pf-contact-info-icon.address { background: linear-gradient(135deg, #072890, #1a4fd8); box-shadow: 0 4px 15px rgba(7,40,144,.3); }
.pf-contact-info-icon.phone { background: linear-gradient(135deg, #28a745, #34d058); box-shadow: 0 4px 15px rgba(40,167,69,.3); }
.pf-contact-info-icon.email { background: linear-gradient(135deg, #e30613, #ff4757); box-shadow: 0 4px 15px rgba(227,6,19,.3); }
.pf-contact-info-icon.hours { background: linear-gradient(135deg, #f59e0b, #fbbf24); box-shadow: 0 4px 15px rgba(245,158,11,.3); }
.pf-contact-info-card h4 {
    font-size: 15px; font-weight: 700; color: #1a1a2e;
    margin: 0 0 8px;
}
.pf-contact-info-card p {
    font-size: 13px; color: #7c8db5; margin: 0;
    line-height: 1.6;
}
.pf-contact-info-card a {
    color: #072890; text-decoration: none; font-weight: 600;
    transition: color .2s;
}
.pf-contact-info-card a:hover { color: #e30613; }

/* ── Main Section ── */
.pf-contact-main {
    padding: 40px 0 80px;
}
.pf-contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* ── Form Card ── */
.pf-contact-form-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 4px 20px rgba(7,40,144,.07);
    border: 1px solid rgba(7,40,144,.06);
    animation: ctFadeInUp .6s ease .3s both;
}
.pf-contact-form-title {
    font-size: 22px; font-weight: 800; color: #1a1a2e;
    margin: 0 0 6px;
    display: flex; align-items: center; gap: 10px;
}
.pf-contact-form-title::before {
    content: ''; width: 4px; height: 24px; border-radius: 2px;
    background: linear-gradient(180deg, #072890, #0a3ab8);
}
.pf-contact-form-subtitle {
    font-size: 13px; color: #7c8db5; margin: 0 0 28px;
    padding-left: 14px;
}

.pf-contact-form .pf-form-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
    margin-bottom: 16px;
}
.pf-contact-form .pf-form-group {
    margin-bottom: 16px;
}
.pf-contact-form .pf-form-group label {
    display: flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 600; color: #5a6785;
    margin-bottom: 6px; letter-spacing: .2px;
}
.pf-contact-form .pf-form-group label i {
    font-size: 13px; opacity: .6;
}
.pf-contact-form input,
.pf-contact-form select,
.pf-contact-form textarea {
    width: 100%;
    border: 1.5px solid #e4e8f1;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 14px;
    outline: none;
    color: #1a1a2e;
    background: #fafbff;
    transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
    box-sizing: border-box;
    font-family: inherit;
}
.pf-contact-form input:focus,
.pf-contact-form select:focus,
.pf-contact-form textarea:focus {
    border-color: #072890;
    box-shadow: 0 0 0 4px rgba(7,40,144,.08);
    background: #fff;
}
.pf-contact-form input::placeholder,
.pf-contact-form textarea::placeholder {
    color: #b0bbd5;
}
.pf-contact-form textarea {
    min-height: 140px;
    resize: vertical;
    line-height: 1.6;
}
.pf-contact-form select { cursor: pointer; }

.pf-contact-submit {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, #072890, #0a3ab8);
    color: #fff; border: none;
    border-radius: 12px;
    padding: 14px 32px;
    font-size: 14px; font-weight: 700;
    cursor: pointer;
    transition: transform .3s ease, box-shadow .3s ease;
    box-shadow: 0 4px 15px rgba(7,40,144,.3);
    position: relative; overflow: hidden;
    letter-spacing: .3px;
}
.pf-contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(7,40,144,.35);
}
.pf-contact-submit:active { transform: translateY(0); }
.pf-contact-submit i { font-size: 15px; }

/* Submit success/error states */
.pf-contact-submit.loading {
    pointer-events: none; opacity: .8;
}
.pf-contact-flash {
    margin-top: 14px; padding: 12px 16px;
    border-radius: 10px; font-size: 13px; font-weight: 500;
    display: none;
}
.pf-contact-flash.success {
    display: block;
    background: rgba(40,167,69,.08); color: #1b8a33;
    border: 1px solid rgba(40,167,69,.15);
}
.pf-contact-flash.error {
    display: block;
    background: rgba(227,6,19,.08); color: #c62828;
    border: 1px solid rgba(227,6,19,.15);
}

/* ── Map & Side Card ── */
.pf-contact-side {
    animation: ctFadeInUp .6s ease .4s both;
}
.pf-contact-map-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(7,40,144,.07);
    border: 1px solid rgba(7,40,144,.06);
    margin-bottom: 24px;
}
.pf-contact-map-card iframe {
    width: 100%; height: 280px; border: 0;
    filter: saturate(.85) contrast(1.05);
    transition: filter .3s;
}
.pf-contact-map-card:hover iframe { filter: saturate(1); }
.pf-contact-map-info {
    padding: 20px 24px;
}
.pf-contact-map-info h4 {
    font-size: 15px; font-weight: 700; color: #1a1a2e;
    margin: 0 0 8px;
    display: flex; align-items: center; gap: 8px;
}
.pf-contact-map-info h4 i { color: #072890; font-size: 16px; }
.pf-contact-map-info p {
    font-size: 13px; color: #7c8db5; margin: 0;
    line-height: 1.6;
}

/* Social card */
.pf-contact-social-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(7,40,144,.07);
    border: 1px solid rgba(7,40,144,.06);
}
.pf-contact-social-card h4 {
    font-size: 15px; font-weight: 700; color: #1a1a2e;
    margin: 0 0 16px;
    display: flex; align-items: center; gap: 8px;
}
.pf-contact-social-card h4 i { color: #072890; }
.pf-contact-socials {
    display: flex; gap: 10px; flex-wrap: wrap;
}
.pf-contact-socials a {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: #fff;
    transition: transform .3s ease, box-shadow .3s ease;
    text-decoration: none;
}
.pf-contact-socials a:hover {
    transform: translateY(-3px) scale(1.08);
}
.pf-contact-socials .sc-facebook { background: linear-gradient(135deg, #1877f2, #0d65d9); box-shadow: 0 3px 10px rgba(24,119,242,.3); }
.pf-contact-socials .sc-twitter { background: linear-gradient(135deg, #1da1f2, #0d8ddb); box-shadow: 0 3px 10px rgba(29,161,242,.3); }
.pf-contact-socials .sc-linkedin { background: linear-gradient(135deg, #0a66c2, #004182); box-shadow: 0 3px 10px rgba(10,102,194,.3); }
.pf-contact-socials .sc-whatsapp { background: linear-gradient(135deg, #25d366, #128c7e); box-shadow: 0 3px 10px rgba(37,211,102,.3); }
.pf-contact-socials .sc-instagram { background: linear-gradient(135deg, #e4405f, #c13584); box-shadow: 0 3px 10px rgba(228,64,95,.3); }
.pf-contact-socials a:hover { box-shadow: 0 6px 20px rgba(0,0,0,.15); }

/* ── FAQ Accordion ── */
.pf-contact-faq {
    padding: 0 0 80px;
}
.pf-contact-faq-title {
    text-align: center; margin-bottom: 36px;
    animation: ctFadeInUp .6s ease .5s both;
}
.pf-contact-faq-title h2 {
    font-size: 26px; font-weight: 800; color: #1a1a2e;
    margin: 0 0 8px;
}
.pf-contact-faq-title p {
    font-size: 14px; color: #7c8db5; margin: 0;
}
.pf-contact-faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}
.pf-ct-faq-item {
    background: #fff;
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(7,40,144,.05);
    border: 1px solid rgba(7,40,144,.06);
    border-left: 3px solid transparent;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    animation: ctFadeInUp .5s ease both;
}
.pf-ct-faq-item:nth-child(1) { animation-delay: .1s; }
.pf-ct-faq-item:nth-child(2) { animation-delay: .15s; }
.pf-ct-faq-item:nth-child(3) { animation-delay: .2s; }
.pf-ct-faq-item:nth-child(4) { animation-delay: .25s; }
.pf-ct-faq-item:nth-child(5) { animation-delay: .3s; }
.pf-ct-faq-item:nth-child(6) { animation-delay: .35s; }
.pf-ct-faq-item:hover {
    box-shadow: 0 6px 20px rgba(7,40,144,.1);
    transform: translateX(3px);
}
.pf-ct-faq-item.active {
    border-left-color: #072890;
    box-shadow: 0 6px 25px rgba(7,40,144,.12);
    transform: translateX(3px);
}
.pf-ct-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    cursor: pointer;
    background: none; border: none;
    width: 100%;
    text-align: left;
    font-size: 14px; font-weight: 700;
    color: #1a1a2e;
    font-family: inherit;
    transition: color .3s ease;
}
.pf-ct-faq-question:hover { color: #072890; }
.pf-ct-faq-item.active .pf-ct-faq-question { color: #072890; }
.pf-ct-faq-icon {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(7,40,144,.07);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: background .3s ease;
}
.pf-ct-faq-icon i {
    font-size: 12px;
    color: #072890;
    transition: transform .4s cubic-bezier(.4,0,.2,1), color .3s;
}
.pf-ct-faq-item.active .pf-ct-faq-icon { background: #072890; }
.pf-ct-faq-item.active .pf-ct-faq-icon i { color: #fff; transform: rotate(180deg); }
.pf-ct-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s cubic-bezier(.4,0,.2,1);
}
.pf-ct-faq-answer-inner {
    padding: 0 22px 20px;
    font-size: 13px;
    color: #7c8db5;
    line-height: 1.8;
    border-top: 1px solid rgba(7,40,144,.06);
    padding-top: 16px;
}
.pf-ct-faq-item.active .pf-ct-faq-answer { max-height: 400px; }

/* ── Responsive ── */
@media (max-width: 992px) {
    .pf-contact-info-grid { grid-template-columns: repeat(2, 1fr); }
    .pf-contact-layout { grid-template-columns: 1fr; }
    .pf-contact-faq-accordion { max-width: 100%; }
}
@media (max-width: 600px) {
    .pf-contact-info-grid { grid-template-columns: 1fr; margin-top: -40px; }
    .pf-contact-hero h1 { font-size: 28px; }
    .pf-contact-hero { padding: 60px 0 50px; }
    .pf-contact-form-card { padding: 24px; }
    .pf-contact-form .pf-form-row { grid-template-columns: 1fr; }
}
