/* ==========================================================================
   About / Hero Section - Heading + Phone Strip + Banner Image + Description
   ========================================================================== */

.about-section {
    background: #ffffff;
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    padding: 24px 20px 40px;
}

.about-section__inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* Centered eyebrow heading + tagline above the H1 */
.about-section__eyebrow {
    text-align: center;
    margin: 0 0 22px;
}

.about-section__eyebrow-subtitle {
    font-size: 24px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.45;
    margin: 0;
}

.about-section__eyebrow-highlight {
    display: inline-block;
    color: #a6192e;
    background: #fdeceb;
    font-weight: 800;
    padding: 2px 12px;
    border-radius: 6px;
}

.about-section__title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin: 0 0 16px;
}

/* Phone number strip */
.about-section__phones {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    background: #f2f2f2;
    border-radius: 6px;
    padding: 14px 18px;
    margin: 0 0 22px;
}

.about-section__badge {
    display: inline-block;
    background: #a6192e;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
    white-space: nowrap;
}

.about-section__phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #a6192e;
    font-weight: 800;
    font-size: 17px;
    letter-spacing: 0.3px;
    animation: aboutPhoneHighlight 1.4s ease-in-out infinite;
    border-radius: 999px;
    padding: 4px 10px;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.about-section__phone:hover,
.about-section__phone:focus-visible {
    background: #a6192e;
    color: #ffffff;
    transform: scale(1.05);
    outline: none;
}

.about-section__phone span:first-child {
    animation: aboutIconRing 1s ease-in-out infinite;
}

@keyframes aboutPhoneHighlight {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(166, 25, 46, 0.35);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(166, 25, 46, 0);
    }
}

@keyframes aboutIconRing {
    0%,
    100% {
        transform: rotate(0deg);
    }
    20% {
        transform: rotate(-15deg);
    }
    40% {
        transform: rotate(12deg);
    }
    60% {
        transform: rotate(-8deg);
    }
    80% {
        transform: rotate(6deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-section__phone,
    .about-section__phone span:first-child {
        animation: none;
    }
}

/* Banner image */
.about-section__media {
    margin: 0 0 20px;
}

.about-section__media img {
    display: block;
    width: 100%;
    max-width: 560px;
    height: auto;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
}

/* Description */
.about-section__text {
    font-size: 15px;
    line-height: 1.75;
    color: #333333;
    margin: 0;
    text-align: left;
}

.about-section__text strong {
    color: #1a1a1a;
}

.about-section__text a {
    color: #a6192e;
    font-weight: 700;
    text-decoration: none;
}

.about-section__text a:hover,
.about-section__text a:focus-visible {
    text-decoration: underline;
}

/* LG AC Service Chennai - subtitle */
.about-section__subtitle {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.3;
    margin: 28px 0 12px;
}

/* Inline highlighted Toll free number within paragraph text */
.about-section__Tollfree {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    background: #fdeceb;
    color: #a6192e;
    font-weight: 800;
    padding: 2px 10px;
    border-radius: 999px;
}

.about-section__Tollfree a {
    color: #a6192e;
    font-weight: 800;
    text-decoration: none;
}

.about-section__Tollfree a:hover,
.about-section__Tollfree a:focus-visible {
    text-decoration: underline;
}

/* ---------------- Mobile responsive ---------------- */
@media (max-width: 640px) {
    .about-section {
        padding: 18px 14px 30px;
    }

    .about-section__eyebrow {
        margin: 0 0 16px;
    }

    .about-section__eyebrow-subtitle {
        font-size: 17px;
        line-height: 1.4;
    }

    .about-section__eyebrow-highlight {
        padding: 1px 8px;
    }

    .about-section__title {
        font-size: 22px;
    }

    .about-section__phones {
        padding: 12px 14px;
        gap: 10px;
    }

    .about-section__phone {
        font-size: 15px;
    }

    .about-section__badge {
        font-size: 10px;
        padding: 3px 9px;
    }

    .about-section__media img {
        max-width: 100%;
    }

    .about-section__text {
        font-size: 14px;
        line-height: 1.7;
    }

    .about-section__subtitle {
        font-size: 19px;
        margin: 22px 0 10px;
    }

    .about-section__Tollfree {
        font-size: 14px;
        padding: 2px 8px;
    }
}
