/* =====================================================
   contact.css — Profenaa Contact Page Styles
   Link AFTER style.css in your HTML
   ===================================================== */

/* ===== Page Hero ===== */
.contact-page-hero {
    margin-top: calc(70px + var(--announce-height));
    background: linear-gradient(135deg, #667eea 0%, #764ba2 60%, #06d6d0 100%);
    padding: 4rem 2rem 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.contact-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.contact-page-hero h1 {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.6rem;
    position: relative;
    letter-spacing: -0.5px;
}
.contact-page-hero h1 span { color: #a5f3fc; }

.contact-breadcrumb {
    position: relative;
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
}
.contact-breadcrumb a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: color 0.2s;
}
.contact-breadcrumb a:hover { color: #fff; text-decoration: underline; }

/* ===== Page Body ===== */
.contact-page-body {
    background: #f0f4ff;
    padding: 0 2rem 5rem;
}

/* ===== Main Card (split layout) ===== */
.contact-main-card {
    max-width: 1100px;
    margin: -3rem auto 0;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 24px 80px rgba(102,126,234,0.13);
    overflow: hidden;
    display: grid;
    grid-template-columns: 340px 1fr;
}

/* ===== Left Info Panel ===== */
.contact-info-panel {
    background: linear-gradient(160deg, #667eea 0%, #764ba2 55%, #4c1d95 100%);
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    overflow: hidden;
}
.contact-info-panel::before {
    content: '';
    position: absolute;
    bottom: -60px; right: -60px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    pointer-events: none;
}
.contact-info-panel::after {
    content: '';
    position: absolute;
    top: -40px; left: -40px;
    width: 150px; height: 150px;
    border-radius: 50%;
    background: rgba(6,214,208,0.12);
    pointer-events: none;
}
.panel-heading { position: relative; z-index: 1; }
.panel-heading h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}
.panel-heading p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-top: 0.3rem;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    position: relative;
    z-index: 1;
    flex: 1;
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.contact-info-item-icon {
    width: 42px; height: 42px;
    background: rgba(255,255,255,0.15);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: #a5f3fc;
    font-size: 1.1rem;
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.2);
}
.contact-info-item-text h4 {
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 0.2rem;
}
.contact-info-item-text p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.55;
}

.panel-social {
    display: flex;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
}
.panel-social a {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 0.95rem;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.25s ease;
}
.panel-social a:hover {
    background: #06d6d0;
    border-color: #06d6d0;
    transform: translateY(-3px);
}

/* ===== Right Form Panel ===== */
.contact-form-panel { padding: 3rem; }
.contact-form-panel h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 0.4rem;
    line-height: 1.35;
}
.contact-form-panel h2 span { color: #667eea; }
.contact-form-panel > p {
    color: #718096;
    font-size: 0.95rem;
    margin-bottom: 1.8rem;
}

.cp-form { display: flex; flex-direction: column; gap: 1.2rem; }

.cp-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.cp-group { display: flex; flex-direction: column; gap: 0.4rem; }

.cp-group label {
    font-size: 0.88rem;
    font-weight: 600;
    color: #374151;
}

.cp-group input,
.cp-group select,
.cp-group textarea {
    padding: 0.85rem 1.1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #1a202c;
    background: #fafafa;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    outline: none;
    width: 100%;
}
.cp-group input:focus,
.cp-group select:focus,
.cp-group textarea:focus {
    border-color: #667eea;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(102,126,234,0.1);
}
.cp-group input::placeholder,
.cp-group textarea::placeholder { color: #9ca3af; }
.cp-group textarea { resize: vertical; min-height: 110px; }
.cp-group select { cursor: pointer; }

.cp-submit {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(102,126,234,0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    width: fit-content;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}
.cp-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(102,126,234,0.4);
}
.cp-submit:active { transform: translateY(0); }

/* Success Toast */
.cp-toast {
    display: none;
    align-items: center;
    gap: 0.8rem;
    background: #ecfdf5;
    border: 2px solid #6ee7b7;
    border-radius: 10px;
    padding: 0.9rem 1.2rem;
    color: #065f46;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 0.4rem;
}
.cp-toast.show { display: flex; }
.cp-toast i { font-size: 1.2rem; color: #10b981; }

/* ===== Quick Info Strip ===== */
.contact-quick-strip {
    max-width: 1100px;
    margin: 2.5rem auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.quick-strip-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.8rem 1.5rem;
    text-align: center;
    box-shadow: 0 8px 24px rgba(102,126,234,0.08);
    border: 2px solid #e0e7ff;
    transition: all 0.3s ease;
}
.quick-strip-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(102,126,234,0.16);
    border-color: #667eea;
}
.quick-strip-card .qs-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: #fff;
    margin: 0 auto 1rem;
    box-shadow: 0 8px 20px rgba(102,126,234,0.3);
}
.quick-strip-card h4 {
    font-size: 1rem; font-weight: 700;
    color: #1a202c; margin-bottom: 0.4rem;
}
.quick-strip-card p {
    color: #718096; font-size: 0.88rem;
    line-height: 1.6; margin: 0;
}
.quick-strip-card a {
    color: #667eea; text-decoration: none; font-weight: 600;
}
.quick-strip-card a:hover { text-decoration: underline; }

/* ===== Map Section ===== */
.contact-map-section {
    max-width: 1100px;
    margin: 2.5rem auto 0;
}
.contact-map-section h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.contact-map-section h3 i { color: #667eea; }

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 50px rgba(102,126,234,0.15);
    border: 3px solid #e0e7ff;
}
.map-wrapper iframe {
    width: 100%;
    height: 420px;
    border: none;
    display: block;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .contact-main-card { grid-template-columns: 1fr; }
    .contact-info-panel { padding: 2.5rem 2rem; }
    .contact-form-panel { padding: 2.5rem 2rem; }
    .contact-quick-strip { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .contact-page-hero h1 { font-size: 2.2rem; }
    .contact-page-body { padding: 0 1rem 3rem; }
    .contact-quick-strip { grid-template-columns: 1fr; }
    .cp-row { grid-template-columns: 1fr; }
    .map-wrapper iframe { height: 300px; }
    .contact-main-card { margin-top: -1.5rem; }
}

@media (max-width: 480px) {
    .contact-page-hero h1 { font-size: 1.8rem; }
    .contact-form-panel { padding: 1.5rem 1.2rem; }
    .contact-info-panel { padding: 1.8rem 1.2rem; }
    .map-wrapper iframe { height: 240px; }
}