/* =============================================
   About Us Page – Vortice 2027
   Modern redesign matching homepage design system
   ============================================= */

/* ---- Reset & Base ---- */
.vau-hero,
.vau-section,
.vau-section * {
    font-family: 'Fira Sans', sans-serif !important;
    box-sizing: border-box;
}

/* Restore Font Awesome font families so icons render correctly */
.vau-section .fa,
.vau-section .fas,
.vau-section .far,
.vau-section .fab,
.vau-section .fal,
.vau-section .fat,
.vau-section .fad,
.vau-section [class^="fa-"],
.vau-section [class*=" fa-"] {
    font-family: 'Font Awesome 6 Free' !important;
}

.vau-section .fa-brands,
.vau-section .fab {
    font-family: 'Font Awesome 6 Brands' !important;
}

.vau-section h1,
.vau-section h2,
.vau-section h3,
.vau-section h4,
.vau-section h5,
.vau-section h6 {
    margin: 0;
    padding: 0;
    border: none;
    letter-spacing: 0;
    text-transform: none;
}

/* ================================================
   HERO SECTION
   ================================================ */
.vau-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.vau-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(0, 150, 62, 0.85) 0%,
            rgba(15, 23, 42, 0.80) 60%,
            rgba(15, 23, 42, 0.90) 100%);
    z-index: 1;
}

.vau-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    max-width: 800px;
}

.vau-hero-title {
    font-size: 64px !important;
    font-weight: 200 !important;
    color: #ffffff !important;
    line-height: 1.1 !important;
    margin: 0 0 16px 0 !important;
    letter-spacing: -0.02em !important;
    text-transform: none !important;
}

.vau-hero-title strong {
    font-weight: 700 !important;
    color: #ffffff !important;
}

.vau-hero-subtitle {
    font-size: 20px !important;
    font-weight: 300 !important;
    color: rgba(255, 255, 255, 0.80) !important;
    margin: 0 !important;
    line-height: 1.6 !important;
}

.vau-hero-divider {
    width: 64px;
    height: 3px;
    background: rgba(255, 255, 255, 0.40);
    margin: 24px auto;
    border-radius: 2px;
}

/* ================================================
   SECTION LAYOUT
   ================================================ */
.vau-section {
    position: relative;
    overflow: hidden;
}

.vau-section-light {
    background: #ffffff;
    padding: 96px 0;
}

.vau-section-gray {
    background: #f8fafc;
    padding: 96px 0;
}

.vau-section-dark {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 96px 0;
}

.vau-section-green {
    background: linear-gradient(135deg, #00963E 0%, #009b4c 100%);
    padding: 96px 0;
}

.vau-section-map {
    background: linear-gradient(135deg, #006d9e 0%, #004d6e 100%);
    padding: 96px 0;
}

.vau-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .vau-container {
        padding: 0 48px;
    }
}

/* ---- Centered Section Header ---- */
.vau-center-header {
    text-align: center;
    margin-bottom: 64px;
}

/* ---- Labels ---- */
.vau-label {
    display: inline-block;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #00963E;
    margin-bottom: 16px;
}

.vau-label-white {
    color: rgba(255, 255, 255, 0.70) !important;
}

/* ---- Headings ---- */
.vau-heading {
    font-size: 42px !important;
    font-weight: 200 !important;
    line-height: 1.15 !important;
    color: #0f172a !important;
    margin: 0 0 32px 0 !important;
    letter-spacing: -0.02em !important;
}

.vau-heading-white {
    color: #ffffff !important;
}

.vau-accent {
    display: inline;
    background: linear-gradient(to right, #00963E, #0d9488);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600 !important;
}

.vau-accent-light {
    display: inline;
    background: linear-gradient(to right, #4ade80, #2dd4bf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600 !important;
}

/* ================================================
   TWO-COLUMN GRID  (About & Casals blocks)
   ================================================ */
.vau-two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 1024px) {
    .vau-two-col {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

.vau-two-col+.vau-two-col {
    margin-top: 96px;
}

/* Reversed order on desktop */
@media (min-width: 1024px) {
    .vau-two-col-reverse .vau-col-media {
        order: -1;
    }
}

/* ---- Text Column ---- */
.vau-col-text {
    display: flex;
    flex-direction: column;
}

/* ---- Prose (post content) ---- */
.vau-prose {
    margin-bottom: 0;
}

.vau-prose p {
    font-size: 17px !important;
    font-weight: 300 !important;
    line-height: 1.8 !important;
    color: #475569 !important;
    margin: 0 0 24px 0 !important;
    text-align: left !important;
}

.vau-prose p:last-child {
    margin-bottom: 0 !important;
}

.vau-prose strong {
    color: #0f172a !important;
    font-weight: 500 !important;
}

.vau-prose img {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
}

/* ---- Media Column ---- */
.vau-col-media {
    position: relative;
}

/* Green blur behind image */
.vau-col-media::before {
    content: '';
    position: absolute;
    top: -40px;
    left: -40px;
    width: 200px;
    height: 200px;
    background: rgba(49, 190, 103, 0.12);
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
}

.vau-media-frame {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.10);
    transition: box-shadow 0.5s ease;
}

.vau-media-frame:hover {
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
}

.vau-media-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 1s ease;
}

.vau-media-frame:hover img {
    transform: scale(1.03);
}

.vau-media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.50), transparent 50%);
    pointer-events: none;
}

/* Logo variant (Casals) — center logo with padding */
.vau-media-logo {
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px;
    aspect-ratio: 4 / 3;
}

.vau-media-logo img {
    width: auto;
    max-width: 80%;
    max-height: 100%;
    object-fit: contain;
}

.vau-media-logo:hover img {
    transform: scale(1.05);
}

/* Image badge overlay */
.vau-media-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 3;
    background: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 10px 14px;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.60);
    line-height: 0;
}

/* ================================================
   FEATURE BADGES (under Vortice photo)
   ================================================ */
.vau-feature-badges {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 28px;
}

@media (min-width: 480px) {
    .vau-feature-badges {
        grid-template-columns: 1fr 1fr;
    }
}

.vau-feature-badge {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 16px;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.vau-feature-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 150, 62, 0.10);
    border-color: #bbf7d0;
}

.vau-feature-badge-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #00963E, #0d9488);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 150, 62, 0.20);
}

.vau-feature-badge-icon i {
    font-size: 18px !important;
    color: #ffffff !important;
}

.vau-feature-badge-content {
    flex: 1;
    min-width: 0;
}

.vau-feature-badge-label {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #0f172a !important;
    margin: 0 0 4px 0 !important;
    line-height: 1.3 !important;
}

.vau-feature-badge-desc {
    font-size: 13px !important;
    font-weight: 400 !important;
    color: #64748b !important;
    margin: 0 !important;
    line-height: 1.5 !important;
}

/* ================================================
   HIGHLIGHTS BADGES (stats row under vortice text)
   ================================================ */
.vau-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
}

@media (min-width: 480px) {
    .vau-highlights {
        grid-template-columns: repeat(3, 1fr);
    }
}

.vau-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 12px;
    background: #f0fdf4;
    border: 1px solid #dcfce7;
    border-radius: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vau-highlight:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 150, 62, 0.10);
}

.vau-highlight-value {
    font-size: 32px !important;
    font-weight: 700 !important;
    color: #00963E !important;
    line-height: 1 !important;
    margin-bottom: 6px !important;
}

.vau-highlight-label {
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #64748b !important;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ================================================
   MISSION & VALUES  (glass cards on dark bg)
   ================================================ */

/* Background decoration */
.vau-section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: rgba(0, 150, 62, 0.08);
    border-radius: 50%;
    filter: blur(100px);
    transform: translate(30%, -30%);
    pointer-events: none;
}

.vau-section-dark::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: rgba(45, 212, 191, 0.06);
    border-radius: 50%;
    filter: blur(100px);
    transform: translate(-30%, 30%);
    pointer-events: none;
}

.vau-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .vau-cards {
        grid-template-columns: 1fr 1fr;
    }
}

.vau-card {
    background: rgba(255, 255, 255, 0.06) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.10) !important;
    border-radius: 2rem !important;
    padding: 48px 40px !important;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.vau-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.vau-card-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00963E, #0d9488);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    box-shadow: 0 8px 24px rgba(0, 150, 62, 0.30);
}

.vau-card-icon i {
    font-size: 28px !important;
    color: #ffffff !important;
}

.vau-card-title {
    font-size: 28px !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    margin: 0 0 20px 0 !important;
}

.vau-card-body {
    color: rgba(255, 255, 255, 0.75) !important;
}

.vau-card-body p {
    font-size: 16px !important;
    font-weight: 300 !important;
    color: rgba(255, 255, 255, 0.75) !important;
    line-height: 1.8 !important;
    margin: 0 0 16px 0 !important;
    text-align: left !important;
}

.vau-card-body p:last-child {
    margin-bottom: 0 !important;
}

/* Style bullet points in values */
.vau-card-body ul,
.vau-card-body li {
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 16px !important;
    font-weight: 300 !important;
    line-height: 2 !important;
}

.vau-card-body li::marker {
    color: #4ade80;
}

/* ================================================
   THE BRAND  (logo timeline from WP content)
   ================================================ */
.vau-brand-content {
    position: relative;
}

/* Style the WordPress-rendered content cleanly */
.vau-brand-content p {
    font-size: 17px !important;
    font-weight: 300 !important;
    line-height: 1.8 !important;
    color: #475569 !important;
    margin: 0 0 24px 0 !important;
    text-align: center !important;
}

.vau-brand-content img {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    margin: 16px auto;
    display: block;
}

.vau-brand-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
}

.vau-brand-content td {
    padding: 16px;
    text-align: center;
    vertical-align: middle;
}

.vau-brand-content h1,
.vau-brand-content h2,
.vau-brand-content h3 {
    font-weight: 600 !important;
    color: #0f172a !important;
    text-align: center !important;
    margin: 24px 0 16px 0 !important;
}

/* ================================================
   MAP SECTION
   ================================================ */
.vau-map-frame {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    max-width: 1100px;
    margin: 0 auto;
}

.vau-map-frame img {
    width: 100%;
    height: auto;
    display: block;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 767px) {
    .vau-hero {
        min-height: 50vh;
    }

    .vau-hero-title {
        font-size: 40px !important;
    }

    .vau-hero-subtitle {
        font-size: 17px !important;
    }

    .vau-section-light,
    .vau-section-gray,
    .vau-section-dark,
    .vau-section-green,
    .vau-section-map {
        padding: 64px 0;
    }

    .vau-heading {
        font-size: 32px !important;
    }

    .vau-center-header {
        margin-bottom: 40px;
    }

    .vau-two-col+.vau-two-col {
        margin-top: 64px;
    }

    .vau-card {
        padding: 32px 24px !important;
    }

    .vau-card-title {
        font-size: 24px !important;
    }

    .vau-media-logo {
        padding: 32px;
    }

    .vau-highlight-value {
        font-size: 26px !important;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .vau-heading {
        font-size: 36px !important;
    }

    .vau-hero-title {
        font-size: 52px !important;
    }
}