/* SERVICES PAGE STYLES */

/* HERO SECTION */
.services-hero {
    position: relative;
    padding: 60px 0 40px;
    background: linear-gradient(90deg, rgba(17,17,17,0.95) 0%, rgba(17,17,17,0.8) 45%, rgba(17,17,17,0.3) 100%), url('images/brands/services/hero.webp');
    background-size: cover;
    background-position: center;
    color: white;
    min-height: 450px;
    display: flex;
    align-items: center;
}

.services-hero-content {
    max-width: 600px;
}

.services-breadcrumb {
    font-size: 12px;
    color: #bbb;
    margin-bottom: 15px;
    display: block;
    font-weight: 500;
}

.services-breadcrumb a { color: white; }

.services-hero h1 {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.services-hero h1 span {
    color: var(--primary);
}

.services-hero p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.5;
    margin-bottom: 30px;
    max-width: 500px;
}

.services-features-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.s-feature-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.s-feature-icon {
    width: 35px;
    height: 35px;
    background: transparent;
    border: 1.5px solid var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 16px;
}

.s-feature-text {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    color: white;
}

/* SERVICES SECTION */
.services-section {
    padding: 60px 0;
    background: var(--bg-white);
}

.services-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: end;
    margin-bottom: 40px;
}

.services-header-left .section-subtitle {
    margin-bottom: 10px;
}

.services-header-left h2 {
    font-size: 32px;
    line-height: 1.2;
}

.services-header-right p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 5px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid transparent;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-color: rgba(255, 90, 20, 0.3);
}

.s-card-img-wrap {
    height: 160px;
    position: relative;
    overflow: hidden;
}

.s-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .s-card-img-wrap img {
    transform: scale(1.05);
}

.s-card-icon {
    position: absolute;
    bottom: -20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 16px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 2;
}

.s-card-content {
    padding: 30px 20px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.s-card-content h3 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--secondary);
    text-transform: capitalize;
}

.s-card-content p {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 15px;
    flex-grow: 1;
}

.s-card-link {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-card:hover .s-card-link {
    gap: 12px;
}

/* EXPERIENCE STRIP */
.s-exp-strip {
    background: var(--secondary);
    padding: 60px 0;
}

.s-exp-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.s-exp-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.s-exp-icon {
    font-size: 32px;
    color: var(--primary);
}

.s-exp-text h3 {
    font-size: 28px;
    font-weight: 900;
    color: white;
    margin-bottom: 2px;
    line-height: 1;
}

.s-exp-text p {
    font-size: 12px;
    color: #aaa;
    margin: 0;
}

/* INDUSTRIES WE SERVE */
.s-industries {
    padding: 100px 0;
    background: white;
}

.s-ind-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: center;
}

.s-ind-text .section-subtitle {
    margin-bottom: 15px;
}

.s-ind-text h2 {
    font-size: 36px;
    line-height: 1.2;
}

.s-ind-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.s-ind-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 160px;
}

.s-ind-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.s-ind-card::before {
    content: '';
    position: absolute;
    top:0; left:0; width:100%; height:100%;
    background: linear-gradient(to top, rgba(17,17,17,0.9), rgba(17,17,17,0.2));
    z-index: 1;
}

.s-ind-card:hover img {
    transform: scale(1.1);
}

.s-ind-content {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    z-index: 2;
    text-align: center;
}

.s-ind-content i {
    color: var(--primary);
    font-size: 20px;
    margin-bottom: 8px;
    display: block;
}

.s-ind-content h4 {
    color: white;
    font-size: 12px;
    font-weight: 700;
}

/* CUSTOM CTA SECTION */
.s-cta {
    background: linear-gradient(90deg, var(--secondary) 0%, rgba(17,17,17,0.9) 40%, rgba(243,108,33,0.7) 100%), url('images/brands/services/hero.webp');
    background-size: cover;
    background-position: right center;
    padding: 80px 0;
    color: white;
    position: relative;
}

.s-cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M50 0 L100 50 L50 100 L0 50 Z" stroke="rgba(255,255,255,0.05)" fill="none"/></svg>');
    background-size: 60px;
    opacity: 0.5;
    pointer-events: none;
}

.s-cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.s-cta h2 {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.s-cta h2 span {
    color: var(--primary);
}

.s-cta p {
    font-size: 15px;
    color: #ddd;
    margin-bottom: 35px;
}

@media (max-width: 1400px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1200px) {
    .s-ind-wrapper { grid-template-columns: 1fr; }
    .s-ind-text { text-align: center; }
}

@media (max-width: 992px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .services-header { grid-template-columns: 1fr; gap: 20px; text-align: center; }
    .s-exp-container { flex-wrap: wrap; gap: 30px; justify-content: center; }
    .s-ind-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .services-hero h1 { font-size: 42px; }
    .services-features-list { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: 1fr; }
    .s-ind-grid { grid-template-columns: repeat(2, 1fr); }
    .s-cta h2 { font-size: 36px; }
}
