/* ==========================================
   CELLMEC SERVICES PAGE STYLES
   Professional & Comprehensive Design
   ========================================== */

.container-srv {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ==========================================
   HERO SECTION
   ========================================== */

.services-hero {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    padding: 140px 0 70px;
    background: var(--navy);
}

.services-hero-bg {
    position: absolute;
    inset: 0;
}

.overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--navy) 0%, #1a1534 100%);
}

.breadcrumb-srv {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-srv a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-srv a:hover {
    color: var(--white);
}

.breadcrumb-srv i {
    font-size: 9px;
}

.hero-content-srv {
    text-align: center;
    margin-bottom: 40px;
}

.hero-title-srv {
    font-size: 52px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 18px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.text-highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc-srv {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Hero Stats */
.hero-stats-srv {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item-srv {
    text-align: center;
}

.stat-number-srv {
    font-size: 48px;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-number-srv::after {
    content: '+';
    margin-left: 4px;
}

.stat-label-srv {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================
   SECTION HEADERS
   ========================================== */

.section-header-srv {
    margin-bottom: 50px;
}

.section-header-srv.center {
    text-align: center;
}

.section-label-srv {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(200, 162, 91, 0.1);
    border: 2px solid rgba(200, 162, 91, 0.2);
    border-radius: 50px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.section-label-srv.light {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.section-title-srv {
    font-size: 40px;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-title-srv.light {
    color: var(--white);
}

.section-desc-srv {
    font-size: 16px;
    color: var(--charcoal);
    line-height: 1.7;
    max-width: 800px;
}

.section-header-srv.center .section-desc-srv {
    margin: 0 auto;
}

.section-desc-srv.light {
    color: rgba(255, 255, 255, 0.85);
}

/* ==========================================
   SERVICE PROCESS TIMELINE
   ========================================== */

.service-process {
    padding: 80px 0;
    background: var(--white);
}

.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--gold), rgba(200, 162, 91, 0.3));
    transform: translateX(-50%);
}

.process-step {
    position: relative;
    margin-bottom: 60px;
}

.process-step:nth-child(odd) {
    padding-right: 50%;
    padding-left: 0;
    text-align: right;
}

.process-step:nth-child(even) {
    padding-left: 50%;
    padding-right: 0;
    text-align: left;
}

.step-number {
    position: absolute;
    top: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    color: var(--white);
    box-shadow: 0 0 0 8px var(--white), 0 0 0 12px rgba(200, 162, 91, 0.2);
    z-index: 2;
}

.process-step:nth-child(odd) .step-number {
    right: calc(50% - 30px);
}

.process-step:nth-child(even) .step-number {
    left: calc(50% - 30px);
}

.step-content {
    background: var(--warm-white);
    border: 2px solid var(--cool-gray);
    border-radius: 16px;
    padding: 30px;
    transition: var(--transition-smooth);
}

.process-step:nth-child(odd) .step-content {
    margin-right: 60px;
}

.process-step:nth-child(even) .step-content {
    margin-left: 60px;
}

.step-content:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(46, 38, 92, 0.1);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    margin-bottom: 20px;
}

.step-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
}

.step-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--charcoal);
    margin-bottom: 18px;
}

.step-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.step-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--charcoal);
    font-weight: 500;
}

.process-step:nth-child(odd) .step-features li {
    justify-content: flex-end;
}

.step-features i {
    color: var(--gold);
    font-size: 14px;
}

/* ==========================================
   CORE SERVICES SECTION
   ========================================== */

.core-services {
    padding: 80px 0;
    background: var(--warm-white);
}

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

.service-card-main {
    background: var(--white);
    border-radius: 16px;
    border: 2px solid var(--cool-gray);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.service-card-main:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(46, 38, 92, 0.15);
    border-color: var(--gold);
}

.service-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px;
    background: var(--warm-white);
    border-bottom: 2px solid var(--cool-gray);
}

.service-icon-main {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--white);
}

.service-badge {
    padding: 8px 18px;
    background: var(--navy);
    color: var(--white);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-badge.gold {
    background: var(--gradient-gold);
}

.service-card-body {
    padding: 30px;
}

.service-card-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 14px;
}

.service-card-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--charcoal);
    margin-bottom: 25px;
}

.service-highlights {
    margin-bottom: 25px;
}

.highlights-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.highlights-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--charcoal);
    font-weight: 500;
}

.highlights-list i {
    color: var(--gold);
    font-size: 12px;
}

.service-deliverables {
    padding-top: 20px;
    border-top: 2px solid var(--cool-gray);
}

.deliverables-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.deliverable-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    padding: 6px 14px;
    background: rgba(200, 162, 91, 0.1);
    border: 1px solid rgba(200, 162, 91, 0.3);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--navy);
}

/* ==========================================
   WHY CHOOSE SERVICES SECTION
   ========================================== */

.why-choose-services {
    padding: 80px 0;
    position: relative;
    background: var(--navy);
}

.why-bg {
    position: absolute;
    inset: 0;
}

.why-overlay {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(200, 162, 91, 0.1) 0%, transparent 70%);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(200, 162, 91, 0.2);
    border-radius: 16px;
    padding: 35px 30px;
    position: relative;
    transition: var(--transition-smooth);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
    transform: translateY(-5px);
}

.why-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 36px;
    font-weight: 900;
    color: rgba(200, 162, 91, 0.2);
    line-height: 1;
}

.why-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
    margin-bottom: 20px;
}

.why-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}

.why-text {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 18px;
}

.why-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.why-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.why-features i {
    color: var(--gold);
    font-size: 14px;
}

/* ==========================================
   INDUSTRIES SERVED SECTION
   ========================================== */

.industries-served {
    padding: 80px 0;
    background: var(--white);
}

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

.industry-card {
    background: var(--warm-white);
    border: 2px solid var(--cool-gray);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    transition: var(--transition-smooth);
}

.industry-card:hover {
    background: var(--white);
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(46, 38, 92, 0.1);
}

.industry-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
    margin-bottom: 20px;
}

.industry-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
}

.industry-desc {
    font-size: 13px;
    line-height: 1.6;
    color: var(--charcoal);
    margin: 0;
}

/* ==========================================
   SUCCESS STORIES / TESTIMONIALS
   ========================================== */

.success-stories {
    padding: 80px 0;
    background: var(--warm-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    border: 2px solid var(--cool-gray);
    border-radius: 16px;
    padding: 35px 30px;
    position: relative;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(46, 38, 92, 0.1);
}

.testimonial-quote {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 40px;
    color: rgba(200, 162, 91, 0.2);
    line-height: 1;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--charcoal);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding-top: 20px;
    border-top: 2px solid var(--cool-gray);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--white);
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 16px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 4px;
}

.author-position {
    font-size: 13px;
    color: var(--charcoal);
    margin: 0;
}

.testimonial-rating {
    display: flex;
    gap: 4px;
}

.testimonial-rating i {
    color: #FFC107;
    font-size: 16px;
}

/* ==========================================
   SERVICE GUARANTEES SECTION
   ========================================== */

.service-guarantees {
    padding: 80px 0;
    position: relative;
    background: var(--navy);
}

.guarantee-bg {
    position: absolute;
    inset: 0;
}

.guarantee-overlay {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(200, 162, 91, 0.1) 0%, transparent 70%);
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    position: relative;
    z-index: 2;
}

.guarantee-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(200, 162, 91, 0.2);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition-smooth);
}

.guarantee-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
    transform: translateY(-5px);
}

.guarantee-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
    margin-bottom: 20px;
}

.guarantee-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}

.guarantee-text {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 18px;
}

.guarantee-badge {
    display: inline-block;
    padding: 8px 18px;
    background: var(--gradient-gold);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================
   CTA SECTION
   ========================================== */

.services-cta {
    padding: 80px 0;
    background: var(--white);
}

.cta-content-srv {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 50px;
    background: var(--warm-white);
    border-radius: 20px;
    border: 2px solid var(--cool-gray);
}

.cta-icon-srv {
    width: 90px;
    height: 90px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    color: var(--white);
    margin-bottom: 25px;
}

.cta-title-srv {
    font-size: 38px;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.cta-text-srv {
    font-size: 16px;
    line-height: 1.7;
    color: var(--charcoal);
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons-srv {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.btn-srv-primary,
.btn-srv-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.btn-srv-primary {
    background: var(--gradient-gold);
    color: var(--white);
}

.btn-srv-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(200, 162, 91, 0.4);
    color: var(--white);
}

.btn-srv-secondary {
    background: var(--navy);
    color: var(--white);
    border: 2px solid var(--navy);
}

.btn-srv-secondary:hover {
    background: transparent;
    color: var(--navy);
    transform: translateY(-2px);
}

.cta-contact-info {
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
    padding-top: 30px;
    border-top: 2px solid var(--cool-gray);
}

.contact-item-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--charcoal);
}

.contact-item-cta i {
    color: var(--gold);
    font-size: 18px;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 1400px) {
    .container-srv {
        padding: 0 1.5rem;
    }
}

@media (max-width: 1200px) {
    .hero-title-srv {
        font-size: 46px;
    }

    .section-title-srv {
        font-size: 36px;
    }

    .services-grid {
        gap: 25px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .guarantees-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .services-hero {
        min-height: 400px;
        padding: 130px 0 60px;
    }

    .hero-title-srv {
        font-size: 40px;
    }

    .hero-desc-srv {
        font-size: 16px;
    }

    .hero-stats-srv {
        gap: 40px;
    }

    .stat-number-srv {
        font-size: 42px;
    }

    .service-process,
    .core-services,
    .why-choose-services,
    .industries-served,
    .success-stories,
    .service-guarantees,
    .services-cta {
        padding: 70px 0;
    }

    .section-title-srv {
        font-size: 32px;
    }

    .process-timeline::before {
        left: 30px;
    }

    .process-step {
        padding-left: 80px !important;
        padding-right: 0 !important;
        text-align: left !important;
    }

    .process-step .step-number {
        left: 0 !important;
        right: auto !important;
    }

    .process-step .step-content {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .highlights-list {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .guarantees-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container-srv {
        padding: 0 1rem;
    }

    .services-hero {
        padding: 120px 0 50px;
    }

    .hero-title-srv {
        font-size: 34px;
    }

    .hero-desc-srv {
        font-size: 15px;
    }

    .hero-stats-srv {
        flex-direction: column;
        gap: 30px;
    }

    .section-title-srv {
        font-size: 28px;
    }

    .section-desc-srv {
        font-size: 15px;
    }

    .service-card-header {
        padding: 20px;
    }

    .service-icon-main {
        width: 55px;
        height: 55px;
        font-size: 28px;
    }

    .service-card-body {
        padding: 25px;
    }

    .service-card-title {
        font-size: 22px;
    }

    .industries-grid {
        grid-template-columns: 1fr;
    }

    .cta-content-srv {
        padding: 50px 35px;
    }

    .cta-icon-srv {
        width: 80px;
        height: 80px;
        font-size: 38px;
    }

    .cta-title-srv {
        font-size: 32px;
    }

    .cta-buttons-srv {
        flex-direction: column;
    }

    .btn-srv-primary,
    .btn-srv-secondary {
        width: 100%;
        justify-content: center;
    }

    .cta-contact-info {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .hero-title-srv {
        font-size: 28px;
    }

    .stat-number-srv {
        font-size: 36px;
    }

    .section-title-srv {
        font-size: 24px;
    }

    .step-icon {
        width: 55px;
        height: 55px;
        font-size: 26px;
    }

    .step-title {
        font-size: 20px;
    }

    .why-icon,
    .industry-icon,
    .guarantee-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .cta-title-srv {
        font-size: 26px;
    }
}

/* ==========================================
   PRINT STYLES
   ========================================== */

@media print {
    .services-hero,
    .why-choose-services,
    .service-guarantees {
        background: var(--white) !important;
    }

    .overlay-gradient,
    .why-overlay,
    .guarantee-overlay {
        display: none !important;
    }
}

/* ==========================================
   ACCESSIBILITY
   ========================================== */

.btn-srv-primary:focus,
.btn-srv-secondary:focus {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
}