/* ==========================================================================
   SQUAREA Mumbai – About Page Stylesheet (Light Theme Overhaul)
   ========================================================================== */

/* About Hero Banner */
.about-hero-banner {
    height: 70vh;
    min-height: 550px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background-color: #0A0D14; /* Deep black-navy background */
}

.about-hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
    overflow: hidden; /* Clips background image only */
}

.about-hero-bg img {
    width: 100%; height: 100%; object-fit: cover;
    display: block;
    opacity: 0.35; /* Dark dramatic image background like locations page */
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(10, 13, 20, 0.7) 0%, rgba(10, 13, 20, 0.25) 45%, rgba(10, 13, 20, 0) 100%);
    z-index: 2;
}

.about-hero-content {
    position: relative;
    z-index: 3;
    max-width: 750px;
    margin: 0 auto; /* Perfect vertical centering */
    text-align: center;
    color: var(--white);
}

.about-hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 300;
    line-height: 1.1;
    margin: 15px 0;
    letter-spacing: -1px;
    color: var(--white) !important;
}

.about-hero-subtitle {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange-accent);
}

.about-hero-lead {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Floating Stats Row */
.hero-stats-row {
    position: absolute;
    bottom: -138px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 80px);
    max-width: 1200px;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.hero-stat-card {
    background: var(--white);
    border: 1px solid rgba(197, 168, 128, 0.22);
    border-radius: 12px;
    padding: 24px 30px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    transition: var(--transition-fast);
}

.hero-stat-card:hover {
    border-color: var(--orange-accent);
    transform: translateY(-3px);
}

.hero-stat-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--orange-accent);
    line-height: 1.1;
    display: block;
    margin-bottom: 5px;
}

.hero-stat-lbl {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--soft-grey);
}

/* Running Brand ticker marquee */
.hero-marquee-ticker {
    position: absolute;
    bottom: -110px;
    left: 0;
    width: 100%;
    background-color: var(--orange-accent);
    padding: 10px 0;
    overflow: hidden;
    z-index: 4;
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: marqueeAnimation 30s linear infinite;
}

.marquee-track span {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #1A1A1A;
    padding-right: 20px;
}

@keyframes marqueeAnimation {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}

/* Intro statement section */
.intro-statement-section {
    padding-top: 80px !important;
}

.intro-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: 15rem;
    font-weight: 700;
    color: rgba(197, 168, 128, 0.035);
    z-index: 1;
    pointer-events: none;
    letter-spacing: 15px;
    user-select: none;
}

.about-intro-split-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.about-intro-left-col .intro-index {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange-accent);
    display: block;
    margin-bottom: 20px;
}

.intro-bold-heading {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 300;
    line-height: 1.35;
    color: var(--off-white);
    margin: 0;
}

.about-intro-right-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}

.intro-highlight-text {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.65;
    color: var(--off-white);
}

.intro-desc-text {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--soft-grey);
}

/* Asymmetrical Overlapping Perspective */
.perspective-overlap-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.perspective-image-side {
    position: relative;
}

.image-border-offset {
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--orange-accent);
    border-radius: 16px;
    z-index: 1;
}

.perspective-image-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    z-index: 2;
    border: 1px solid rgba(197, 168, 128, 0.22);
    box-shadow: 0 15px 45px rgba(0,0,0,0.03);
}

.perspective-image {
    width: 100%;
    display: block;
    object-fit: cover;
    max-height: 520px;
}

.advisor-floating-badge {
    position: absolute;
    bottom: 25px;
    right: 25px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(197, 168, 128, 0.25);
    border-radius: 8px;
    padding: 12px 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.badge-title {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--off-white);
}

.badge-subtitle {
    font-family: var(--font-body);
    font-size: 0.65rem;
    color: var(--orange-accent);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

.perspective-content-side {
    padding-left: 20px;
}

.perspective-quote-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.quote-watermark {
    position: absolute;
    top: -50px;
    left: -25px;
    font-family: var(--font-heading);
    font-size: 8rem;
    font-weight: 700;
    color: rgba(197, 168, 128, 0.1);
    z-index: 1;
    line-height: 1;
}

.perspective-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.1;
    margin: 0 0 20px 0;
    position: relative;
    z-index: 2;
}

.perspective-title span {
    font-style: italic;
    color: var(--orange-accent);
}

.perspective-quote-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1.4;
    color: var(--off-white);
    margin: 0;
    position: relative;
    z-index: 2;
    font-style: italic;
}

.perspective-description {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--soft-grey);
    margin-bottom: 35px;
}

/* Philosophies Grid & Asymmetric Cards */
.philosophies-grid,
.philosophies-asymmetric-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.philosophy-card,
.philosophy-asymmetric-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 247, 250, 0.85) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(194, 164, 104, 0.22);
    border-radius: 20px;
    padding: 45px 40px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 15px 35px rgba(26, 29, 38, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.philosophy-card:hover,
.philosophy-asymmetric-card:hover {
    transform: translateY(-6px);
    border-color: rgba(194, 164, 104, 0.45);
    box-shadow: 0 25px 60px rgba(194, 164, 104, 0.15), inset 0 1px 0 rgba(255, 255, 255, 1);
}

.card-num-watermark {
    position: absolute;
    top: -20px;
    right: 20px;
    font-family: var(--font-heading);
    font-size: 7.5rem;
    font-weight: 700;
    color: rgba(194, 164, 104, 0.07);
    line-height: 1;
    pointer-events: none;
    z-index: 1;
    user-select: none;
    transition: color 0.5s ease;
}

.philosophy-asymmetric-card:hover .card-num-watermark {
    color: rgba(194, 164, 104, 0.14);
}

.card-inner-box {
    position: relative;
    z-index: 2;
}

.card-index-tag,
.philosophy-num {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent, #C2A468);
    display: inline-block;
    margin-bottom: 15px;
    padding: 4px 12px;
    background: rgba(194, 164, 104, 0.08);
    border: 1px solid rgba(194, 164, 104, 0.2);
    border-radius: 50px;
}

.card-title,
.philosophy-card h3 {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 400;
    color: var(--text-primary, #0B0E14);
    margin: 0 0 15px 0;
    line-height: 1.25;
}

.card-text,
.philosophy-card p {
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-secondary, #2D3748);
    margin: 0;
}

/* Milestone Journey */
.journey-horizontal-section {
    padding: 120px 0;
}

.journey-horizontal-container {
    position: relative;
    padding-top: 50px;
    margin-top: 40px;
}

.journey-track-line {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(197, 168, 128, 0.18);
    z-index: 1;
}

.journey-track-progress {
    position: absolute;
    top: 50px;
    left: 0;
    width: 0%;
    height: 1.5px;
    background-color: var(--orange-accent);
    z-index: 2;
    transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 3;
}

.journey-card-wrapper {
    display: flex;
    flex-direction: column;
}

.journey-node-wrapper {
    height: 1px;
    position: relative;
    margin-bottom: 40px;
}

.journey-node {
    width: 12px;
    height: 12px;
    background-color: var(--white);
    border: 2px solid rgba(197, 168, 128, 0.4);
    border-radius: 50%;
    position: absolute;
    top: -6px;
    left: 0;
    transition: var(--transition-smooth);
}

.journey-card-wrapper:hover .journey-node {
    background-color: var(--orange-accent);
    border-color: var(--orange-accent);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(197, 168, 128, 0.4);
}

.journey-card {
    background-color: var(--white);
    border: 1px solid rgba(197, 168, 128, 0.15);
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    transition: var(--transition-smooth);
}

.journey-card-wrapper:hover .journey-card {
    border-color: var(--orange-accent);
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(197, 168, 128, 0.15);
}

.journey-year {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--orange-accent);
    display: block;
    margin-bottom: 15px;
}

.journey-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 400;
    margin: 0 0 15px;
}

.journey-card p {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.65;
    color: var(--soft-grey);
    margin: 0;
}

/* Portfolio destinations container */
.destination-grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.destination-grid-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 380px;
    border: 1px solid rgba(197, 168, 128, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    display: block;
    text-decoration: none;
}

.destination-grid-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.destination-grid-card:hover img {
    transform: scale(1.06);
}

.destination-grid-card-content {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.8) 0%, rgba(26, 26, 26, 0.2) 60%, transparent 100%);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--white);
}

.destination-grid-card-tag {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange-accent);
    margin-bottom: 8px;
}

.destination-grid-card-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 300;
    margin: 0 0 15px 0;
    color: var(--white) !important;
}

.destination-grid-card-cta {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.destination-grid-card:hover .destination-grid-card-cta {
    color: var(--orange-accent);
}

/* Responsive queries */
@media (max-width: 991px) {
    .about-intro-split-grid, .perspective-overlap-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }
    .philosophies-grid, .philosophies-asymmetric-grid, .journey-grid, .destination-grid-container {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
    .hero-stats-row {
        position: relative;
        bottom: 0;
        left: 0; right: 0;
        transform: none;
        width: 100%;
        max-width: none;
        grid-template-columns: 1fr;
        margin-top: 40px;
        gap: 15px;
    }
    .about-hero-banner {
        height: auto;
        padding: 100px 0 60px;
    }
    .about-hero-title {
        font-size: 2.8rem;
    }
    .hero-marquee-ticker {
        position: relative;
        bottom: 0;
        margin-top: 30px;
    }
    .intro-statement-section {
        padding-top: 60px !important;
    }
    .intro-bold-heading {
        font-size: 2rem;
    }
    .perspective-content-side {
        padding-left: 0;
    }
    .perspective-title {
        font-size: 2.3rem;
    }
    .image-border-offset {
        display: none;
    }
    .journey-track-line, .journey-track-progress, .journey-node-wrapper {
        display: none;
    }
    .card-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .about-hero-banner {
        padding: 85px 0 35px;
        min-height: auto;
    }
    .about-hero-subtitle {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }
    .about-hero-title {
        font-size: 2.1rem;
        margin: 10px 0;
        line-height: 1.2;
    }
    .about-hero-lead {
        font-size: 0.92rem;
        line-height: 1.55;
    }
    .hero-stat-card {
        padding: 18px 20px;
        border-radius: 10px;
    }
    .hero-stat-num {
        font-size: 1.8rem;
    }
    .hero-stat-lbl {
        font-size: 0.68rem;
        letter-spacing: 1px;
    }
    .intro-watermark {
        font-size: 6.5rem;
        letter-spacing: 6px;
    }
    .about-intro-split-grid {
        gap: 30px;
    }
    .intro-bold-heading {
        font-size: 1.7rem;
        line-height: 1.35;
    }
    .perspective-overlap-grid {
        gap: 35px;
    }
    .perspective-title {
        font-size: 1.95rem;
    }
    .perspective-quote-text {
        font-size: 1.3rem;
        line-height: 1.45;
    }
    .quote-watermark {
        font-size: 4.5rem;
        top: -25px;
        left: -15px;
    }
    .philosophies-asymmetric-card {
        padding: 30px 24px;
        border-radius: 16px;
    }
    .card-title {
        font-size: 1.5rem;
    }
    .card-num-watermark {
        font-size: 5rem;
        right: 15px;
        top: -10px;
    }
    .philosophies-section .section-title {
        font-size: 2.2rem !important;
    }
}

@media (max-width: 576px) {
    .about-hero-banner {
        padding: 75px 0 30px;
    }
    .about-hero-title {
        font-size: 1.8rem;
        letter-spacing: -0.5px;
    }
    .hero-stats-row {
        margin-top: 25px;
        gap: 12px;
    }
    .hero-stat-card {
        padding: 15px 16px;
    }
    .hero-stat-num {
        font-size: 1.65rem;
    }
    .hero-stat-lbl {
        font-size: 0.65rem;
    }
    .intro-watermark {
        display: none;
    }
    .intro-statement-section {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
    .intro-bold-heading {
        font-size: 1.45rem;
        line-height: 1.35;
    }
    .intro-highlight-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    .intro-desc-text {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    .perspective-section {
        padding-top: 40px !important;
    }
    .perspective-image {
        max-height: 340px;
    }
    .advisor-floating-badge {
        bottom: 12px;
        right: 12px;
        padding: 8px 14px;
        border-radius: 6px;
    }
    .badge-title {
        font-size: 0.78rem;
    }
    .badge-subtitle {
        font-size: 0.6rem;
    }
    .perspective-title {
        font-size: 1.6rem;
    }
    .perspective-quote-text {
        font-size: 1.15rem;
        line-height: 1.45;
    }
    .perspective-description {
        font-size: 0.88rem;
        margin-bottom: 25px;
    }
    .perspective-btn {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .philosophies-section {
        padding: 40px 0 20px !important;
    }
    .philosophies-section .text-center {
        margin-bottom: 35px !important;
    }
    .philosophies-section .section-title {
        font-size: 1.75rem !important;
        margin: 10px 0 14px 0 !important;
    }
    .philosophies-section .section-desc {
        font-size: 0.85rem !important;
    }
    .philosophies-asymmetric-card {
        padding: 24px 18px;
        border-radius: 14px;
    }
    .card-index-tag {
        font-size: 0.65rem;
        padding: 3px 10px;
        margin-bottom: 10px;
    }
    .card-title {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    .card-text {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    .card-num-watermark {
        font-size: 4rem;
        right: 10px;
        top: -8px;
    }
}

@media (max-width: 480px) {
    .about-hero-title {
        font-size: 1.6rem;
    }
    .about-hero-subtitle {
        font-size: 0.68rem;
        letter-spacing: 1.5px;
    }
    .about-hero-lead {
        font-size: 0.88rem;
    }
    .advisor-floating-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin: -25px 12px 0 12px;
        z-index: 5;
        text-align: center;
        align-items: center;
    }
}