/* =============================================
   SERVICES PAGE — services-new.css
   HRN Tech Solutions
   ============================================= */

/* ---- Hero ---- */
.srv-hero {
    position: relative;
    padding-top: 8rem;
    padding-bottom: 5rem;
    overflow: hidden;
    background: #030508;
}

.srv-scroll-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-decoration: none;
}
.srv-scroll-btn:hover {
    background: #00f2fe;
    color: #030508;
    border-color: #00f2fe;
    box-shadow: 0 0 25px rgba(0, 242, 254, 0.4);
    transform: translateY(-3px);
}
.srv-scroll-btn i { animation: bounce 1.5s ease-in-out infinite; }
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(4px); }
}

/* ---- Section Shared ---- */
.section-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: rgba(255,255,255,0.4);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}
.label-line {
    width: 40px;
    height: 1px;
    background: rgba(255,255,255,0.2);
}
.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: #fff;
}
.section-subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.5);
    max-width: 500px;
    margin: 0 auto;
}

/* ---- Overview Cards ---- */
.srv-overview-section { padding: 80px 0; }
.srv-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
@media (max-width: 992px) { .srv-cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .srv-cards-grid { grid-template-columns: 1fr; } }

.srv-overview-card {
    position: relative;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    padding: 32px 28px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: block;
    text-decoration: none;
}
.srv-overview-card:hover {
    border-color: rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.04);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    color: inherit;
}
.srv-overview-card:hover .srv-card-glow {
    opacity: 0.35;
}
.srv-overview-card:hover .srv-card-arrow {
    transform: translateX(4px);
}
.srv-card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 80%, var(--glow-color) 0%, transparent 65%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}
.srv-card-icon {
    width: 48px; height: 48px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: var(--icon-color);
    margin-bottom: 20px;
    transition: transform 0.3s, background 0.3s;
}
.srv-overview-card:hover .srv-card-icon { 
    transform: scale(1.06); 
    background: rgba(255,255,255,0.06);
}
.srv-overview-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
.srv-overview-card p {
    font-size: 0.87rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    margin-bottom: 20px;
}
.srv-card-arrow {
    color: rgba(255,255,255,0.3);
    font-size: 0.9rem;
    display: inline-block;
    transition: transform 0.3s, color 0.3s;
}
.srv-overview-card:hover .srv-card-arrow { color: #fff; }

/* ---- Detail Sections ---- */
.srv-detail-section { padding: 80px 0; }
.srv-detail-row { gap: 20px 0; }
.srv-detail-row-reverse { flex-direction: row-reverse; }
@media (max-width: 991px) {
    .srv-detail-row-reverse { flex-direction: column; }
}

.srv-detail-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.srv-detail-title {
    font-size: clamp(1.7rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}
.srv-detail-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.75;
    margin-bottom: 28px;
}
.srv-features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 28px;
}
.srv-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.75);
    font-size: 0.92rem;
    margin-bottom: 12px;
}
.srv-features-list li i { font-size: 0.8rem; flex-shrink: 0; }
.srv-tech-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 30px;
}
.srv-tech-pills span {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    padding: 5px 14px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
}
.srv-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    padding: 13px 26px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.25s;
    cursor: pointer;
    text-decoration: none;
}
.srv-cta-btn:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
    transform: translateY(-2px);
}

/* Visual Card */
.srv-detail-visual { display: flex; align-items: center; justify-content: center; }
.srv-visual-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 28px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    transition: border-color 0.3s;
}
.srv-visual-card:hover {
    border-color: color-mix(in srgb, var(--card-accent) 30%, transparent);
}
.srv-visual-icon-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.srv-big-icon {
    font-size: 6rem;
    position: relative;
    z-index: 1;
}
.srv-visual-stats {
    display: flex;
    gap: 0;
    width: 100%;
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 24px;
}
.visual-stat {
    flex: 1;
    text-align: center;
    padding: 0 10px;
    border-right: 1px solid rgba(255,255,255,0.07);
}
.visual-stat:last-child { border-right: none; }
.vstat-num {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}
.vstat-label {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ---- Process Section ---- */
.srv-process-section { padding: 80px 0; }
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    margin-top: 20px;
}
.process-connector {
    position: absolute;
    top: 50px;
    left: calc(12.5% + 24px);
    right: calc(12.5% + 24px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), rgba(255,255,255,0.15), transparent);
    z-index: 0;
}
@media (max-width: 768px) {
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .process-connector { display: none; }
}
@media (max-width: 480px) {
    .process-steps { grid-template-columns: 1fr; }
}
.process-step {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 32px 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    transition: all 0.3s;
}
.process-step:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-4px);
}
.process-step-num {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.25);
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}
.process-step-icon {
    width: 56px; height: 56px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: rgba(255,255,255,0.7);
    margin: 0 auto 16px;
}
.process-step h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
.process-step p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.6;
}

/* ---- FAQ Section ---- */
.srv-faq-section { padding: 80px 0; }
.srv-faq-list { display: flex; flex-direction: column; gap: 12px; }
.srv-faq-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.3s;
}
.srv-faq-item.active { border-color: rgba(255,255,255,0.2); }
.srv-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: transparent;
    border: none;
    padding: 20px 24px;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: color 0.2s;
}
.srv-faq-question:hover { color: rgba(255,255,255,0.8); }
.srv-faq-icon {
    flex-shrink: 0;
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
    transition: transform 0.3s, color 0.3s;
}
.srv-faq-item.active .srv-faq-icon { color: #fff; }
.srv-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.srv-faq-answer p {
    padding: 0 24px 20px;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

/* ---- Final CTA ---- */
.srv-final-cta { padding: 40px 0 80px; }
.srv-cta-banner {
    position: relative;
    background: linear-gradient(135deg, rgba(18, 20, 29, 0.95) 0%, rgba(8, 9, 13, 0.98) 100%);
    border: 1px solid rgba(0, 242, 254, 0.3);
    border-radius: 28px;
    padding: 60px 50px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(0, 242, 254, 0.12);
}
.srv-cta-banner-glow {
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.18) 0%, transparent 70%);
    top: -150px; right: -100px;
    border-radius: 50%;
    pointer-events: none;
}
.srv-cta-banner-title {
    font-size: clamp(1.8rem, 3.2vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 12px;
}
.srv-cta-banner-sub {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.05rem;
    line-height: 1.7;
}
.srv-final-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #00f2fe;
    color: #030508 !important;
    padding: 16px 34px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    box-shadow: 0 0 25px rgba(0, 242, 254, 0.35);
    transition: all 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
}
.srv-final-btn:hover {
    background: #4facfe;
    color: #030508 !important;
    transform: translateY(-3px);
    box-shadow: 0 0 35px rgba(0, 242, 254, 0.6);
}
@media (max-width: 992px) {
    .srv-cta-banner { padding: 40px 28px; }
}
