/* ===== PAGE HERO ===== */
.page-hero {
    padding: 9rem 2rem 4rem;
    background: var(--white);
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(192,22,31,0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(10,94,53,0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.page-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: .4rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}
.breadcrumb a {
    font-size: .75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
    transition: color .2s;
}
.breadcrumb a:hover { color: var(--red); }
.breadcrumb .sep { font-size: .7rem; color: var(--gray-300); }
.breadcrumb .current { font-size: .75rem; font-weight: 700; color: var(--red); }
.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: .6rem;
    letter-spacing: -.02em;
}
.page-hero p {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.7;
}
.hero-stats-row {
    display: flex;
    gap: 2.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}
.hero-stat-val { font-size: 1.5rem; font-weight: 800; color: var(--red); }
.hero-stat-lbl { font-size: .72rem; font-weight: 600; color: var(--text-muted); margin-top: .1rem; }

/* ===== CONTACT MAIN ===== */
.contact-main { background: var(--white); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 3rem;
    align-items: start;
}

/* ===== LEFT INFO ===== */
.contact-info h3 { font-size: 1.3rem; font-weight: 800; color: var(--text); margin-bottom: .6rem; }
.contact-info > p { font-size: .88rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 1.5rem; }
.contact-details { list-style: none; display: flex; flex-direction: column; gap: .8rem; margin-bottom: 1.5rem; }
.contact-detail { display: flex; align-items: center; gap: .8rem; }
.cd-icon {
    width: 40px; height: 40px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cd-icon i { font-size: 1.1rem; }
.cd-icon-red { background: var(--red-light); }
.cd-icon-red i { color: var(--red); }
.cd-icon-green { background: var(--green-light); }
.cd-icon-green i { color: var(--green); }
.cd-label { font-size: .62rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .04em; }
.cd-value { font-size: .85rem; font-weight: 700; color: var(--text); }
.cd-value a { color: var(--red); text-decoration: none; transition: color .2s; }
.cd-value a:hover { color: var(--red-dark); }
.contact-img {
    height: 220px; background: var(--gray-100); border-radius: 14px;
    display: flex; align-items: center; justify-content: center; overflow: hidden;
    margin-top: 1.5rem; border: 1px solid var(--border);
}
.contact-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 14px; }
.contact-img .placeholder-inner { display: flex; flex-direction: column; align-items: center; gap: .5rem; color: var(--gray-400); }
.contact-img .placeholder-inner i { font-size: 2rem; }

/* ===== FORM ===== */
.contact-form {
    background: var(--gray-50); border-radius: 16px; padding: 2rem;
    border: 1px solid var(--border);
}
.contact-form h3 { font-size: 1.15rem; font-weight: 800; color: var(--text); margin-bottom: .2rem; }
.contact-form .form-sub { font-size: .82rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: .75rem; font-weight: 700; color: var(--text); margin-bottom: .35rem; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%; font-family: 'Open Sans', sans-serif; font-size: .85rem; color: var(--text);
    background: var(--white); border: 1.5px solid var(--border); padding: .65rem .9rem;
    border-radius: 10px; outline: none; transition: all .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--red); box-shadow: 0 0 0 3px rgba(192,22,31,0.08);
}
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 256 256'%3E%3Cpath d='M213.66,101.66l-80,80a8,8,0,0,1-11.32,0l-80-80A8,8,0,0,1,53.66,90.34L128,164.69l74.34-74.35a8,8,0,0,1,11.32,11.32Z' fill='%23A3A3A3'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right .9rem center; padding-right: 2.4rem;
}
.form-group textarea { min-height: 100px; resize: vertical; }
.form-submit {
    width: 100%; font-family: 'Open Sans', sans-serif; font-size: .88rem; font-weight: 700;
    color: var(--white); background: var(--red); padding: .75rem; border: none; border-radius: 10px;
    cursor: pointer; transition: all .2s; margin-top: .3rem;
    display: flex; align-items: center; justify-content: center; gap: .5rem;
}
.form-submit:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(192,22,31,.3); }
.form-submit.sent { background: var(--green); pointer-events: none; }

/* ===== QUICK CONTACT CARDS ===== */
.quick-contact { background: var(--gray-50); }
.quick-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.2rem; }
.quick-card {
    background: var(--white); border: 1px solid var(--border); border-radius: 14px;
    padding: 1.8rem; text-align: center; transition: all .3s;
    opacity: 0; transform: translateY(12px);
}
.quick-card.visible { opacity: 1; transform: translateY(0); }
.quick-card:hover {
    border-color: var(--gray-300); box-shadow: 0 6px 24px rgba(0,0,0,.06);
    transform: translateY(-3px);
}
.qc-icon {
    width: 56px; height: 56px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem;
}
.qc-icon i { font-size: 1.4rem; }
.qc-icon-red { background: var(--red-light); }
.qc-icon-red i { color: var(--red); }
.qc-icon-green { background: var(--green-light); }
.qc-icon-green i { color: var(--green); }
.quick-card h3 { font-size: 1rem; font-weight: 800; color: var(--text); margin-bottom: .4rem; }
.quick-card p { font-size: .82rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: .8rem; }
.quick-card .qc-link {
    font-size: .8rem; font-weight: 700; color: var(--red); text-decoration: none;
    display: inline-flex; align-items: center; gap: .3rem; transition: color .2s;
}
.quick-card .qc-link:hover { color: var(--red-dark); }

/* ===== MAP ===== */
.map-section { background: var(--white); padding: 0; }
.map-container {
    width: 100%; height: 380px; background: var(--gray-100);
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
}
.map-placeholder-inner { display: flex; flex-direction: column; align-items: center; gap: .8rem; color: var(--gray-400); }
.map-placeholder-inner i { font-size: 3rem; }
.map-placeholder-inner span { font-size: .82rem; font-weight: 600; }
.map-overlay {
    position: absolute; bottom: 1.5rem; left: 1.5rem;
    background: var(--white); border-radius: 12px; padding: 1.2rem 1.5rem;
    border: 1px solid var(--border); box-shadow: 0 4px 16px rgba(0,0,0,.06);
    display: flex; align-items: center; gap: .8rem; z-index: 2;
}
.map-overlay i { font-size: 1.3rem; color: var(--red); flex-shrink: 0; }
.map-overlay-text .mo-title { font-size: .88rem; font-weight: 800; color: var(--text); }
.map-overlay-text .mo-sub { font-size: .72rem; color: var(--text-secondary); }

/* ===== OFFICE HOURS ===== */
.office-hours { background: var(--gray-50); }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid var(--gray-100); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: .7rem 0; font-size: .85rem; }
.hours-table td:first-child { font-weight: 700; color: var(--text); width: 55%; }
.hours-table td:last-child { font-weight: 600; color: var(--text-secondary); text-align: right; }
.hours-table .today td { color: var(--green); font-weight: 800; }
.hours-info-box {
    background: var(--white); border: 1px solid var(--border); border-radius: 14px;
    padding: 1.8rem;
}
.hours-info-box h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: .8rem; display: flex; align-items: center; gap: .4rem; }
.hours-info-box h3 i { color: var(--green); }
.hours-info-box p { font-size: .85rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: .8rem; }
.hours-info-box ul { list-style: none; display: flex; flex-direction: column; gap: .4rem; }
.hours-info-box ul li {
    display: flex; align-items: center; gap: .5rem;
    font-size: .82rem; font-weight: 600; color: var(--text-secondary);
}
.hours-info-box ul li i { color: var(--green); font-size: .85rem; }

/* ===== BANNER ===== */
.banner {
    padding: 3rem 2rem; background: var(--green); position: relative; overflow: hidden;
}
.banner::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='.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.banner-inner {
    max-width: 1280px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    gap: 2rem; flex-wrap: wrap; position: relative; z-index: 1;
}
.banner-text h3 { font-size: 1.4rem; font-weight: 800; color: var(--white); margin-bottom: .3rem; }
.banner-text p { font-size: .88rem; color: rgba(255,255,255,.75); }

/* ===== BUTTONS ===== */
.btn-white { background: var(--white); color: var(--green); }
.btn-white:hover { background: var(--gray-100); }

/* ===== FAQ ===== */
.faq-section { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.faq-item {
    background: var(--gray-50); border: 1px solid var(--border); border-radius: 14px;
    padding: 1.5rem; transition: all .3s;
    opacity: 0; transform: translateY(12px);
}
.faq-item.visible { opacity: 1; transform: translateY(0); }
.faq-item:hover { border-color: var(--gray-300); box-shadow: 0 4px 16px rgba(0,0,0,.04); }
.faq-item h4 {
    font-size: .92rem; font-weight: 800; color: var(--text); margin-bottom: .5rem;
    display: flex; align-items: flex-start; gap: .5rem;
}
.faq-item h4 i { color: var(--red); font-size: 1rem; flex-shrink: 0; margin-top: .1rem; }
.faq-item p { font-size: .82rem; color: var(--text-secondary); line-height: 1.7; }

/* ===== ANIMATION DELAYS ===== */
.d1 { transition-delay: .06s; }
.d2 { transition-delay: .12s; }
.d3 { transition-delay: .18s; }
.d4 { transition-delay: .24s; }
.d5 { transition-delay: .30s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .hours-grid { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
    .page-hero { padding: 7rem 1.5rem 3rem; }
    .form-row { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .quick-cards { grid-template-columns: 1fr; }
    .hero-stats-row { gap: 1.5rem; flex-wrap: wrap; }
    .map-container { height: 280px; }
}
@media (max-width: 480px) {
    .hero-stats-row { flex-direction: column; gap: 1rem; }
}
