/* =====================================================================
 *  GOLWEL SECURITY SERVICES  -  Public Pages Stylesheet
 *  Homepage sections, services, process timeline, industries
 * =================================================================== */

/* ----------  SHARED: SPLIT FEATURE ROW  ---------------------------- */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}
.split-media img { width: 100%; height: 100%; object-fit: cover; min-height: 360px; }
.split-media.framed {
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

/* image placeholder when no media uploaded */
.media-ph {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-900) 100%);
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.25);
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}
.media-ph::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(236,164,52,.18), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(236,164,52,.12), transparent 40%);
}
.media-ph i { position: relative; z-index: 1; }

/* ----------  HOMEPAGE: STATS STRIP  -------------------------------- */
.stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    overflow: hidden;
}
.stat-cell {
    background: var(--green);
    padding: 32px 24px;
    text-align: center;
}
.stat-cell .num {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
}
.stat-cell .lbl {
    margin-top: 8px;
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.78);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ----------  SERVICE CARDS GRID  ----------------------------------- */
.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.service-card .card-img-wrap {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--green-900);
    position: relative;
}
.service-card .card-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.service-card:hover .card-img-wrap img { transform: scale(1.06); }
.service-card .card-img-ph {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--green), var(--green-900));
    color: rgba(236, 164, 52, 0.4);
    font-size: 3rem;
}
.service-card .card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.service-card .card-body p { flex: 1; }
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--green);
    margin-top: 10px;
}
.service-link i { transition: transform .2s ease; }
.service-card:hover .service-link i { transform: translateX(4px); }

/* ----------  PROCESS TIMELINE  ------------------------------------- */
.timeline {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
    padding-left: 0;
}
.timeline::before {
    content: "";
    position: absolute;
    left: 31px; top: 12px; bottom: 12px;
    width: 2px;
    background: linear-gradient(var(--gold), var(--line));
}
.timeline-item {
    position: relative;
    padding: 0 0 36px 84px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-marker {
    position: absolute;
    left: 0; top: 0;
    width: 64px; height: 64px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--green);
    z-index: 1;
}
.timeline-step {
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-700);
}
.timeline-item h3 { margin: 4px 0 8px; }

/* horizontal process preview (homepage) */
.process-mini {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    counter-reset: pstep;
}
.process-mini-item {
    text-align: center;
    position: relative;
}
.process-mini-item .pnum {
    width: 52px; height: 52px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: var(--green-050);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.2rem;
    border: 2px solid var(--gold);
}
.process-mini-item h4 { font-size: 1.02rem; margin-bottom: 6px; }
.process-mini-item p { font-size: 0.88rem; }

/* ----------  INDUSTRIES GRID  -------------------------------------- */
.industry-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    transition: transform .25s ease, box-shadow .25s ease;
    height: 100%;
}
.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}
.industry-card .ind-icon {
    width: 54px; height: 54px;
    border-radius: 50%;
    background: var(--gold-050);
    color: var(--gold-700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 16px;
}
.industry-card h3 { font-size: 1.18rem; margin-bottom: 8px; }
.industry-card p { font-size: 0.92rem; margin-bottom: 0; }

/* ----------  TESTIMONIALS  ----------------------------------------- */
.testimonial-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}
.testimonial-card .quote-mark {
    font-family: var(--font-display);
    font-size: 3.4rem;
    line-height: 0.6;
    color: var(--gold-300);
    margin-bottom: 8px;
}
.testimonial-card .t-body {
    font-style: italic;
    color: var(--slate);
    flex: 1;
    margin-bottom: 18px;
}
.testimonial-card .stars { color: var(--gold); margin-bottom: 12px; font-size: .9rem; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--green);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 600;
    flex-shrink: 0;
    object-fit: cover;
}
.t-author .t-name { font-weight: 700; color: var(--ink); font-size: 0.95rem; }
.t-author .t-role { font-size: 0.82rem; color: var(--muted); }

/* ----------  SECURITY TIP CARD  ------------------------------------ */
.tip-banner {
    background: linear-gradient(120deg, var(--green) 0%, var(--green-900) 100%);
    border-radius: var(--radius-lg);
    padding: 44px;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.tip-banner::before {
    content: "\F470";
    font-family: "bootstrap-icons";
    position: absolute;
    right: -10px; bottom: -30px;
    font-size: 11rem;
    color: rgba(236, 164, 52, 0.1);
}
.tip-banner .pill { background: var(--gold); color: var(--green-900); }
.tip-banner h3 { color: #fff; margin: 14px 0 10px; position: relative; }
.tip-banner p { color: rgba(255, 255, 255, 0.85); position: relative; margin-bottom: 0; }

/* ----------  CTA BAND  --------------------------------------------- */
.cta-band {
    background:
        linear-gradient(rgba(0,42,0,.93), rgba(0,42,0,.93));
    background-color: var(--green);
    border-radius: var(--radius-lg);
    padding: 56px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.cta-band::after {
    content: "";
    position: absolute;
    left: -60px; top: -60px;
    width: 240px; height: 240px;
    background: radial-gradient(circle, rgba(236,164,52,.22), transparent 70%);
}
.cta-band h2 { color: #fff; margin-bottom: 12px; position: relative; }
.cta-band p { color: rgba(255,255,255,.85); position: relative; }
.cta-band .hero-actions { justify-content: center; position: relative; }

/* ----------  VALUE / FEATURE LIST  --------------------------------- */
.value-list li {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}
.value-list li:last-child { border-bottom: 0; }
.value-list .v-icon {
    width: 42px; height: 42px;
    border-radius: var(--radius-sm);
    background: var(--green-050);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}
.value-list .v-text strong {
    display: block;
    color: var(--ink);
    font-size: 1rem;
}
.value-list .v-text span { font-size: 0.9rem; color: var(--muted); }

/* check list */
.check-list li {
    display: flex;
    gap: 11px;
    margin-bottom: 12px;
    color: var(--slate);
    font-size: 0.95rem;
}
.check-list li i { color: var(--gold-700); margin-top: 3px; }

/* ----------  RESPONSIVE  ------------------------------------------- */
@media (max-width: 992px) {
    .split { grid-template-columns: 1fr; gap: 32px; }
    .split.reverse .split-media { order: 0; }
    .stats-strip { grid-template-columns: repeat(2, 1fr); }
    .process-mini { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .stats-strip { grid-template-columns: 1fr; }
    .process-mini { grid-template-columns: 1fr; }
    .tip-banner, .cta-band { padding: 32px 24px; }
    .timeline-item { padding-left: 70px; }
    .timeline-marker { width: 52px; height: 52px; font-size: 1.2rem; }
    .timeline::before { left: 25px; }
}

/* End of pages.css */
