/* ════════════════════════════════════════════════
   ULTRA-PROFESSIONAL ABOUT PAGE - FULL CONTENT
   RESPONSIVE + ANIMATED + CORPORATE GRADE
   ════════════════════════════════════════════════ */
:root {
    --gold: #c89f5f;
    --navy: #00234b;
    --dark-navy: #001a38;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-600: #4b5563;
    --shadow-lg: 0 35px 80px -20px rgba(0,0,0,0.2);
    --shadow-xl: 0 50px 100px -25px rgba(0,0,0,0.25);
    --radius: 24px;
    --radius-lg: 32px;
}

* { box-sizing: border-box; }
body { 
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; 
    line-height: 1.7;
}
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.row { display: flex; flex-wrap: wrap; margin: 0 -20px; }
[class*="col-"] { padding: 0 20px; }

/* ═══ HERO WITH FULL CONTENT ═══ */
.about-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--dark-navy) 100%);
    padding: clamp(140px, 22vw, 220px) 0;
    position: relative;
    overflow: hidden;
}

.hero-content { 
    text-align: center; 
    position: relative; 
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero-eyebrow {
    font-size: clamp(0.875rem, 1.3vw, 1.1rem);
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: fadeIn 1.2s ease-out 0.2s both;
}

.hero-title {
    font-size: clamp(3.2rem, 9vw, 6rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 32px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.highlight { 
    color: var(--gold);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--gold);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: rgba(255,255,255,0.95);
    max-width: 720px;
    margin: 0 auto 60px;
    line-height: 1.65;
    animation: fadeIn 1.2s ease-out 0.6s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: clamp(60px, 8vw, 100px);
    flex-wrap: wrap;
    animation: fadeIn 1.5s ease-out 0.8s both;
}

.stat-item {
    text-align: center;
    min-width: 140px;
}

.stat-number {
    display: block;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
}

.stat-label {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ═══ SERVICES SECTION ═══ */
.services-section {
    padding: clamp(120px, 18vw, 180px) 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: clamp(40px, 6vw, 60px);
    margin-top: 80px;
}

.service-card {
    padding: clamp(48px, 8vw, 64px);
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border: 1px solid #f8fafc;
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--gold);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleY(1);
}

.service-card:hover {
    transform: translateY(-16px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), #d4a574);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 28px;
}

.service-card h3 {
    font-size: clamp(1.5rem, 2.5vw, 1.875rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
    text-align: center;
}

.service-card p {
    color: var(--gray-600);
    font-size: 1.1rem;
    line-height: 1.75;
    text-align: center;
}

/* ═══ PROCESS SECTION ═══ */
.process-section {
    padding: clamp(120px, 18vw, 180px) 0;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-50) 100%);
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    margin-top: 80px;
}

.process-step {
    flex: 1;
    min-width: 280px;
    text-align: center;
    padding: 48px 32px;
    position: relative;
}

.process-number {
    width: 72px;
    height: 72px;
    background: var(--white);
    border: 3px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--navy);
    margin: 0 auto 28px;
    box-shadow: 0 10px 30px rgba(200,159,95,0.2);
}

.process-step h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
}

.process-step p {
    color: var(--gray-600);
    margin: 0;
}

/* ═══ CTA SECTION ═══ */
.cta-section {
    padding: clamp(120px, 18vw, 160px) 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--dark-navy) 100%);
    text-align: center;
}

.cta-title {
    font-size: clamp(2.75rem, 7vw, 4.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.1;
}

.cta-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto 48px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    background: var(--gold);
    color: var(--navy);
    padding: clamp(18px, 3vw, 24px) clamp(48px, 6vw, 72px);
    border-radius: 50px;
    font-weight: 700;
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}

.cta-button:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    color: var(--navy);
}

/* ═══ RESPONSIVE PERFECTION ═══ */
@media (max-width: 992px) {
    .row { flex-direction: column; }
    [class*="col-"] { flex: none; width: 100%; margin-bottom: 60px; }
    
    .services-grid, .process-steps {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }
    
    .overview-content { padding-left: 0 !important; margin-top: 48px; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .hero-stats { 
        flex-direction: column; 
        gap: 32px; 
        align-items: center;
    }
    .stat-item { min-width: auto; }
}

@media (max-width: 480px) {
    .about-hero { padding: clamp(80px, 16vw, 120px) 0; }
    .service-card, .process-step { padding: 32px 24px; }
}
