/* ============================================
   FORLOP TECHNOLOGIES — Shared Icon & SEO Styles
   SVG-based icons, perfectly theme-matched
   ============================================ */

/* ---- ICON SYSTEM ---- */
.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon svg {
    display: block;
}

/* Service Icon Containers */
.svc-icon {
    width: 56px;
    height: 56px;
    border: 1.5px solid var(--border);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.svc-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--charcoal);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.3s;
}

.svc-icon-gold {
    background: var(--charcoal);
    border-color: var(--charcoal);
}

.svc-icon-gold svg {
    stroke: var(--gold);
}

/* Stat Icons */
.stat-icon-wrap {
    width: 48px;
    height: 48px;
    background: rgba(201, 169, 110, 0.1);
    border: 1px solid rgba(201, 169, 110, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
}

.stat-icon-wrap svg {
    width: 22px;
    height: 22px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Feature Icons */
.feat-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 2px;
}

.feat-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Process Step Icons */
.proc-icon {
    width: 40px;
    height: 40px;
    background: var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.proc-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Value Icons (dark bg) */
.val-icon {
    width: 52px;
    height: 52px;
    background: rgba(201, 169, 110, 0.12);
    border: 1px solid rgba(201, 169, 110, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.val-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Contact Icons */
.contact-icon {
    width: 44px;
    height: 44px;
    background: var(--cream-dark);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--charcoal);
    fill: none;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Arrow Icon (inline links) */
.arrow-icon {
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s;
}

a:hover .arrow-icon {
    transform: translateX(5px);
}

/* ---- HERO CARD ICONS ---- */
.hero-card-icon {
    width: 44px;
    height: 44px;
    background: var(--cream-dark);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    transition: var(--transition);
}

.hero-card-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--charcoal);
    fill: none;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-card:hover .hero-card-icon {
    background: var(--charcoal);
    border-color: var(--charcoal);
}

.hero-card:hover .hero-card-icon svg {
    stroke: var(--gold);
}

/* ---- TECH STACK ICONS ---- */
.tech-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ---- MARQUEE ICON DOT ---- */
.marquee-dot {
    display: inline-flex;
    align-items: center;
}

.marquee-dot svg {
    width: 6px;
    height: 6px;
    fill: var(--gold);
}

/* ---- FAQ ICON ---- */
.faq-icon {
    width: 28px;
    height: 28px;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.faq-icon svg {
    width: 14px;
    height: 14px;
    stroke: var(--charcoal);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ---- DARK SECTION OVERRIDES ---- */
.section-dark .svc-icon,
.section-dark .contact-icon {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.12);
}

.section-dark .svc-icon svg,
.section-dark .contact-icon svg {
    stroke: var(--cream);
}
