.offer-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    min-height: 100vh;
    padding: 30px 10px;
}

.offer-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 2px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 400px;
    width: 100%;
    font-family: Oxanium, -apple-system, Roboto, Helvetica, sans-serif;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.offer-card:hover {
    transform: scale(1.01);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.offer-image {
    width: 100%;
    height: 450px;
    background: #a2a2a2;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: bold;
}

.offer-image-text {
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@keyframes gradientShift {
    0% {
        background: linear-gradient(45deg, rgba(255, 107, 107, 0.8), rgba(78, 205, 196, 0.8));
    }

    100% {
        background: linear-gradient(45deg, rgba(78, 205, 196, 0.8), rgba(255, 107, 107, 0.8));
    }
}

.offer-button {
    width: 100%;
    background: rgb(206, 8, 8);
    color: white;
    border: none;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}



.features-list {
    list-style: none;
    margin-bottom: 20px;
}

.features-list li {
    color: #555;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    font-size: 14px;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

@media (max-width: 480px) {
    .offer-main {
        padding: 20px 10px;
        gap: 20px;
    }

    .offer-card {
        max-width: 100%;
        margin: 0;
    }

}

@media (max-width: 768px) {
    .offer-main {
        gap: 20px;
        padding: 25px 20px;
    }
}

@media (max-width: 580px) {
    .offer-card {
        max-width: 100%;
    }
}

@media (min-width: 1200px) {
    .offer-main {
        padding: 40px 10px;
        margin: 0 auto;
    }
}

/* //////////////////////////////////////////////////////////////////////////////////////// */

/* brand logo */


.tyre-brands-section {
    width: 100%;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ebf0 100%);
    padding: 30px 0;
}

.container-Logo {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 0px;
    letter-spacing: 1px;
    position: relative;
    padding-top: 20px;
}



.tyre-brand-swiper {
    padding: 20px 0 20px
}

.swiper-slide {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-card {
    background: white;
    border-radius: 12px;
    max-height: 20px;
    /* padding: 30px   0px; */
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); */
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90px;
    width: 100%;
}



.brand-card img {
    max-width: 100%;
    /* max-height: 100%; */
    border-radius: 20px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.brand-card:hover img {
    filter: grayscale(0%);
}

.cta-button {
    display: inline-block;
    background: #076013;
    color: white;
    text-decoration: none;
    padding: 14px 50px;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    /* box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3); */
    margin-top: 20px;
}

.cta-button:hover {
    transform: translateY(-2px);
    /* box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4); */
    background: #2b791f
}

.text-center {
    text-align: center;
}

/* Swiper Navigation Customization */
.swiper-pagination-bullet {
    background: #ff6b35;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
        /* margin-bottom: 30px; */
    }

    .tyre-brands-section {
        padding: 40px 0;
    }

    .brand-card {
        padding: 20px 15px;
        min-height: 100px;
    }

    .brand-card img {
        max-height: 45px;
    }

    .cta-button {
        padding: 14px 32px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 26px;
    }

    .brand-card {
        padding: 15px 10px;
        min-height: 80px;
    }

    .brand-card img {
        max-height: 35px;
    }
}



/* /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */

/* CSS */
.offer-section {
    padding: 20px 10px;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.offer-content {
    max-width: 600px;
    width: 100%;
}

.offer-title {

    color: black;
    display: inline-block;
    border-bottom: 3px solid red;
    padding-bottom: 5px;
    font-size: 2.6rem;
    font-weight: bold;
}

.offer-subtitle {
    font-family: 'Sarabun', sans-serif;
    color: black;
    margin-top: 10px;
    font-size: 1.2rem;
}

/* Responsive styling */
@media (max-width: 768px) {
    .offer-title {
        font-size: 2rem;
    }

    .offer-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .offer-title {
        font-size: 1.6rem;
    }

    .offer-subtitle {
        font-size: 0.9rem;
    }
}

/* ////////////////////////////////////////////////////////////////////////////////////////////////// */

/* Section wrapper */
.work-section {
    padding: 40px 15px;
    background: rgba(0, 0, 0, 0.03);
}

/* Container */
.work-container {
    max-width: 1200px;
    margin: 0 auto;
}

.work-title {
    text-align: center;
    color: #111;
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 700;
    border-bottom: 3px solid #dc2626;
    padding-bottom: 5px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

/* Steps wrapper */
.work-steps {
    max-width: 550px;
    margin: 0 auto;
    position: relative;
}

/* Individual step */
.work-step {
    display: flex;
    gap: 50px;
    /* margin-bottom: 40px; */
    position: relative;
}

.work-step:last-child {
    margin-bottom: 0;
}

/* Step number circle */
.step-number {
    min-width: 50px;
    height: 50px;
    background: #dc2626;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    z-index: 2;
    position: relative;
}

/* Connecting line */
.step-line {
    position: absolute;
    left: 25px;
    top: 50px;
    width: 3px;
    height: calc(100% + 0px);
    background: #dc2626;
    z-index: 1;
}

.work-step:last-child .step-line {
    display: none;
}

/* Icon circle */
.step-icon {
    width: 40px;
    height: 40px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.step-icon i {
    font-size: 1.2rem;
    color: #dc2626;
}

/* Content */
.step-content {
    flex: 1;
    padding-top: 5px;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 600;
    color: #111;
}

.step-content p {
    font-size: 1rem;
    color: #444;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .work-step {
        gap: 15px;
    }

    .step-number {
        min-width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .step-line {
        left: 20px;
        top: 40px;
    }

    .step-content h3 {
        font-size: 1.1rem;
    }

    .step-content p {
        font-size: 0.9rem;
    }
}

/* ////////////////////////////////////////////////////////////////////////////////////////////////////// */



/* Section */
.features-section {
    padding: 40px 20px;
    background-color: #ffffff;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Title */
.features-title {
    text-align: center;
    color: #dc2626;
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: 700;
    display: block;
    position: relative;
}

/* Underline centered under the text */
.features-title::after {
    content: "";
    display: block;
    width: 200px;
    height: 3px;
    background: black;
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Features grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center;
    /* text-align: center; */

}


/* Each box */
.feature-box {
    text-align: center;
    position: relative;
    padding: 10px;
}

/* Icon container */
.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: black;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(45deg);
}

.feature-icon i {
    font-size: 2rem;
    color: white;
    transform: rotate(-45deg);
}

/* Feature title */
.feature-box h3 {
    color: #dc2626;
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-weight: 600;
}

/* Feature text */
.feature-box p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive tweaks */
@media (max-width: 480px) {
    .features-title {
        font-size: 2rem;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
    }

    .feature-icon i {
        font-size: 1.8rem;
    }
}

/* /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */

.coverage-section {
    padding: 60px 20px;
    background: #f8f9fa;
}

/* Container */
.coverage-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Title */
.coverage-title {
    text-align: center;
    color: #dc2626;
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

/* Subtitle */
.coverage-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 50px;
    font-weight: 400;
}

/* Simple Grid Style */
.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Simple Card */
.coverage-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.coverage-card:hover {
    border-color: #dc2626;
    background: #fff5f5;
}

/* Icon */
.coverage-card i {
    font-size: 1.5rem;
    color: #dc2626;
    margin-bottom: 10px;
    display: block;
}

/* Text */
.coverage-card span {
    color: #333;
    font-size: 1rem;
    font-weight: 500;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .coverage-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 12px;
    }

    .coverage-title {
        font-size: 2rem;
    }

    .coverage-subtitle {
        font-size: 1rem;
    }

    .coverage-card {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .coverage-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Alternative Style Options - Uncomment to try */

/* OPTION 2: Compact List Style */

.coverage-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.coverage-card {
    background: white;
    padding: 10px 13px;
    border-radius: 25px;
    border: 1px solid #e0e0e0;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    flex: 0 0 auto;
}

.coverage-card i {
    font-size: 1rem;
    margin-bottom: 0;
}

.coverage-card span {
    font-size: 0.95rem;
}

@media(min-width:1000px) {
    .coverage-card {
        padding: 12px 60px;
        gap: 8px;
    }
}


/* OPTION 3: Minimal Text Only */
/*
        .coverage-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 10px;
            max-width: 900px;
        }

        .coverage-card {
            background: transparent;
            padding: 15px;
            border: none;
            border-left: 3px solid #dc2626;
            text-align: left;
        }

        .coverage-card:hover {
            background: white;
            border-left: 3px solid #991b1b;
        }

        .coverage-card i {
            display: none;
        }

        .coverage-card span {
            font-size: 1rem;
            color: #555;
        }
        */

/* /////////////////////////////////////////////////////////////////////////////////////////////////////////// */

/* Reviews Section */
.reviews-section {
    padding: 20px 20px;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-title {
    text-align: center;
    color: #111;
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.reviews-subtitle {
    text-align: center;
    color: #666;
    font-size: 1rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.reviews-subtitle i {
    color: #fbbf24;
    margin: 0 2px;
}

/* Swiper Styles */
.swiper {
    width: 100%;
    padding: 20px 10px;
}

.swiper-slide {
    height: auto;
    display: flex;
}

.review-card {
    background: white;
    padding: 28px 24px;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.12);
}

.quote-icon {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2.8rem;
    color: rgba(220, 38, 38, 0.1);
}

.stars {
    margin-bottom: 12px;
}

.stars i {
    color: #fbbf24;
    font-size: 1rem;
    margin-right: 2px;
}

.review-text {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 1px;
    border-top: 1px solid #f0f0f0;
    margin-bottom: -25px;
}

.reviewer-avatar {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    flex-shrink: 0;
}
.reviewer-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: fill; /* keeps aspect ratio and fills circle */
}

.reviewer-details{
    padding-top: 15px;
}

.reviewer-details h4 {

    color: #111;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.reviewer-details p {
    color: #666;
    font-size: 0.85rem;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
    color: #dc2626;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.2rem;
    font-weight: 700;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #dc2626;
    color: white;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
    margin-top: 30px;
    width: 10px;
    height: 10px;
    background: #ccc;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #dc2626;
    width: 24px;
    border-radius: 6px;
}

/* Responsive */
@media (max-width: 1024px) {
    .reviews-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 40px 15px;
    }

    .reviews-title {
        font-size: 1.6rem;
    }

    .review-card {
        padding: 22px 18px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
        /* hide arrows on mobile */
    }
}

@media (max-width: 480px) {
    .reviews-title {
        font-size: 1.4rem;
    }

    .review-text {
        font-size: 0.9rem;
    }

    .reviewer-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}