/* ============================================
   SHARED SERVICES CSS - All Service Pages
   Mobile First Responsive
   ============================================ */

/* ===== HERO ===== */
.svc-hero {
    min-height: 90vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0 60px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.svc-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%232c5aa0" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>') repeat;
    pointer-events: none;
}

.svc-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.svc-hero-left { animation: svcSlideLeft 0.9s ease-out both; }
.svc-hero-right { animation: svcSlideRight 0.9s ease-out both; }

.svc-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
    color: white;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 18px;
}

.svc-hero-left h1 {
    font-size: 1.9rem;
    font-weight: 700;
    line-height: 1.25;
    color: #2c5aa0;
    margin-bottom: 18px;
    opacity: 0;
    animation: svcFadeUp 0.9s ease-out 0.2s both;
}

.svc-hero-left h1 .highlight {
    color: #ff6b35;
    position: relative;
}

.svc-hero-left h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, #ff6b35, #ff8c42);
    border-radius: 2px;
    animation: svcExpand 1.5s ease-out 0.6s both;
}

.svc-hero-desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
    opacity: 0;
    animation: svcFadeUp 0.9s ease-out 0.4s both;
}

/* Stats row */
.svc-hero-stats {
    display: flex;
    gap: 15px;
    margin-bottom: 28px;
    flex-wrap: wrap;
    opacity: 0;
    animation: svcFadeUp 0.9s ease-out 0.5s both;
}

.svc-stat {
    background: white;
    padding: 12px 18px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    min-width: 80px;
    border-bottom: 3px solid #2c5aa0;
}

.svc-stat:nth-child(even) { border-bottom-color: #ff6b35; }

.svc-stat-num {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c5aa0;
    line-height: 1.2;
}

.svc-stat:nth-child(even) .svc-stat-num { color: #ff6b35; }

.svc-stat-lbl {
    display: block;
    font-size: 0.7rem;
    color: #888;
    font-weight: 500;
    margin-top: 2px;
}

/* Buttons */
.svc-hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    opacity: 0;
    animation: svcFadeUp 0.9s ease-out 0.7s both;
}

/* Image */
.svc-hero-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.svc-hero-img-wrap:hover { transform: scale(1.02); }

.svc-hero-img-wrap img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

/* Floating cards */
.svc-float-cards {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.svc-float-card {
    position: absolute;
    background: white;
    padding: 10px 16px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #333;
    animation: svcFloat 3s ease-in-out infinite;
    white-space: nowrap;
}

.svc-float-card i { font-size: 1rem; }
.sfc-1 { top: 18px; right: -10px; animation-delay: 0s; }
.sfc-1 i { color: #2c5aa0; }
.sfc-2 { bottom: 90px; left: -15px; animation-delay: 1s; }
.sfc-2 i { color: #ff6b35; }
.sfc-3 { top: 46%; right: -15px; animation-delay: 2s; }
.sfc-3 i { color: #2c5aa0; }

/* ===== SECTIONS ===== */
.svc-section { padding: 60px 0; }
.bg-light { background: #f8f9fa; }
.bg-white { background: white; }

.svc-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.svc-badge {
    display: inline-block;
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
    color: white;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.svc-section-header h2 {
    font-size: 1.7rem;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 10px;
    line-height: 1.3;
}

.svc-section-header h2 .highlight { color: #ff6b35; }
.svc-section-header p { color: #666; font-size: 0.95rem; }

/* ===== CARDS GRIDS ===== */
.svc-cards-4, .svc-cards-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.svc-card {
    background: white;
    padding: 28px 22px;
    border-radius: 14px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
    border-top: 4px solid #2c5aa0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.svc-card:nth-child(even) { border-top-color: #ff6b35; }
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 12px 35px rgba(0,0,0,0.12); }

.svc-card-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
}

.svc-card:nth-child(even) .svc-card-icon { background: linear-gradient(135deg, #ff6b35, #ff8c42); }
.svc-card-icon i { font-size: 1.4rem; color: white; }
.svc-card h3 { font-size: 1rem; color: #2c5aa0; margin-bottom: 10px; font-weight: 600; }
.svc-card:nth-child(even) h3 { color: #ff6b35; }
.svc-card p { color: #666; font-size: 0.88rem; line-height: 1.6; margin: 0; }

/* Reason cards */
.svc-reason-card {
    background: white;
    padding: 25px 20px;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.07);
    border-left: 4px solid #2c5aa0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.svc-reason-card:nth-child(even) { border-left-color: #ff6b35; }
.svc-reason-card:hover { transform: translateX(6px); box-shadow: 0 8px 28px rgba(0,0,0,0.1); }
.svc-reason-card i { font-size: 1.6rem; color: #2c5aa0; margin-bottom: 12px; display: block; }
.svc-reason-card:nth-child(even) i { color: #ff6b35; }
.svc-reason-card h3 { font-size: 1rem; color: #333; margin-bottom: 8px; font-weight: 600; }
.svc-reason-card p { color: #666; font-size: 0.88rem; line-height: 1.6; margin: 0; }

/* ===== TWO COLUMN LAYOUT ===== */
.svc-two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.svc-two-col-img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.svc-two-col-text h2 {
    font-size: 1.7rem;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 12px;
    line-height: 1.3;
}

.svc-two-col-text h2 .highlight { color: #ff6b35; }
.svc-two-col-text p { color: #666; font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; }

.svc-checklist { display: flex; flex-direction: column; gap: 12px; }

.svc-check-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: #444;
    line-height: 1.5;
}

.svc-check-item i { color: #2c5aa0; font-size: 1rem; margin-top: 2px; flex-shrink: 0; }

/* ===== PRODUCT RANGE ===== */
.svc-range-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.svc-range-card {
    background: white;
    padding: 25px 20px;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.07);
    transition: transform 0.3s ease;
}

.svc-range-card:hover { transform: translateY(-5px); }

.svc-range-icon {
    width: 50px; height: 50px;
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
}

.svc-range-card:nth-child(even) .svc-range-icon { background: linear-gradient(135deg, #ff6b35, #ff8c42); }
.svc-range-icon i { font-size: 1.2rem; color: white; }
.svc-range-card h3 { font-size: 1rem; color: #2c5aa0; margin-bottom: 12px; font-weight: 600; }
.svc-range-card ul { list-style: none; padding: 0; margin: 0; }
.svc-range-card ul li { color: #666; font-size: 0.88rem; padding: 5px 0; border-bottom: 1px solid #f5f5f5; }
.svc-range-card ul li:last-child { border-bottom: none; }
.svc-range-card ul li::before { content: '→ '; color: #ff6b35; font-weight: 700; }

/* ===== PROCESS STEPS ===== */
.svc-process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: center;
}

.svc-step {
    background: white;
    padding: 25px 20px;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.07);
    text-align: center;
    border-top: 4px solid #2c5aa0;
    transition: transform 0.3s ease;
}

.svc-step:nth-child(3) { border-top-color: #ff6b35; }
.svc-step:hover { transform: translateY(-5px); }

.svc-step-num {
    font-size: 2rem;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 10px;
    display: block;
}

.svc-step:nth-child(3) .svc-step-num { color: #ff6b35; }
.svc-step h3 { font-size: 1rem; color: #333; margin-bottom: 8px; font-weight: 600; }
.svc-step p { color: #666; font-size: 0.88rem; margin: 0; line-height: 1.5; }

.svc-step-arrow { display: none; }

/* ===== MARKET CARDS ===== */
.svc-market-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.svc-market-card {
    background: white;
    padding: 28px 22px;
    border-radius: 14px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
    border-top: 4px solid #2c5aa0;
    transition: transform 0.3s ease;
}

.svc-market-card:nth-child(even) { border-top-color: #ff6b35; }
.svc-market-card:hover { transform: translateY(-6px); }

.svc-market-icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
}

.svc-market-card:nth-child(even) .svc-market-icon { background: linear-gradient(135deg, #ff6b35, #ff8c42); }
.svc-market-icon i { font-size: 1.1rem; color: white; }
.svc-market-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.svc-market-card h3 a { color: #2c5aa0; text-decoration: none; font-weight: 600; }
.svc-market-card h3 a:hover { color: #ff6b35; }
.svc-market-card p { color: #666; font-size: 0.88rem; line-height: 1.5; margin-bottom: 14px; }
.svc-market-link { color: #ff6b35; font-size: 0.85rem; font-weight: 600; text-decoration: none; }
.svc-market-link:hover { text-decoration: underline; }

/* ===== BUYER GRID ===== */
.svc-buyer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.svc-buyer-card {
    background: #f8f9fa;
    padding: 25px 15px;
    border-radius: 14px;
    text-align: center;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.svc-buyer-card:hover {
    background: white;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-bottom-color: #ff6b35;
    transform: translateY(-5px);
}

.svc-buyer-card i { font-size: 1.8rem; color: #2c5aa0; margin-bottom: 12px; display: block; }
.svc-buyer-card:nth-child(even) i { color: #ff6b35; }
.svc-buyer-card h3 { font-size: 0.95rem; color: #333; font-weight: 600; margin-bottom: 6px; }
.svc-buyer-card p { color: #666; font-size: 0.82rem; margin: 0; line-height: 1.4; }

/* ===== CTA ===== */
.svc-cta {
    background: linear-gradient(135deg, #1a3a6b 0%, #2c5aa0 100%);
    padding: 70px 20px;
    text-align: center;
    color: white;
}

.svc-cta .container { max-width: 800px; margin: 0 auto; }
.svc-cta h2 { font-size: 1.7rem; font-weight: 700; margin-bottom: 12px; }
.svc-cta p { font-size: 1rem; opacity: 0.9; margin-bottom: 28px; }

.svc-cta-btns { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

.btn-secondary-white {
    background: transparent;
    color: white;
    padding: 13px 28px;
    border: 2px solid white;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary-white:hover {
    background: white;
    color: #2c5aa0;
    transform: translateY(-3px);
}

/* ===== ANIMATIONS ===== */
@keyframes svcFadeUp {
    from { opacity: 0; transform: translateY(25px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes svcSlideLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes svcSlideRight {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes svcExpand {
    from { width: 0; }
    to   { width: 100%; }
}
@keyframes svcFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

/* ===== RESPONSIVE ===== */
@media (min-width: 600px) {
    .svc-cards-4    { grid-template-columns: repeat(2, 1fr); }
    .svc-cards-3    { grid-template-columns: repeat(2, 1fr); }
    .svc-range-grid { grid-template-columns: repeat(2, 1fr); }
    .svc-market-grid { grid-template-columns: repeat(2, 1fr); }
    .svc-process-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
    .svc-hero-container { grid-template-columns: 1fr 1fr; gap: 60px; }
    .svc-hero-left h1 { font-size: 2.6rem; }
    .svc-hero-img-wrap img { height: 420px; }
    .svc-two-col { grid-template-columns: 1fr 1fr; gap: 60px; }
    .svc-section { padding: 80px 0; }
    .svc-section-header h2 { font-size: 2.1rem; }
    .svc-two-col-text h2 { font-size: 2rem; }
    .svc-cta h2 { font-size: 2rem; }
}

@media (min-width: 992px) {
    .svc-cards-4    { grid-template-columns: repeat(4, 1fr); }
    .svc-cards-3    { grid-template-columns: repeat(3, 1fr); }
    .svc-range-grid { grid-template-columns: repeat(4, 1fr); }
    .svc-market-grid { grid-template-columns: repeat(4, 1fr); }
    .svc-buyer-grid { grid-template-columns: repeat(4, 1fr); }
    .svc-process-steps {
        grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
        align-items: center;
    }
    .svc-step-arrow {
        display: flex;
        align-items: center;
        color: #2c5aa0;
        font-size: 1.2rem;
    }
}

@media (max-width: 600px) {
    .svc-hero { padding: 90px 0 40px; min-height: auto; }
    .svc-hero-container { padding: 0 15px; }
    .svc-hero-left h1 { font-size: 1.6rem; }
    .svc-hero-desc { font-size: 0.9rem; }
    .svc-hero-btns { flex-direction: column; align-items: flex-start; }
    .svc-hero-img-wrap img { height: 230px; }
    .svc-float-cards { display: none; }
    .svc-hero-stats { gap: 10px; }
    .svc-stat { padding: 10px 12px; min-width: 70px; }
}
