/* ============================= */
/* INDUSTRIES SECTION */
/* ============================= */

.industries-section {
    background: #f8f9fb;
}

.industries-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.industry-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    text-align: center;
}

.industry-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.industry-card h4 {
    padding: 20px;
    font-size: 16px;
    font-weight: 600;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}


/* ========== SERVICES — BENTO GRID ========== */
.services-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}
.svc-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 26px 28px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.svc-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}
.svc-card:hover::after { transform: scaleX(1); }
.svc-card:hover { border-color: var(--blue); box-shadow: 0 8px 32px rgba(11,95,165,0.08); transform: translateY(-4px); }
.svc-card-wide { grid-column: span 2; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center; }
.svc-card-wide .svc-img { border-radius: 12px; overflow: hidden; height: 100%; min-height: 160px; }
.svc-card-wide .svc-img img { width: 100%; height: 100%; object-fit: cover; }
.svc-icon {
    width: 50px; height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 18px;
    background: linear-gradient(135deg, rgba(11,95,165,0.08), rgba(46,174,109,0.08));
    color: var(--blue);
}
.svc-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}
.svc-card p {
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.65;
}

/* ========== WHY US — SPLIT ========== */
.why-split {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}
.why-left .section-tag { margin-bottom: 12px; }

.why-list { display: flex; flex-direction: column; gap: 0; margin-top: 32px; }
.why-item {
    display: flex;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid var(--border);
    transition: all 0.25s;
}
.why-item:last-child { border-bottom: none; }
.why-item:hover { padding-left: 8px; }
.why-num {
    flex-shrink: 0;
    width: 40px; height: 40px;
    border-radius: 10px;
    background: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--blue);
    border: 1px solid var(--border);
    transition: all 0.25s;
}
.why-item:hover .why-num {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}
.why-item h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.why-item p { font-size: 0.88rem; color: var(--text-mid); }

.why-right {
    position: relative;
}
.why-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.why-img-grid img {
    width: 100%;
    border-radius: var(--radius);
    object-fit: cover;
}
.why-img-grid img:nth-child(1) { height: 260px; }
.why-img-grid img:nth-child(2) { height: 260px; margin-top: 40px; }
.why-img-grid img:nth-child(3) { height: 200px; grid-column: span 2; }

.why-float {
    position: absolute;
    bottom: 40px;
    left: -30px;
    background: var(--white);
    border-radius: 14px;
    padding: 20px 24px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid var(--border);
}
.why-float-icon {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--green-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    font-size: 1.1rem;
}
.why-float h5 { font-size: 0.92rem; font-weight: 700; }
.why-float p { font-size: 0.78rem; color: var(--text-light); }

/* ========== PROCESS ========== */
.process-section { background: var(--navy); overflow: hidden; padding: 100px 0; }
.process-track {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
}
.process-track::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: rgba(255,255,255,0.08);
}
.proc-step {
    text-align: center;
    padding: 0 15px;
    position: relative;
}
.proc-num {
    width: 56px; height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.15rem;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    transition: all 0.3s;
}
.proc-num.n1 { background: var(--blue); color: var(--white); }
.proc-num.n2 { background: rgba(11,95,165,0.3); color: var(--blue-light); border: 2px solid var(--blue); }
.proc-num.n3 { background: rgba(14,165,161,0.3); color: var(--teal); border: 2px solid var(--teal); }
.proc-num.n4 { background: rgba(46,174,109,0.3); color: var(--green-light); border: 2px solid var(--green); }
.proc-num.n5 { background: var(--green); color: var(--white); }
.proc-step:hover .proc-num { transform: scale(1.15); }
.proc-step h4 {
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.proc-step p {
    color: rgba(255,255,255,0.45);
    font-size: 0.85rem;
    line-height: 1.65;
}

/* ========== CTA BANNER ========== */
.cta-banner {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue-deep) 40%, var(--blue) 100%);
    padding: 72px 64px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(46,174,109,0.15);
}
.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -60px; left: 30%;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: rgba(14,165,161,0.1);
}
.cta-left { position: relative; z-index: 2; }
.cta-banner h2 {
    font-family: 'Instrument Serif', serif;
    font-size: 2.6rem;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 14px;
}
.cta-banner p {
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 460px;
}
.cta-btns { display: flex; gap: 12px; flex-wrap: wrap; position: relative; z-index: 2; }
.btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: #25D366;
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s;
}
.btn-wa:hover { background: #1EBE57; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.35); }

.cta-right {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.cta-info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    backdrop-filter: blur(10px);
}
.cta-info-icon {
    width: 42px; height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.cta-info-icon.blue { background: rgba(11,95,165,0.3); color: var(--blue-light); }
.cta-info-icon.green { background: rgba(46,174,109,0.3); color: var(--green-light); }
.cta-info-icon.teal { background: rgba(14,165,161,0.3); color: var(--teal); }
.cta-info-card h5 { color: var(--white); font-size: 0.9rem; font-weight: 600; }
.cta-info-card p { color: rgba(255,255,255,0.5); font-size: 0.82rem; }

/* CONTACT SECTION */
.contact-section {
    background: var(--dark);
    color: var(--white);
}

.contact-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.contact-info-box {
    max-width: 650px;
    width: 100%;
    background: rgba(255,255,255,0.03);
    padding: 40px;
    border-radius: 18px;
    backdrop-filter: blur(10px);
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(37, 211, 102, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #25D366;
}

.contact-item h4 {
    margin-bottom: 6px;
}

.contact-item a {
    color: var(--white);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--green-light);
}

.contact-cta {
    margin-top: 20px;
}

/* ============================= */
/* CONTACT — PROPER VERSION */
/* ============================= */

.contact-proper {
    background: var(--off-white);
}

.contact-proper-box {
    max-width: 700px;
    margin: 60px auto 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 36px;
    transition: all 0.3s ease;
}

.contact-proper-box:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}

.contact-proper-item {
    display: flex;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid var(--border);
}

.contact-proper-item:last-child {
    border-bottom: none;
}

.contact-proper-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--off-white);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-proper-item h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text);
}

.contact-proper-item p {
    font-size: 0.9rem;
    color: var(--text-mid);
    margin: 0;
}

.contact-proper-item a {
    color: var(--text);
    text-decoration: none;
}

.contact-proper-item a:hover {
    color: var(--blue);
}