/* ========================================
   CREATIVE ABOUT SECTION - NO RECTANGLES!
   Circles, Hexagons, Diamonds, Glassmorphism
   ======================================== */

/* Hero Introduction */
.about-hero-intro {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.hero-badge-floating {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 2rem;
    background: rgba(201, 169, 97, 0.1);
    border: 2px solid rgba(201, 169, 97, 0.3);
    border-radius: 50px;
    margin-bottom: 2rem;
    animation: none !important;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(0) rotate(0deg); }
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: #C9A961;
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(201, 169, 97, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(201, 169, 97, 0);
    }
}

.about-main-title {
    font-family: var(--font-luxury);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    opacity: 0;
    animation: titleSlideIn 0.8s ease-out forwards;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

@keyframes titleSlideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.gradient-shine {
    background: linear-gradient(135deg, #C9A961 0%, #E8D7B0 50%, #C9A961 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: shine 3s linear infinite;
}

@keyframes shine {
    to { background-position: 200% center; }
}

.about-subtitle {
    font-size: 1.1rem;
    color: rgba(10, 40, 24, 0.7);
    font-style: italic;
}

/* ========================================
   CIRCULAR STATS - NO RECTANGLES!
   ======================================== */

.stats-circular-grid {
    display: none !important;
}

.stat-circle {
    position: relative;
    animation: none;
    opacity: 1;
}

.stat-circle:nth-child(1) { animation-delay: 0s; }
.stat-circle:nth-child(2) { animation-delay: 0s; }
.stat-circle:nth-child(3) { animation-delay: 0s; }
.stat-circle:nth-child(4) { animation-delay: 0s; }

@keyframes circlePopIn {
    from {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.circle-progress {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto;
}

.circle-progress svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.circle-bg {
    fill: none;
    stroke: rgba(201, 169, 97, 0.1);
    stroke-width: 8;
}

.circle-fill {
    fill: none;
    stroke: url(#circleGradient);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 339;
    stroke-dashoffset: 339;
    animation: fillCircle 2s ease-out forwards;
}

@keyframes fillCircle {
    to {
        stroke-dashoffset: 0;
    }
}

.circle-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.circle-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    animation: none;
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(0); }
}

.circle-number {
    display: block;
    font-family: var(--font-luxury);
    font-size: 2rem;
    font-weight: 400;
    color: #0D3520;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.circle-label {
    font-size: 0.75rem;
    color: rgba(10, 40, 24, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ========================================
   GLASSMORPHISM MISSION CARD
   ======================================== */

.mission-glass-card {
    position: relative;
    margin: 4rem 0;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 30px;
    border: 1px solid rgba(201, 169, 97, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.glass-bg {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.1) 0%, transparent 70%);
    animation: glassRotate 20s linear infinite;
}

@keyframes glassRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.mission-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.mission-icon-float {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: none !important;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.mission-content h4 {
    font-family: var(--font-luxury);
    font-size: 2rem;
    color: #0D3520;
    margin-bottom: 1.5rem;
}

.mission-content p {
    font-size: 1.1rem;
    color: rgba(10, 40, 24, 0.85);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.mission-metrics {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.metric-badge {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #C9A961 0%, #9B7E3C 100%);
    border-radius: 50px;
    color: #0A2818;
    text-align: center;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.4);
    transition: transform 0.3s ease;
}

.metric-badge:hover {
    transform: translateY(-5px) scale(1.05);
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.metric-label {
    display: block;
    font-size: 0.85rem;
    opacity: 0.9;
}

/* ========================================
   FLOATING BUBBLES - EXPERTISE
   ======================================== */

.expertise-bubbles {
    margin: 4rem 0;
    text-align: center;
}

.expertise-title {
    font-family: var(--font-luxury);
    font-size: 2rem;
    color: #0D3520;
    margin-bottom: 3rem;
}

.bubbles-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.bubble-item {
    text-align: center;
    animation: none !important;
}

@keyframes bubbleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(0); }
}

.bubble {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.2) 0%, rgba(26, 82, 54, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1rem;
    border: 3px solid rgba(201, 169, 97, 0.3);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    cursor: pointer;
    position: relative;
}

.bubble::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    width: 30%;
    height: 30%;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    filter: blur(10px);
}

.bubble:hover {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.4);
    border-color: #C9A961;
}

.bubble-item span {
    display: block;
    font-size: 0.9rem;
    color: #0D3520;
    font-weight: 600;
}

/* ========================================
   TIMELINE - JOURNEY
   ======================================== */

.journey-timeline {
    margin: 5rem 0;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(10, 40, 24, 0.05) 0%, rgba(201, 169, 97, 0.05) 100%);
    border-radius: 30px;
}

.timeline-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-header h4 {
    font-family: var(--font-luxury);
    font-size: 2.5rem;
    color: #0D3520;
    margin-bottom: 2rem;
}

.timeline-line {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #C9A961, transparent);
    margin: 0 auto;
}

.timeline-items {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-items::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #C9A961 0%, rgba(201, 169, 97, 0.3) 100%);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    opacity: 0;
    animation: timelineSlideIn 0.8s ease-out forwards;
    animation-delay: var(--delay);
}

@keyframes timelineSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.timeline-item:nth-child(odd) .timeline-card {
    margin-right: calc(50% + 40px);
}

.timeline-item:nth-child(even) .timeline-card {
    margin-left: calc(50% + 40px);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 20px;
    width: 20px;
    height: 20px;
    background: #C9A961;
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 5px rgba(201, 169, 97, 0.2);
    z-index: 2;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% {
        box-shadow: 0 0 0 5px rgba(201, 169, 97, 0.2);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(201, 169, 97, 0);
    }
}

.timeline-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    border: 2px solid rgba(201, 169, 97, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.timeline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.3);
}

.timeline-date {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #C9A961 0%, #9B7E3C 100%);
    color: #0A2818;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.timeline-card h5 {
    font-family: var(--font-luxury);
    font-size: 1.5rem;
    color: #0D3520;
    margin-bottom: 0.75rem;
}

.timeline-card p {
    color: rgba(10, 40, 24, 0.8);
    line-height: 1.6;
}

/* ========================================
   DIAMOND LEADER CARD
   ======================================== */

.leadership-section {
    margin: 5rem 0;
    text-align: center;
}

.section-title-fancy {
    font-family: var(--font-luxury);
    font-size: 2.5rem;
    color: #0D3520;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.title-decoration {
    color: #C9A961;
    font-size: 2rem;
    animation: decorationSpin 4s linear infinite;
}

@keyframes decorationSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.leader-diamond {
    margin: 0 auto 4rem;
    max-width: 500px;
}

.diamond-shape {
    position: relative;
    width: 100%;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 245, 240, 0.95) 100%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    box-shadow: 0 20px 60px rgba(201, 169, 97, 0.3);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.diamond-shape:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 30px 80px rgba(201, 169, 97, 0.5);
}

.diamond-content {
    position: relative;
    z-index: 1;
}

.leader-avatar-large {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #C9A961 0%, #9B7E3C 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #0A2818;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.4);
}

.avatar-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 3px solid rgba(201, 169, 97, 0.3);
    border-radius: 50%;
    animation: ringPulse 3s ease-in-out infinite;
}

@keyframes ringPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
}

/* Slower ring pulse for mobile */
@media (max-width: 768px) {
    .avatar-ring {
        animation: ringPulse 5s ease-in-out infinite;
    }
}

.leader-badge-gold {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, #C9A961 0%, #E8D7B0 100%);
    color: #0A2818;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.4);
}

.leader-name-large {
    font-family: var(--font-luxury);
    font-size: 2rem;
    margin-bottom: 0.75rem;
    font-style: normal;
}

.leader-name-large a {
    color: #0D3520;
    text-decoration: none;
    background: linear-gradient(135deg, #0D3520 0%, #C9A961 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    font-style: normal;
}

.leader-name-large a:hover {
    background: linear-gradient(135deg, #C9A961 0%, #E8D7B0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.leader-tagline {
    font-size: 1rem;
    color: rgba(10, 40, 24, 0.7);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.linkedin-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    background: #0077B5;
    color: #FFFFFF;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 119, 181, 0.3);
}

.linkedin-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 119, 181, 0.5);
    background: #006399;
}

/* ========================================
   HEXAGON EXECUTIVE CARDS
   ======================================== */

.executives-hexagon {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.hexagon-card {
    width: 200px;
}

.hexagon-shape {
    position: relative;
    width: 200px;
    height: 230px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 245, 240, 0.95) 100%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.3);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hexagon-shape:hover {
    transform: translateY(-10px) rotate(5deg);
    box-shadow: 0 25px 60px rgba(201, 169, 97, 0.5);
}

.hexagon-content {
    text-align: center;
    padding: 2rem 1.5rem;
}

.exec-avatar {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #C9A961 0%, #9B7E3C 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #0A2818;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(201, 169, 97, 0.4);
}

.exec-role {
    display: block;
    font-size: 0.7rem;
    color: #C9A961;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.exec-name {
    font-family: var(--font-luxury);
    font-size: 1.2rem;
    color: #0D3520;
    margin-bottom: 0.5rem;
}

.exec-title {
    font-size: 0.8rem;
    color: rgba(10, 40, 24, 0.7);
    line-height: 1.4;
}

/* ========================================
   MOBILE HERO TEXT FIX
   ======================================== */

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: left;
        padding: 0 20px;
    }
    
    .hero-content {
        width: 100%;
        max-width: 100%;
    }
    
    .hero-title,
    .hero-subtitle {
        text-align: left;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        align-items: stretch;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        text-align: left;
    }
    
    .hero-trust-indicators {
        text-align: left;
    }
    
    /* About Section Mobile */
    .stats-circular-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 1rem;
        justify-items: center;
    }
    
    .stat-circle {
        width: 100%;
        max-width: 130px;
        margin: 0 auto;
    }
    
    .circle-progress {
        width: 120px;
        height: 120px;
        margin: 0 auto;
    }
    
    .circle-icon {
        font-size: 1.5rem;
    }
    
    .circle-number {
        font-size: 1.5rem;
    }
    
    .mission-glass-card {
        padding: 2rem 1.5rem;
    }
    
    .mission-icon-float {
        font-size: 3rem;
    }
    
    .bubbles-container {
        gap: 1.5rem;
    }
    
    .bubble {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .timeline-items::before {
        left: 20px;
    }
    
    .timeline-item:nth-child(odd) .timeline-card,
    .timeline-item:nth-child(even) .timeline-card {
        margin-left: 60px;
        margin-right: 0;
    }
    
    .timeline-dot {
        left: 20px;
    }
    
    .diamond-shape {
        padding: 3rem 2rem;
    }
    
    .executives-hexagon {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 2rem;
    }
    
    .hexagon-card {
        width: 150px !important;
        max-width: 150px !important;
        flex: 0 0 150px !important;
        margin: 0 !important;
    }
    
    .hexagon-shape {
        width: 150px !important;
        height: 173px !important;
    }
    
    .exec-avatar {
        width: 45px !important;
        height: 45px !important;
        font-size: 1.1rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .exec-role {
        font-size: 0.65rem !important;
        margin-bottom: 0.3rem !important;
    }
    
    .exec-name {
        font-size: 0.9rem !important;
        margin-bottom: 0.3rem !important;
    }
    
    .exec-title {
        font-size: 0.65rem !important;
        line-height: 1.2 !important;
    }
    
    .hexagon-content {
        padding: 1rem 0.5rem !important;
    }
}

/* ========================================
   MOBILE SPECIAL FEATURES
   ======================================== */

@media (max-width: 768px) {
    /* Swipe Gesture Indicator */
    .swipe-hint {
        position: fixed;
        bottom: 100px;
        left: 50%;
        transform: translateX(-50%);
        padding: 0.75rem 1.5rem;
        background: rgba(10, 40, 24, 0.9);
        color: #FFFFFF;
        border-radius: 50px;
        font-size: 0.85rem;
        z-index: 999;
        animation: swipeHintBounce 2s ease-in-out infinite;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
    
    @keyframes swipeHintBounce {
        0%, 100% { transform: translateX(-50%) translateY(0); }
        50% { transform: translateX(-50%) translateY(-10px); }
    }
    
    /* Touch Ripple Effect */
    .touch-ripple {
        position: absolute;
        border-radius: 50%;
        background: rgba(201, 169, 97, 0.5);
        transform: scale(0);
        animation: ripple 0.6s ease-out;
        pointer-events: none;
    }
    
    @keyframes ripple {
        to {
            transform: scale(4);
            opacity: 0;
        }
    }
    
    /* Mobile Floating Action Menu */
    .mobile-fab-menu {
        position: fixed;
        bottom: 80px;
        right: 20px;
        z-index: 999;
    }
    
    .fab-main {
        width: 56px;
        height: 56px;
        background: linear-gradient(135deg, #C9A961 0%, #9B7E3C 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #0A2818;
        font-size: 1.5rem;
        box-shadow: 0 4px 20px rgba(201, 169, 97, 0.5);
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .fab-main:active {
        transform: scale(0.9);
    }
    
    /* Parallax Scroll Effect */
    .parallax-mobile {
        transform: translateZ(0);
        will-change: transform;
    }
    
    /* Smooth Scroll Snap */
    .scroll-snap-container {
        scroll-snap-type: y mandatory;
        overflow-y: scroll;
        height: 100vh;
    }
    
    .scroll-snap-section {
        scroll-snap-align: start;
        min-height: 100vh;
    }
}


/* ========================================
   TEXT VISIBILITY FIXES FOR MOBILE
   ======================================== */

/* Why Choose Grid */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.why-item {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 12px;
    border: 1px solid rgba(201, 169, 97, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.3);
    border-color: #C9A961;
}

.why-item h4 {
    color: #0D3520 !important;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3);
}

.why-item p {
    color: rgba(10, 40, 24, 0.9) !important;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* About text sections */
.about-text h3 {
    color: #0D3520 !important;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
}

.about-text p {
    color: rgba(10, 40, 24, 0.9) !important;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Expertise bubbles text */
.expertise-title {
    color: #0D3520 !important;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.bubble-item span {
    color: #0D3520 !important;
    font-weight: 700;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3);
}

/* Mission content */
.mission-content h4 {
    color: #0D3520 !important;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.mission-content p {
    color: rgba(10, 40, 24, 0.9) !important;
    line-height: 1.8;
}

.mission-content strong {
    color: #0D3520 !important;
    font-weight: 800;
}

/* Mobile specific fixes */
@media (max-width: 768px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .why-item {
        padding: 1.25rem;
    }
    
    .why-item h4 {
        font-size: 1rem;
    }
    
    .why-item p {
        font-size: 0.9rem;
    }
    
    .about-text h3 {
        font-size: 1.5rem;
    }
    
    .about-text p {
        font-size: 0.95rem;
    }
    
    .bubbles-container {
        gap: 1.5rem;
    }
    
    .bubble {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .bubble-item span {
        font-size: 0.85rem;
    }
}


/* ========================================
   ABOUT HERO INTRO TEXT VISIBILITY FIX
   ======================================== */

.about-hero-intro {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
}

.hero-badge-floating {
    animation: none !important;
    transform: translateY(0) !important;
}

.hero-badge-floating span:not(.pulse-dot) {
    color: #0D3520 !important;
    font-weight: 700;
}

.pulse-dot {
    animation: none !important;
    box-shadow: 0 0 0 0 rgba(201, 169, 97, 0.7) !important;
}

.about-main-title {
    color: #0D3520 !important;
    font-weight: 600;
}

.title-line {
    opacity: 1 !important;
    animation: none !important;
    color: #0D3520 !important;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.gradient-shine {
    animation: none !important;
    background: linear-gradient(135deg, #C9A961 0%, #E8D7B0 50%, #C9A961 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.about-subtitle {
    color: rgba(10, 40, 24, 0.9) !important;
    font-weight: 500;
    line-height: 1.7;
}

/* Mobile fixes */
@media (max-width: 768px) {
    .about-hero-intro {
        padding: 2rem 1.5rem;
    }
    
    .about-main-title {
        font-size: 1.75rem;
    }
    
    .about-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-hero-intro {
        padding: 1.5rem 1rem;
    }
    
    .about-main-title {
        font-size: 1.5rem;
        line-height: 1.4;
    }
    
    .about-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-badge-floating {
        padding: 0.5rem 1.5rem;
        font-size: 0.85rem;
    }
}


/* ========================================
   MOBILE STATS SUMMARY - VISIBLE ON MOBILE
   ======================================== */

.mobile-stats-summary {
    display: none !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.mobile-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.15) 0%, rgba(19, 91, 58, 0.15) 100%);
    border-radius: 12px;
    border: 2px solid rgba(201, 169, 97, 0.4);
}

.mobile-stat-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.mobile-stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: #0D3520;
    display: block;
    margin-bottom: 0.25rem;
}

.mobile-stat-label {
    font-size: 0.9rem;
    color: rgba(10, 40, 24, 0.9);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .mobile-stats-summary {
        display: grid !important;
    }
    
    /* Hide circular stats on all devices */
    .stats-circular-grid {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .mobile-stats-summary {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .mobile-stat {
        padding: 0.75rem;
    }
    
    .mobile-stat-icon {
        font-size: 2rem;
    }
    
    .mobile-stat-value {
        font-size: 1.75rem;
    }
    
    .mobile-stat-label {
        font-size: 0.8rem;
    }
}


/* ========================================
   ENHANCED MOBILE VISIBILITY
   ======================================== */

@media (max-width: 768px) {
    /* Make journey timeline more visible on mobile */
    .journey-timeline {
        margin: 3rem 0;
        padding: 2rem 1rem;
        background: rgba(255, 255, 255, 0.95);
    }
    
    .timeline-header h4 {
        font-size: 1.8rem;
        color: #0D3520 !important;
    }
    
    .timeline-card {
        background: rgba(255, 255, 255, 1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .timeline-card h5 {
        color: #0D3520 !important;
        font-size: 1.2rem;
    }
    
    .timeline-card p {
        color: rgba(10, 40, 24, 0.9) !important;
        font-size: 0.9rem;
    }
    
    /* Mission card visibility */
    .mission-glass-card {
        background: rgba(255, 255, 255, 0.98);
        padding: 2rem 1.5rem;
    }
    
    .mission-content h4 {
        color: #0D3520 !important;
        font-size: 1.5rem;
    }
    
    .mission-content p {
        color: rgba(10, 40, 24, 0.95) !important;
        font-size: 0.95rem;
    }
    
    /* Leadership section */
    .section-title-fancy {
        color: #0D3520 !important;
        font-size: 1.8rem;
    }
    
    .leader-name-large a {
        color: #0D3520 !important;
    }
    
    .leader-tagline {
        color: rgba(10, 40, 24, 0.8) !important;
    }
}


/* ========================================
   FORCE DISABLE ALL SHAKING ANIMATIONS
   ======================================== */

/* Disable ALL floating/bouncing animations globally */
.hero-badge-floating,
.animated-badge,
.pulse-dot,
.badge-pulse,
.circle-icon,
.mission-icon-float,
.mission-icon-large,
.bubble-item,
.bubble,
.trust-badge,
.hero-trust-indicators,
*[class*="float"],
*[class*="bounce"],
*[class*="pulse"] {
    animation: none !important;
    transform: translateY(0) !important;
}

/* Override any keyframe animations */
@keyframes floatBadge {
    0%, 100% { transform: translateY(0) rotate(0deg); }
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
}

@keyframes bubbleFloat {
    0%, 100% { transform: translateY(0); }
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
}

@keyframes pulseDot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201, 169, 97, 0.7); }
}

/* ========================================
   FORCE TEXT VISIBILITY ON MOBILE
   ======================================== */

@media (max-width: 768px) {
    /* Ensure all text is visible with high contrast */
    .about-hero-intro,
    .about-main-title,
    .about-subtitle,
    .title-line,
    .gradient-shine,
    .hero-badge-floating span,
    .mobile-stats-summary,
    .mobile-stat-label,
    .mobile-stat-value,
    .journey-timeline,
    .timeline-card h5,
    .timeline-card p,
    .mission-content h4,
    .mission-content p,
    .section-title-fancy,
    .leader-name-large,
    .leader-tagline,
    .why-item h4,
    .why-item p,
    .bubble-item span,
    .expertise-title {
        opacity: 1 !important;
        visibility: visible !important;
        color: #0D3520 !important;
        text-shadow: none !important;
    }
    
    /* Specific overrides for light text on dark backgrounds */
    .about-subtitle,
    .timeline-card p,
    .mission-content p,
    .leader-tagline,
    .why-item p {
        color: rgba(10, 40, 24, 0.9) !important;
    }
    
    /* Ensure backgrounds are visible */
    .about-hero-intro {
        background: rgba(255, 255, 255, 0.98) !important;
        padding: 2rem 1.5rem !important;
        border-radius: 15px !important;
        margin-bottom: 2rem !important;
    }
    
    .mobile-stats-summary {
        background: rgba(255, 255, 255, 0.98) !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    }
    
    .journey-timeline {
        background: rgba(255, 255, 255, 0.95) !important;
    }
    
    .mission-glass-card {
        background: rgba(255, 255, 255, 0.98) !important;
    }
    
    /* Remove any transform that might hide content */
    .title-line,
    .stat-circle,
    .timeline-item,
    .bubble-item {
        transform: none !important;
        opacity: 1 !important;
    }
}

@media (max-width: 480px) {
    /* Extra small screens - ensure everything is visible */
    .about-hero-intro {
        padding: 1.5rem 1rem !important;
    }
    
    .about-main-title {
        font-size: 1.5rem !important;
        line-height: 1.4 !important;
    }
    
    .about-subtitle {
        font-size: 0.95rem !important;
    }
    
    .mobile-stats-summary {
        padding: 1rem !important;
    }
}


/* ========================================
   MOBILE QUICK INFO - FILLS EMPTY SPACE
   ======================================== */

.mobile-quick-info {
    display: none;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.quick-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 12px;
    border-left: 4px solid #C9A961;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.info-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #0D3520;
    margin-bottom: 0.25rem;
}

.info-content p {
    font-size: 0.85rem;
    color: rgba(10, 40, 24, 0.8);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .mobile-quick-info {
        display: flex !important;
        justify-content: center;
        align-items: center;
    }
    
    .quick-info-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .info-icon {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .quick-info-item {
        padding: 1rem;
    }
    
    .info-icon {
        font-size: 1.75rem;
    }
    
    .info-content h4 {
        font-size: 0.95rem;
    }
    
    .info-content p {
        font-size: 0.8rem;
    }
}


/* ========================================
   ENSURE ALL SECTIONS ARE VISIBLE ON MOBILE
   ======================================== */

@media (max-width: 768px) {
    /* Make sure about section has proper spacing */
    .about-content {
        padding: 2rem 1rem !important;
    }
    
    .about-hero-intro {
        margin-bottom: 1.5rem !important;
    }
    
    /* Ensure journey timeline is visible and not hidden */
    .journey-timeline {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin: 2rem 0 !important;
        padding: 2rem 1rem !important;
    }
    
    .timeline-header {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .timeline-items {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .timeline-item {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin-bottom: 2rem !important;
    }
    
    /* Ensure mission card is visible */
    .mission-glass-card {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin: 2rem 0 !important;
    }
    
    /* Ensure leadership section is visible */
    .leadership-section {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin: 2rem 0 !important;
    }
    
    /* Remove any min-height that might cause empty space */
    .stats-circular-grid,
    .expertise-bubbles {
        min-height: 0 !important;
        height: auto !important;
    }
}


/* Mobile hexagon cards - match CEO styling */
@media (max-width: 768px) {
    .hexagon-shape {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 245, 240, 0.95) 100%) !important;
        box-shadow: 0 15px 40px rgba(201, 169, 97, 0.3) !important;
    }
    
    .hexagon-shape:hover {
        box-shadow: 0 25px 60px rgba(201, 169, 97, 0.5) !important;
    }
}
