/* ==========================================================
   ABOUT PAGE
========================================================== */

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

.about-hero{
    height:50vh;
    min-height:500px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    position:relative;
    background:url("../images/newimg/h1.jpeg") center center/cover no-repeat fixed;
}

.about-hero::before{
    content:"";
    position:absolute;
    inset:0;
    /* background:linear-gradient(
        rgba(255,255,255,.72),
        rgba(255,255,255,.82)
    ); */
}

.hero-content{
    position:relative;
    z-index:2;
    margin-top:80px;
}

.hero-content h1{
    font-size:clamp(42px,8vw,90px);
    color:#080808;
    line-height:1.1;
    margin-bottom:20px;
    letter-spacing:2px;
    margin-top:100px;
}

.hero-content p{
    color:#cc1818;
    font-size:16px;
    text-transform:uppercase;
    letter-spacing:6px;
}

/* ==========================================================
   LEGACY
========================================================== */

.legacy-section{
    padding:70px 0;
    background:#ffffff;
    position:relative;
}

.legacy-grid{
    display:grid;
    grid-template-columns:5fr 6fr;
    gap:70px;
    align-items:center;
}

.legacy-images{
    position:relative;
}

.img-main{
    width:100%;
    height:650px;
    object-fit:cover;
    border:8px solid #fff;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
    transition:.45s ease;
}

.img-float{
    position:absolute;
    bottom:-40px;
    right:0;
    width:60%;
    height:360px;
    object-fit:cover;
    border:10px solid #fff;
    box-shadow:0 20px 45px rgba(0,0,0,.12);
    transition:.45s ease;
}

.legacy-images:hover .img-main{
    transform:scale(1.02);
}

.legacy-images:hover .img-float{
    transform:translateY(-8px) scale(1.02);
}

.legacy-content{
    padding-right:20px;
}

.legacy-content h2{
    font-size:clamp(34px,5vw,55px);
    color:#000000;
    line-height:1.15;
    margin-bottom:30px;
}

.legacy-content p{
    color:#000000;
    font-size:15px;
    line-height:1.9;
    font-weight:400;
    margin-bottom:28px;
    max-width:65ch;
}

.experience-badge{
    display:inline-flex;
    align-items:center;
    gap:20px;
    background:#fff;
    border-left:4px solid var(--brand-red);
    padding:24px 40px;
    margin-top:25px;
    border-radius:6px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.experience-badge .years{
    font-family:var(--font-serif);
    font-size:55px;
    color:var(--brand-red);
    line-height:1;
}

.experience-badge .text{
    font-size:11px;
    color:#000000;
    text-transform:uppercase;
    letter-spacing:3px;
}

/* ==========================================================
   CLIENT CONNECTION
========================================================== */
    .client-connection{
    padding:80px 0;
    background:#f8f8f8;
    border-top:1px solid #ececec;
    border-bottom:1px solid #ececec;
}

.connection-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
    margin-top:70px;
}

.connection-card{
    background:#fff;
    padding:55px 35px;
    text-align:center;
    border:1px solid #ececec;
    border-radius:6px;
    transition:.4s ease;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.connection-card:hover{
    transform:translateY(-10px);
    border-color:rgba(193,18,31,.35);
    box-shadow:0 20px 45px rgba(0,0,0,.10);
}

.c-icon{
    font-size:40px;
    color:var(--brand-red);
    margin-bottom:25px;
}

.connection-card h3{
    font-size:26px;
    color:#000000;
    margin-bottom:18px;
}

.connection-card p{
    font-size:15px;
    color:#000000;
    line-height:1.9;
    font-weight:400;
}
/* ==========================================================
   PHILOSOPHY
========================================================== */
.philosophy-section{
    padding:70px 0;
    background:#ffffff;
}

.section-heading{
    text-align:center;
    margin-bottom:70px;
}

.section-heading h2{
    font-size:clamp(34px,5vw,55px);
    color:#000000;
    margin-top:10px;
}

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

.phil-card{
    background:#fff;
    padding:55px 35px;
    text-align:center;
    border:1px solid #ececec;
    border-radius:6px;
    transition:.4s ease;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.phil-card:hover{
    transform:translateY(-10px);
    border-color:rgba(193,18,31,.35);
    box-shadow:0 20px 45px rgba(0,0,0,.10);
}

.phil-icon{
    font-size:40px;
    color:var(--brand-red);
    margin-bottom:22px;
}

.phil-card h3{
    font-size:24px;
    color:#000000;
    margin-bottom:15px;
}

.phil-card p{
    color:#070707;
    font-size:15px;
    line-height:1.9;
    font-weight:400;
}

/* ==========================================================
   GLOBAL SECTION
========================================================== */
    .global-section{
    padding:70px 0;
    position:relative;
    text-align:center;
    background:url("../images/newimg/pn2.jpeg") center center/cover no-repeat fixed;
}

.global-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(255,255,255,.82);
}

.global-content{
    position:relative;
    z-index:2;
    max-width:900px;
    margin:auto;
}

.global-content h2{
    font-size:clamp(34px,5vw,55px);
    color:#000000;
    line-height:1.15;
    margin-bottom:25px;
}

.global-content p{
    color:#000000;
    font-size:15px;
    line-height:1.9;
    font-weight:400;
    max-width:720px;
    margin:0 auto 55px;
}

.cities-grid{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:40px;
    padding-top:45px;
    border-top:1px solid rgba(0,0,0,.10);
}

.city-item{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:15px;
    min-width:120px;
    transition:.35s ease;
}

.city-item:hover{
    transform:translateY(-5px);
}

.city-item i{
    font-size:24px;
    color:var(--brand-red);
}

.city-item span{
    font-family:var(--font-serif);
    font-size:20px;
    color:#222;
    letter-spacing:2px;
    text-transform:uppercase;
}
/* ==========================================================
   CTA SECTION
========================================================== */
    /*==========================================================
CTA SECTION
==========================================================*/

.cta-section{
    position: relative;
    padding: 70px 0;
    text-align: center;
    background: url("../images/newimg/g4.png") center center/cover fixed;
    overflow: hidden;
}
.cta-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}
/* .cta-section::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(3,3,3,.98),
        rgba(3,3,3,.82)
    );
} */

.cta-content{
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: auto;
}

.cta-content h2{
    font-size: clamp(36px,5vw,60px);
    /* color: var(--brand-silver); */
    color:red;
    line-height: 1.1;
    margin: 20px 0 25px;
}

.cta-content p{
    color: #c8c8c8;
    font-size: 16px;
    line-height: 1.9;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto 45px;
}

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

.btn-primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    position:relative;
    overflow:hidden;

    padding:18px 42px;

    background:var(--brand-red);
    color:#fff;

    font-size:12px;
    letter-spacing:3px;
    text-transform:uppercase;
    font-weight:500;

    transition:.4s;
    box-shadow:0 15px 35px rgba(193,18,31,.25);
}

.btn-primary::before{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:100%;
    height:100%;
    background:rgba(255,255,255,.18);
    transform:skewX(-25deg);
    transition:.7s;
}

.btn-primary:hover::before{
    left:120%;
}

.btn-primary:hover{
    background:var(--brand-red-hover);
    transform:translateY(-5px);
    box-shadow:0 18px 40px rgba(193,18,31,.45);
}
/* ==========================================================
   COMMON UTILITIES
========================================================== */
/*==========================================================
COMMON STYLES - ABOUT PAGE
==========================================================*/

.section-heading,
.hero-content,
.legacy-content,
.global-content,
.cta-content{
    position:relative;
    z-index:2;
}

.section-tag{
    display:inline-flex;
    align-items:center;
    gap:12px;
    color:var(--brand-red);
    font-size:24px;
    font-weight:500;
    text-transform:uppercase;
    letter-spacing:4px;
    margin-bottom:18px;
}

.section-tag::after{
    content:"";
    width:45px;
    height:1px;
    background:rgba(193,18,31,.45);
}

.center-tag{
    justify-content:center;
}

.center-tag::before{
    content:"";
    width:45px;
    height:1px;
    background:rgba(193,18,31,.45);
}

/*==========================================================
SCROLL ANIMATION
==========================================================*/

.reveal{
    opacity:0;
    transform:translateY(60px);
    transition:
        opacity .9s ease,
        transform .9s cubic-bezier(.22,.61,.36,1);
    will-change:transform,opacity;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

/*==========================================================
GLOBAL TRANSITIONS
==========================================================*/

.img-main,
.img-float,
.connection-card,
.phil-card,
.city-item,
.btn-primary,
.experience-badge{
    transition:all .45s ease;
}

/*==========================================================
TEXT READABILITY
==========================================================*/

.legacy-content p,
.connection-card p,
.phil-card p,
.global-content p,
.cta-content p{
    max-width:65ch;
    line-height:1.9;
    font-weight:400;
    font-size:23px;
}

/*==========================================================
IMAGE OPTIMIZATION
==========================================================*/

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

/*==========================================================
SMOOTH SCROLL
==========================================================*/

html{
    scroll-behavior:smooth;
}

/*==========================================================
TEXT SELECTION
==========================================================*/

::selection{
    background:var(--brand-red);
    color:#fff;
}

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

/* ---------- Large Laptop ---------- */
@media (max-width:1200px){

    .legacy-grid{
        gap:50px;
    }

    .img-main{
        height:580px;
    }

    .img-float{
        height:320px;
    }

}


/* ---------- Tablet ---------- */
@media (max-width:1024px){

    .about-hero{
        background-attachment:scroll;
    }

    .global-section{
        background-attachment:scroll;
    }

    .legacy-grid{
        grid-template-columns:1fr;
        gap:60px;
    }

    .legacy-images{
        max-width:650px;
        margin:auto;
    }

    .legacy-content{
        padding-right:0;
        text-align:center;
    }

    .legacy-content p{
        margin-left:auto;
        margin-right:auto;
    }

    .experience-badge{
        justify-content:center;
    }

    .img-main{
        height:520px;
    }

    .img-float{
        width:55%;
        height:280px;
    }

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

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

}


/* ---------- Mobile ---------- */
@media (max-width:768px){

    section{
        overflow:hidden;
    }

    .about-hero{
        height:65vh;
        min-height:400px;
    }

    .hero-content{
        margin-top:40px;
        padding:0 15px;
    }

    .hero-content h1{
        font-size:42px;
        letter-spacing:1px;
    }

    .hero-content p{
        letter-spacing:3px;
        font-size:12px;
    }

    .legacy-section,
    .client-connection,
    .philosophy-section,
    .global-section,
    .cta-section{
        padding:80px 0;
    }

    .legacy-content h2,
    .global-content h2,
    .cta-content h2,
    .section-heading h2{
        font-size:34px;
    }

    .legacy-content p,
    .connection-card p,
    .phil-card p,
    .global-content p,
    .cta-content p{
        font-size:22px;
    }

    .img-main{
        height:380px;
    }

    .img-float{

        position:relative;

        width:75%;
        height:220px;

        right:auto;
        bottom:-20px;

        margin:auto;
        margin-top:-60px;

        border-width:8px;
    }

    .experience-badge{
        flex-direction:column;
        gap:10px;
        text-align:center;
        padding:25px;
    }

    .experience-badge .years{
        font-size:46px;
    }

    .connection-grid,
    .philosophy-grid{
        grid-template-columns:1fr;
    }

    .connection-card,
    .phil-card{
        padding:35px 25px;
    }

    .cities-grid{
        justify-content:center;
        gap:25px;
    }

    .city-item{
        width:45%;
        min-width:auto;
    }

    .city-item span{
        font-size:18px;
    }

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

    .btn-primary{
        width:100%;
        max-width:320px;
        text-align:center;
    }

}


/* ---------- Small Mobile ---------- */
@media (max-width:576px){

    .about-hero{
        min-height:400px;
    }

    .hero-content h1{
        font-size:36px;
    }

    .legacy-content h2,
    .global-content h2,
    .cta-content h2,
    .section-heading h2{
        font-size:30px;
    }

    .img-main{
        height:300px;
    }

    .img-float{
        width:85%;
        height:180px;
        margin-top:-40px;
    }

    .city-item{
        width:100%;
    }

    .city-item i{
        font-size:20px;
    }

    .city-item span{
        font-size:16px;
        letter-spacing:1px;
    }

    .experience-badge{
        width:100%;
    }

}


/* ---------- Accessibility ---------- */
@media (prefers-reduced-motion:reduce){

    *,
    *::before,
    *::after{
        animation:none !important;
        transition:none !important;
        scroll-behavior:auto !important;
    }

}