/* --- WESERVE.HTML SPECIFIC STYLES --- */

:root {
    --primary-blue: #0056b3;
    /* Bold blue */
    --secondary-amber: #f59e0b;
    /* Orange/amber */
    --accent-green: #10b981;
    /* Green */
    --dark-navy: #0f172a;
    /* Dark navy */
    --light-gray: #f3f4f6;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--dark-navy);
}

/* --- HERO SECTION --- */
.weserve-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
    justify-content: space-between;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark-navy);
}

.hero-text .subheadline {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-image {
    flex: 1;
    max-width: 600px;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* --- LOGO SLIDER --- */
.logo-slider {
    margin-top: 50px;
    width: 100%;
    height: 80px;
    overflow: hidden;
    position: relative;
    background: transparent;
    display: flex;
    align-items: center;
}

.logo-slide-track {
    display: flex;
    width: calc(180px * 24); /* 12 logos * 2 sets */
    animation: scroll 30s linear infinite;
}

.slide {
    height: 80px;
    width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
}

.slide img {
    max-height: 40px;
    max-width: 140px;
    width: auto;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s ease;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-180px * 12)); }
}

/* --- SECTION 1: WHO WE HELP --- */
.who-we-help {
    padding: 50px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.help-card {
    text-align: center;
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 40px 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.help-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-blue);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: rgb(209, 209, 209);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: black;
    margin: 0 auto 25px;
}

.help-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.card-meta {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.card-meta div {
    margin-bottom: 5px;
}

.pain-point {
    font-style: italic;
    color: #000000;
    margin-bottom: 15px;
    font-size: 1.35rem;
}

.solution-point {
    color: rgb(0, 0, 0);
    font-weight: 600;
    font-size: 1.35rem;
}

/* --- SECTION 2: INDUSTRIES --- */
.industries-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px;
}

@media (max-width: 992px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 576px) {
    .industries-grid {
        grid-template-columns: 1fr !important;
    }
}

.industry-card {
    text-align: center;
    align-items: center;
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid transparent;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.industry-card.construction:hover {
    border-bottom-color: #adadad;
}

.industry-card.warehouse:hover {
    border-bottom-color: #adadad;
}

.industry-card.manufacturing:hover {
    border-bottom-color: #adadad;
}

.industry-card.hospitality:hover {
    border-bottom-color: #adadad;
}

.industry-card.healthcare:hover {
    border-bottom-color: #adadad;
}

.industry-card.transport:hover {
    border-bottom-color: #adadad;
}

.industry-icon {
    font-size: 4.5rem;
    margin-bottom: 20px;
    color: black;
}

.industry-card h3 {
    margin-bottom: 15px;
}

.industry-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.industry-card li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 1.5rem;
    color: var(--text-light);
}

.industry-card li::before {
    /* content: '•'; */
    color: black;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* --- SECTION 3: CHALLENGES --- */
.challenges-section {
    padding: 50px 0;
    background: var(--dark-navy);
    color: var(--white);
}

.challenges-section h2 {
    color: var(--white);
    text-align: center;
    margin-bottom: 60px;
}

.checklist-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.challenge-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 0;
    /* Removing bottom margin as grid gap handles spacing */
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    transition: background 0.3s ease;
    height: 100%;
    /* Ensure equal height */
}

.challenge-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.check-box {
    width: 24px;
    height: 24px;
    border: 2px solid var(--white);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.check-box i {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.challenge-item:hover .check-box i {
    opacity: 1;
}

.challenge-text {
    font-size: 1.35rem;
}

.challenge-cta {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 50px;
}

@media (max-width: 768px) {
    .checklist-container {
        grid-template-columns: 1fr;
    }
}

/* --- SECTION 4: TRANSFORMATION --- */
.transformation-section {
    padding: 50px 0;
}

.transform-split {
    display: flex;
    max-width: 1000px;
    margin: 0 auto;
    gap: 40px;
    /* Space between columns */
    justify-content: center;
}

.transform-col {
    flex: 1;
    background: var(--light-gray);
    border-radius: 12px;
    padding: 30px;
}

.transform-col h3 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 2.5rem;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 15px;
}

.transform-col.before h3 {
    color: #ef4444;
}

.transform-col.after h3 {
    color: var(--accent-green);
}

.t-item {
    position: relative;
    padding: 15px 0 15px 40px;
    font-size: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.t-item:last-child {
    border-bottom: none;
}

.transform-col.before .t-item::before {
    font-family: 'boxicons';
    content: '\ea18';
    /* x circle */
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #ef4444;
    font-size: 1.5rem;
}

.transform-col.after .t-item::before {
    font-family: 'boxicons';
    content: '\ea11';
    /* check circle */
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-green);
    font-size: 1.5rem;
    font-weight: bold;
}

@media (max-width: 768px) {
    .transform-split {
        flex-direction: column;
        gap: 30px;
    }
}




/* --- SECTION 5: SUITABILITY --- */

/* 4. REVIEWS & SLIDER FIXES */
.review-section {
    background-color: wheat;
    padding: 30px 0;
    /* Reduced top/bottom padding */
}

.review-section .section-title {
    color: #000000 !important;
    margin-bottom: 40px;
}

/* Specific Slider Container */
.testimonialSwiper {
    width: 100%;
    padding-bottom: 40px !important;
    /* Space for dots at bottom */
}

/* The Slide Wrapper */
.testimonialSwiper .swiper-slide {
    height: auto;
    /* Let content dictate height */
    display: flex;
    /* Ensures card stretches to fill height */
    justify-content: center;
}

/* The Card Itself */
.testimonial-card {
    /* background: var(--light-gray); */
    padding: 25px;
    border: 1px solid #f3f3f3;
    /* Tighter padding */
    border-radius: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Pushes content apart nicely */
    width: 100%;
    max-width: 500px;
    /* Prevents cards from getting too wide on huge screens */
    height: 100%;
    /* Ensures equal height in row */
}

.testimonial-card:hover {
    background: var(--light-gray);
}

.testimonial-card p {
    color: #000000;
    text-align: justify;
    font-size: 1.5rem;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
    /* Pushes name to bottom */
}

.reviewer-info h4 {
    color: #000000;
    font-size: 1.5rem;
    margin-bottom: 2px;
}

.reviewer-info span {
    color: var(--primary-blue);
    font-size: 1.5rem;
    font-weight: 600;
}

.stars {
    color: #f1c40f;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

/* Pagination Dots */
.testimonialSwiper .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.3;
    width: 8px;
    height: 8px;
}

.testimonialSwiper .swiper-pagination-bullet-active {
    background: var(--primary-blue);
    opacity: 1;
    width: 20px;
    /* Elongated active dot */
    border-radius: 5px;
}



/* --- RESPONSIVE UPDATE (Paste this at the bottom of css/industry1.css) --- */
@media (max-width: 768px) {

    /* Add side padding to container specifically for mobile */
    .container {
        padding-left: 25px;
        padding-right: 25px;
    }

    .pain-section .section-title {
        font-size: 2rem;
        /* Slightly smaller title on mobile */
    }

    .ind-hero h1 {
        font-size: 2.5rem;
    }

    .feature-row,
    .feature-row.reverse {
        flex-direction: column;
    }

    .featured-quote {
        padding: 30px 20px;
        /* Better padding for quote box on mobile */
    }

    .quote-text {
        font-size: 1.3rem;
    }

    .ind-hero {
        padding-top: 100px;
    }
}



/* --- SECTION 6: SUITABILITY --- */
.suitability-section {
    padding: 50px 0;
}

.accordion-container {
    max-width: 1200px;
    margin: 0 auto;
}

.accordion-item {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-header {
    background: var(--white);
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    /* font-size: 1.1rem; */
}

.accordion-header:hover {
    background: #f8fafc;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f8fafc;
    padding: 0 20px;
}

.accordion-content p {
    padding: 20px 0;
    margin: 0;
    color: var(--text-light);
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    /* Approximate height */
}

.accordion-icon {
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.not-for-you {
    margin-top: 60px;
    background: #fef2f2;
    padding: 40px;
    border-radius: 12px;
}

.not-for-you h3 {
    margin-bottom: 20px;
    color: #991b1b;
}

.not-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.not-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: bold;
}

/* --- CTA SECTION --- */
.final-cta {
    padding: 100px 0;
    background: var(--dark-navy);
    color: var(--white);
    text-align: center;
}

.final-cta h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: #cbd5e1;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #004494;
}

.btn-secondary {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark-navy);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    color: #94a3b8;
    font-size: 1.5rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .comparison-table thead {
        display: none;
    }

    .comparison-row {
        display: block;
        margin-bottom: 30px;
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        padding: 20px;
    }

    .comparison-row td {
        display: block;
        padding: 10px 0 10px 40px;
        background: transparent;
        text-align: left;
    }

    .comparison-row td:first-child::before,
    .comparison-row td:last-child::before {
        top: 20px;
        left: 0;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}