/* =========================================================
   ADGRO MEDIA — ABOUT PAGE
   Theme: Purple / Pink / Black
   ========================================================= */

:root {
    --adgro-purple: #76245d;
    --adgro-purple-dark: #3d1230;
    --adgro-purple-light: #a94487;
    --adgro-pink: #d66ca9;
    --adgro-black: #08070a;
    --adgro-black-soft: #151116;
    --adgro-white: #ffffff;
    --adgro-bg: #f7f4f7;
    --adgro-border: #e8dfe6;
    --adgro-text: #241e23;
    --adgro-muted: #756b72;
    --adgro-shadow: 0 15px 45px rgba(64, 25, 51, .08);
    --adgro-shadow-lg: 0 25px 70px rgba(61, 18, 48, .16);
    --adgro-radius: 20px;
    --adgro-transition: all .3s ease;
}

/* =========================================================
   BASE
   ========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--adgro-text);
    background: var(--adgro-white);
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    line-height: 1.7;
}

a {
    text-decoration: none;
    transition: var(--adgro-transition);
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

p:last-child {
    margin-bottom: 0;
}

/* =========================================================
   COMMON SECTIONS
   ========================================================= */

.section-padding {
    padding: 95px 0;
}

.section-heading {
    max-width: 820px;
    margin: 0 auto 50px;
}

.section-label {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--adgro-purple);
    font-size: .76rem;
    font-weight: 850;
    letter-spacing: 2.2px;
    line-height: 1.3;
    text-transform: uppercase;
}

.section-title {
    margin: 0 0 18px;
    color: var(--adgro-black);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 850;
    line-height: 1.12;
    letter-spacing: -.8px;
}

.section-title span {
    color: var(--adgro-purple);
}

.text-white {
    color: var(--adgro-white) !important;
}

.text-white-50 {
    color: rgba(255,255,255,.62) !important;
}

.lead-text {
    color: var(--adgro-purple-dark);
    font-size: 1.16rem;
    font-weight: 600;
}

/* =========================================================
   BUTTONS
   ========================================================= */

.btn-adgro {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 25px;
    border: 2px solid var(--adgro-purple);
    border-radius: 9px;
    color: var(--adgro-white);
    background: var(--adgro-purple);
    font-weight: 750;
    box-shadow: 0 8px 22px rgba(118,36,93,.22);
}

.btn-adgro:hover,
.btn-adgro:focus {
    color: var(--adgro-white);
    background: var(--adgro-purple-dark);
    border-color: var(--adgro-purple-dark);
    transform: translateY(-2px);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 25px;
    border: 2px solid #22c55e;
    border-radius: 9px;
    color: #fff;
    background: #22c55e;
    font-weight: 750;
    box-shadow: 0 8px 22px rgba(34,197,94,.18);
}

.btn-whatsapp:hover,
.btn-whatsapp:focus {
    color: #fff;
    background: #16a34a;
    border-color: #16a34a;
    transform: translateY(-2px);
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 25px;
    border: 2px solid rgba(255,255,255,.8);
    border-radius: 9px;
    color: #fff;
    background: rgba(255,255,255,.04);
    font-weight: 750;
    backdrop-filter: blur(7px);
}

.btn-outline-light:hover,
.btn-outline-light:focus {
    color: var(--adgro-purple-dark);
    background: #fff;
    border-color: #fff;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 15px 28px;
}

/* =========================================================
   ABOUT HERO
   ========================================================= */

.inner-page-hero {
    position: relative;
    overflow: hidden;
    min-height: 430px;
    display: flex;
    align-items: center;
    color: #fff;
    background:
        radial-gradient(circle at 82% 20%, rgba(214,108,169,.28), transparent 30%),
        radial-gradient(circle at 15% 80%, rgba(169,68,135,.20), transparent 35%),
        linear-gradient(120deg, var(--adgro-black) 0%, var(--adgro-purple-dark) 58%, var(--adgro-purple) 100%);
}

.inner-page-hero::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -150px;
    top: -210px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
    box-shadow:
        0 0 0 45px rgba(255,255,255,.025),
        0 0 0 90px rgba(255,255,255,.018);
}

.inner-page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(
        135deg,
        transparent 0 48%,
        rgba(255,255,255,.035) 48% 49%,
        transparent 49% 100%
    );
    background-size: 42px 42px;
    pointer-events: none;
}

.inner-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding: 90px 0;
}

.inner-hero-content .hero-small-title {
    display: inline-block;
    margin-bottom: 18px;
    padding-left: 14px;
    border-left: 4px solid var(--adgro-pink);
    color: rgba(255,255,255,.9);
    font-size: .78rem;
    font-weight: 850;
    letter-spacing: 2.2px;
}

.inner-hero-content h1 {
    margin: 0 0 20px;
    color: #fff;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -1.8px;
}

.inner-hero-content h1 span {
    color: var(--adgro-pink);
}

.inner-hero-content p {
    max-width: 700px;
    margin: 0;
    color: rgba(255,255,255,.78);
    font-size: 1.12rem;
}

/* =========================================================
   BREADCRUMB
   ========================================================= */

.breadcrumb-section {
    padding: 15px 0;
    border-bottom: 1px solid var(--adgro-border);
    background: #fff;
}

.breadcrumb {
    font-size: .9rem;
}

.breadcrumb-item a {
    color: var(--adgro-purple);
    font-weight: 650;
}

.breadcrumb-item a:hover {
    color: var(--adgro-purple-dark);
}

.breadcrumb-item.active {
    color: var(--adgro-muted);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #b9aab5;
}

/* =========================================================
   WHO WE ARE
   ========================================================= */

.about-contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

/* Brand card */

.about-brand-card {
    position: relative;
    overflow: hidden;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 45px 35px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 28px;
    color: #fff;
    background:
        radial-gradient(circle at 50% 15%, rgba(214,108,169,.25), transparent 35%),
        linear-gradient(145deg, var(--adgro-black-soft), var(--adgro-purple-dark));
    box-shadow: var(--adgro-shadow-lg);
}

.about-brand-card::before {
    content: "";
    position: absolute;
    width: 330px;
    height: 330px;
    border: 1px solid rgba(214,108,169,.18);
    border-radius: 50%;
}

.about-brand-card::after {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    border: 1px solid rgba(214,108,169,.08);
    border-radius: 50%;
}

.about-brand-glow {
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(214,108,169,.16);
    filter: blur(35px);
}

.about-logo-container {
    position: relative;
    z-index: 2;
    width: 155px;
    height: 155px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 25px;
    padding: 14px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 24px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 20px 50px rgba(0,0,0,.25);
}

.about-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

.about-brand-text {
    position: relative;
    z-index: 2;
    text-align: center;
}

.about-brand-text h3 {
    margin: 0 0 5px;
    color: #fff;
    font-size: 2rem;
    font-weight: 850;
}

.about-brand-text p {
    margin: 0 0 12px;
    color: rgba(255,255,255,.72);
}

.about-brand-text span {
    color: var(--adgro-pink);
    font-size: .74rem;
    font-weight: 850;
    letter-spacing: 2px;
}

/* =========================================================
   OUR APPROACH
   ========================================================= */

.about-dark-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    color: #fff;
    background:
        radial-gradient(circle at 90% 10%, rgba(214,108,169,.16), transparent 30%),
        radial-gradient(circle at 5% 90%, rgba(118,36,93,.22), transparent 35%),
        linear-gradient(135deg, var(--adgro-black), var(--adgro-black-soft));
}

.about-dark-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: .25;
    pointer-events: none;
}

.about-dark-section .container {
    position: relative;
    z-index: 1;
}

.about-dark-section .section-label {
    color: var(--adgro-pink);
}

.approach-card {
    position: relative;
    height: 100%;
    overflow: hidden;
    padding: 35px 30px 30px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: var(--adgro-radius);
    background: rgba(255,255,255,.055);
    box-shadow: 0 20px 55px rgba(0,0,0,.18);
    backdrop-filter: blur(8px);
    transition: var(--adgro-transition);
}

.approach-card:hover {
    transform: translateY(-8px);
    border-color: rgba(214,108,169,.45);
    background: rgba(118,36,93,.18);
    box-shadow: 0 25px 65px rgba(0,0,0,.28);
}

.approach-number {
    position: absolute;
    top: 20px;
    right: 25px;
    color: rgba(214,108,169,.18);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
}

.approach-icon {
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border: 1px solid rgba(214,108,169,.35);
    border-radius: 16px;
    color: var(--adgro-pink);
    background: rgba(214,108,169,.08);
    font-size: 1.4rem;
}

.approach-card h3 {
    margin-bottom: 12px;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 850;
}

.approach-card p {
    min-height: 100px;
    color: rgba(255,255,255,.63);
}

.approach-card > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--adgro-pink);
    font-weight: 800;
}

.approach-card > a:hover {
    color: #fff;
    gap: 12px;
}

/* =========================================================
   WHAT WE DO
   ========================================================= */

.about-service-mini {
    height: 100%;
    padding: 30px 24px;
    border: 1px solid var(--adgro-border);
    border-radius: var(--adgro-radius);
    background: #fff;
    box-shadow: 0 8px 28px rgba(64,25,51,.045);
    transition: var(--adgro-transition);
}

.about-service-mini:hover {
    transform: translateY(-7px);
    border-color: rgba(118,36,93,.30);
    box-shadow: var(--adgro-shadow);
}

.mini-service-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 14px;
    color: var(--adgro-purple);
    background: rgba(118,36,93,.09);
    font-size: 1.25rem;
    transition: var(--adgro-transition);
}

.about-service-mini:hover .mini-service-icon {
    color: #fff;
    background: var(--adgro-purple);
    transform: scale(1.05);
}

.about-service-mini h3 {
    margin-bottom: 10px;
    color: var(--adgro-black);
    font-size: 1.2rem;
    font-weight: 800;
}

.about-service-mini p {
    min-height: 105px;
    color: var(--adgro-muted);
    font-size: .93rem;
}

.about-service-mini > a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--adgro-purple);
    font-size: .9rem;
    font-weight: 800;
}

.about-service-mini > a:hover {
    color: var(--adgro-purple-dark);
    gap: 11px;
}

/* =========================================================
   WHY BUSINESSES CHOOSE US
   ========================================================= */

.about-feature-section {
    padding: 100px 0;
    background: var(--adgro-bg);
}

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

.feature-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    height: 100%;
    padding: 25px;
    border: 1px solid var(--adgro-border);
    border-radius: 17px;
    background: #fff;
    box-shadow: 0 8px 25px rgba(64,25,51,.045);
    transition: var(--adgro-transition);
}

.feature-box:hover {
    transform: translateY(-5px);
    border-color: rgba(118,36,93,.3);
    box-shadow: var(--adgro-shadow);
}

.feature-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    color: #fff;
    background: linear-gradient(135deg, var(--adgro-purple), var(--adgro-purple-light));
    font-size: 1.1rem;
}

.feature-box h3 {
    margin: 0 0 6px;
    color: var(--adgro-black);
    font-size: 1.05rem;
    font-weight: 800;
}

.feature-box p {
    margin: 0;
    color: var(--adgro-muted);
    font-size: .9rem;
    line-height: 1.55;
}

/* =========================================================
   SERVICE AREAS
   ========================================================= */

.service-area-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 28px;
    border: 1px solid var(--adgro-border);
    border-radius: 20px;
    background:
        linear-gradient(135deg, rgba(118,36,93,.035), rgba(214,108,169,.025)),
        #fff;
    box-shadow: var(--adgro-shadow);
}

.area-item {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 19px;
    border: 1px solid var(--adgro-border);
    border-radius: 50px;
    color: var(--adgro-purple-dark);
    background: #fff;
    font-weight: 750;
    transition: var(--adgro-transition);
}

.area-item i {
    color: var(--adgro-purple);
}

.area-item:hover {
    color: #fff;
    background: var(--adgro-purple);
    border-color: var(--adgro-purple);
    transform: translateY(-2px);
}

.area-item:hover i {
    color: var(--adgro-pink);
}

/* =========================================================
   CONTACT CTA
   ========================================================= */

.about-cta-section {
    position: relative;
    overflow: hidden;
    padding: 95px 0;
    color: #fff;
    background:
        radial-gradient(circle at 10% 20%, rgba(214,108,169,.25), transparent 32%),
        radial-gradient(circle at 90% 80%, rgba(118,36,93,.35), transparent 35%),
        linear-gradient(135deg, var(--adgro-purple-dark), var(--adgro-black));
}

.about-cta-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    right: -200px;
    top: -230px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 50%;
    box-shadow: 0 0 0 55px rgba(255,255,255,.025);
}

.about-cta-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.about-cta-content .section-label {
    color: var(--adgro-pink);
}

.about-cta-content h2 {
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(2.1rem, 5vw, 3.6rem);
    font-weight: 900;
    line-height: 1.1;
}

.about-cta-content h2 span {
    color: var(--adgro-pink);
}

.about-cta-content p {
    max-width: 680px;
    margin: 0 auto 30px;
    color: rgba(255,255,255,.68);
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

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

a:focus-visible,
button:focus-visible {
    outline: 3px solid rgba(214,108,169,.55);
    outline-offset: 3px;
}

/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 1199.98px) {
    .inner-page-hero {
        min-height: 390px;
    }

    .inner-hero-content {
        padding: 75px 0;
    }

    .about-brand-card {
        min-height: 420px;
    }

    .section-padding,
    .about-dark-section,
    .about-feature-section,
    .about-cta-section {
        padding: 80px 0;
    }
}

@media (max-width: 991.98px) {
    .section-padding,
    .about-dark-section,
    .about-feature-section,
    .about-cta-section {
        padding: 70px 0;
    }

    .inner-page-hero {
        min-height: 360px;
    }

    .inner-hero-content h1 {
        font-size: clamp(2.7rem, 7vw, 4rem);
    }

    .about-brand-card {
        min-height: 400px;
        margin-top: 10px;
    }

    .approach-card p {
        min-height: auto;
    }

    .about-service-mini p {
        min-height: auto;
    }

    .feature-grid {
        margin-top: 15px;
    }
}

/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 767.98px) {
    .section-padding,
    .about-dark-section,
    .about-feature-section,
    .about-cta-section {
        padding: 58px 0;
    }

    .section-heading {
        margin-bottom: 38px;
    }

    .section-title {
        font-size: 2.15rem;
    }

    .inner-page-hero {
        min-height: 380px;
    }

    .inner-hero-content {
        padding: 70px 0;
    }

    .inner-hero-content h1 {
        font-size: clamp(2.45rem, 11vw, 3.5rem);
        letter-spacing: -1px;
    }

    .inner-hero-content p {
        font-size: 1rem;
    }

    .about-contact-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .about-contact-buttons .btn {
        width: 100%;
    }

    .about-brand-card {
        min-height: 390px;
        padding: 35px 22px;
        border-radius: 22px;
    }

    .about-logo-container {
        width: 135px;
        height: 135px;
    }

    .about-brand-text h3 {
        font-size: 1.7rem;
    }

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

    .service-area-box {
        padding: 20px 15px;
    }

    .area-item {
        width: 100%;
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

/* =========================================================
   RESPONSIVE — SMALL MOBILE
   ========================================================= */

@media (max-width: 575.98px) {
    .section-title {
        font-size: 1.95rem;
    }

    .section-label {
        font-size: .68rem;
        letter-spacing: 1.6px;
    }

    .inner-page-hero {
        min-height: 400px;
    }

    .inner-hero-content {
        padding: 65px 0;
    }

    .inner-hero-content h1 {
        font-size: 2.55rem;
    }

    .breadcrumb-section {
        padding: 12px 0;
    }

    .breadcrumb {
        font-size: .82rem;
    }

    .about-brand-card {
        min-height: 360px;
    }

    .about-logo-container {
        width: 120px;
        height: 120px;
    }

    .about-brand-text h3 {
        font-size: 1.5rem;
    }

    .approach-card,
    .about-service-mini {
        padding: 27px 22px;
    }

    .feature-box {
        padding: 21px;
    }

    .feature-icon {
        flex-basis: 43px;
        width: 43px;
        height: 43px;
    }

    .about-cta-content h2 {
        font-size: 2.2rem;
    }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}
