/* ================= index.css — Home page ================= */

/* ---- Hero ---- */
.hero {
    position: relative;
    padding: 120px 0 130px;
    color: var(--white);
    background-color: var(--blue-deep);
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background: url('../assets/img/hero-placeholder.jpg') center/cover no-repeat;
    z-index: 1;
}
.hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(rgba(40,52,138,0.85), rgba(40,52,138,0.85));
}
.hero-content { position: relative; z-index: 2; max-width: 820px; }
.hero h1 {
    color: var(--white);
    font-size: clamp(2.4rem, 5.4vw, 4rem);
    line-height: 1.1;
    margin-bottom: 22px;
}
.hero-sub {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
    max-width: 640px;
    margin: 0 auto 28px;
    line-height: 1.7;
}
.hero-badges { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-bottom: 34px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.18);
    padding: 8px 16px; border-radius: 30px; font-size: 0.9rem; font-weight: 500;
    backdrop-filter: blur(4px);
}
.hero-badge svg { width: 16px; height: 16px; color: var(--coral); }
.hero .cta-actions { justify-content: center; }
.hero-note { margin-top: 22px; font-size: 0.9rem; color: rgba(255,255,255,0.65); }

/* ---- Stats (pulled up over hero) ---- */
.stats-section { padding: 0; }
.stats-section .stats-row {
    margin-top: -60px;
    position: relative;
    z-index: 5;
    padding-bottom: 20px;
}
.stat { border-top: 3px solid var(--coral); }

/* ---- Intro ---- */
.intro-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center; }
.intro-text h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); color: var(--blue-deep); margin-bottom: 20px; }
.intro-text p { margin-bottom: 18px; color: var(--ink); }
.intro-signature {
    display: flex; flex-direction: column; margin: 24px 0 26px;
    padding-left: 18px; border-left: 3px solid var(--coral);
}
.sig-name { font-family: var(--font-heading); font-size: 1.2rem; color: var(--blue-deep); font-weight: 600; }
.sig-role { color: var(--coral); font-style: italic; }
.intro-image { position: relative; }
.intro-image img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; height: 460px; object-fit: cover; }
.intro-image-badge {
    position: absolute; bottom: -22px; left: -22px;
    background: #fff; border-radius: 14px; padding: 16px 20px;
    box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 12px;
    border-left: 4px solid var(--coral);
}
.intro-image-badge svg { width: 26px; height: 26px; color: var(--coral); flex-shrink: 0; }
.intro-image-badge strong { display: block; color: var(--blue-deep); font-size: 0.98rem; }
.intro-image-badge span { display: block; color: var(--muted); font-size: 0.82rem; }

/* ---- Services grid ---- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
    display: block; background: var(--white); padding: 34px 30px; border-radius: var(--radius);
    box-shadow: var(--shadow-sm); border: 1px solid var(--border); color: var(--ink);
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card h3 { color: var(--blue-deep); font-size: 1.22rem; margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: 0.96rem; }

/* ---- Features / why-us ---- */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.feature-box {
    background: var(--white); padding: 34px 30px; border-radius: var(--radius);
    box-shadow: var(--shadow-sm); border: 1px solid var(--border);
}
.feature-box h4 { color: var(--blue-deep); font-size: 1.12rem; margin-bottom: 10px; }
.feature-box p { color: var(--muted); font-size: 0.96rem; }

/* ---- Conditions ---- */
.chip-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.chip-large {
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2);
    padding: 12px 24px; border-radius: 30px; color: var(--white); font-weight: 500;
    transition: var(--transition);
}
.chip-large:hover { background: var(--coral); border-color: var(--coral); transform: translateY(-3px); }

/* ---- Testimonials ---- */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card {
    background: var(--white); padding: 34px; border-radius: var(--radius);
    box-shadow: var(--shadow-sm); border: 1px solid var(--border); position: relative;
}
.testimonial-card .stars { color: #f5b731; letter-spacing: 2px; margin-bottom: 14px; font-size: 1.05rem; }
.quote { font-size: 1.02rem; font-style: italic; color: var(--ink); margin-bottom: 18px; line-height: 1.7; }
.author { font-weight: 600; color: var(--blue); }

/* ---- Map ---- */
.map-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 50px; align-items: center; }
.map-info h2 { color: var(--blue-deep); font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 16px; }
.map-info h4 { color: var(--blue-deep); }

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .services-grid, .features-grid, .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
    .intro-grid, .map-grid { grid-template-columns: 1fr; gap: 40px; }
    .intro-image img { height: 360px; }
}
@media (max-width: 600px) {
    .hero { padding: 90px 0 100px; }
    .services-grid, .features-grid, .testimonial-grid { grid-template-columns: 1fr; }
    .stats-section .stats-row { margin-top: 30px; }
    .intro-image-badge { left: 12px; bottom: -18px; }
}
