/* About Us Page - Luxury Brand Strategy (Black/White Alternating) */

.about-page {
    background: #020202;
    color: #e5e7eb;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Header - Matching Main Site Design */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(2, 2, 2, 0.9);
    backdrop-filter: blur(30px);
    border-radius: 0;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    z-index: 9999;
    transition: all 0.4s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 3rem;
    height: 65px;
    position: relative;
    z-index: 9999;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-logo a {
    text-decoration: none;
    display: block;
}

.nav-logo h1 {
    font-size: 1.6rem;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 0.15em;
    font-family: 'Montserrat', 'Inter', sans-serif;
    transition: all 0.4s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    position: relative;
    text-transform: uppercase;
    font-style: normal;
    margin: 0;
    cursor: pointer;
}

.nav-logo h1::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    transition: width 0.4s ease;
    border-radius: 1px;
}

.nav-logo a:hover h1::after {
    width: 100%;
}

.nav-logo a:hover h1 {
    color: #3b82f6;
    transform: translateY(-1px);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    padding: 0.75rem 0;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    position: relative;
    transition: all 0.4s ease;
    opacity: 1;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    display: inline-block;
    text-align: center;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -0.25rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    transition: width 0.4s ease;
    border-radius: 1px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: #3b82f6;
    opacity: 1;
}

/* About Hero Section - Premium Style */
.about-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    padding-top: 65px;
    padding-bottom: 6rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(2, 2, 2, 0.7) 0%, rgba(2, 2, 2, 0.5) 50%, rgba(2, 2, 2, 0.8) 100%);
    z-index: 2;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.about-hero-container {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.about-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    margin-bottom: 2rem;
}

.about-hero-title {
    font-size: 3.8rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 2rem;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    letter-spacing: 0.02em;
    line-height: 1.1;
}

.about-hero-title .title-line {
    display: block;
    margin-bottom: 0.5rem;
    transition: all 0.4s ease;
}

.about-hero-title .highlight {
    background: linear-gradient(135deg, #3b82f6, #60a5fa, #1d4ed8, #3b82f6);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 200;
    position: relative;
    animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.about-hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa, #1d4ed8);
    border-radius: 2px;
    animation: line-expand 2s ease 1.2s forwards;
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.3);
}

@keyframes line-expand {
    to { width: 120px; }
}

@keyframes underlineGlow {
    to {
        opacity: 1;
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-hero-subtitle {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    color: #d1d5db;
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Hero Features - Premium Style */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    height: 48px;
    box-sizing: border-box;
}

.feature-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.badge-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
}

.badge-icon i {
    font-size: 1rem;
    transition: all 0.3s ease;
}

.hero-cta {
    opacity: 0;
    animation: fadeInUp 1s ease-out 1s forwards;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2.5rem;
    background: #ffffff;
    color: #020202;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.cta-button:hover {
    background: transparent;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* Story Section - White Background */
.story-section {
    padding: 4rem 0;
    background: #ffffff;
    position: relative;
}

.story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: #e5e7eb;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.story-text {
    max-width: 500px;
}

.section-title {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 2rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 2px;
}

.story-intro {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #1a1a1a;
    margin-bottom: 2rem;
    font-weight: 400;
}

.story-body {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666666;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.story-body:last-child {
    margin-bottom: 0;
}

.story-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.story-image {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.story-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7),
                0 0 100px rgba(59, 130, 246, 0.1);
    border-radius: 24px;
    transition: all 0.5s ease;
    border: 2px solid rgba(255, 255, 255, 0.15);
    overflow: hidden;
}

.story-image:hover img {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8),
                0 0 150px rgba(59, 130, 246, 0.2);
}

/* Philosophy Section - White Background */
.philosophy-section {
    padding: 4rem 0;
    background: #ffffff;
    position: relative;
}

.philosophy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: #e5e7eb;
}

.philosophy-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-grid .philosophy-card:last-child {
    grid-column: 1 / -1;
    max-width: 350px;
    margin: 0 auto;
}

.philosophy-card {
    background: rgba(0, 0, 0, 0.02);
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.philosophy-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.05) 0%, 
        rgba(96, 165, 250, 0.02) 50%, 
        rgba(139, 92, 246, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.philosophy-card:hover::after {
    opacity: 1;
}

.philosophy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.philosophy-card:hover::before {
    transform: scaleX(1);
}

.philosophy-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.6),
                0 0 40px rgba(59, 130, 246, 0.2);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(96, 165, 250, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.card-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 50%;
}

.philosophy-card:hover .card-icon::before {
    opacity: 1;
}

.philosophy-card:hover .card-icon {
    transform: scale(1.15) rotate(10deg);
    border-color: rgba(59, 130, 246, 0.8);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.4);
}

.card-icon i {
    font-size: 2rem;
    color: #3b82f6;
    transition: all 0.3s ease;
}

.philosophy-card:hover .card-icon i {
    color: #ffffff;
}

.philosophy-card h3 {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.philosophy-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666666;
    font-weight: 400;
}

/* Expertise Section - White Background */
.expertise-section {
    padding: 4rem 0;
    background: #ffffff;
    position: relative;
}

.expertise-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: #e5e7eb;
}

.expertise-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.expertise-text {
    max-width: 500px;
}

.expertise-intro {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #1a1a1a;
    margin-bottom: 3rem;
    font-weight: 400;
}

.expertise-features {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.expertise-feature {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(96, 165, 250, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 50%;
}

.expertise-feature:hover .feature-icon::before {
    opacity: 1;
}

.expertise-feature:hover .feature-icon {
    transform: scale(1.15);
    border-color: rgba(59, 130, 246, 0.8);
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.4);
}

.feature-icon i {
    font-size: 1.5rem;
    color: #3b82f6;
    transition: all 0.3s ease;
}

.expertise-feature:hover .feature-icon i {
    color: #ffffff;
}

.feature-content h3 {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666666;
    font-weight: 400;
}

.expertise-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.expertise-image {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.expertise-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7),
                0 0 100px rgba(96, 165, 250, 0.1);
    border-radius: 24px;
    transition: all 0.5s ease;
    border: 2px solid rgba(255, 255, 255, 0.15);
    overflow: hidden;
}

.expertise-image:hover img {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8),
                0 0 150px rgba(96, 165, 250, 0.2);
}

/* Heritage Section - White Background */
.heritage-section {
    padding: 4rem 0;
    background: #ffffff;
    position: relative;
}

.heritage-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: #e5e7eb;
}

.heritage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.heritage-text {
    max-width: 500px;
}

.heritage-intro {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #1a1a1a;
    margin-bottom: 3rem;
    font-weight: 400;
}

.heritage-points {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.heritage-point {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.point-number {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 300;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    flex-shrink: 0;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.heritage-point:hover .point-number {
    opacity: 1;
    transform: scale(1.1);
}

.point-content h3 {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.point-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666666;
    font-weight: 400;
}

.heritage-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.heritage-image {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.heritage-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7),
                0 0 100px rgba(139, 92, 246, 0.1);
    border-radius: 16px;
    transition: all 0.5s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.heritage-image:hover img {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8),
                0 0 150px rgba(139, 92, 246, 0.2);
}

/* Vision Section - White Background */
.vision-section {
    padding: 4rem 0;
    background: #ffffff;
    text-align: center;
    position: relative;
}

.vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: #e5e7eb;
}

.vision-content h2 {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.vision-text {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #666666;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-weight: 400;
}

.vision-stats {
    display: flex;
    justify-content: center;
    gap: 5rem;
    flex-wrap: wrap;
}

.vision-stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s ease;
}

.vision-stat:hover {
    background: rgba(59, 130, 246, 0.05);
    border-color: rgba(59, 130, 246, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.vision-stat .stat-number {
    display: block;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 300;
    color: #3b82f6;
    margin-bottom: 1rem;
    line-height: 1;
}

.vision-stat .stat-label {
    font-size: 0.9rem;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

/* CTA Section - Black Background */
.cta-section {
    padding: 4rem 0;
    background: #000000;
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: #333333;
}

.cta-content h2 {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 400;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button.primary {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 50px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.cta-button.primary span,
.cta-button.primary i {
    position: relative;
    z-index: 3;
}

.cta-button.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #60a5fa, #8b5cf6);
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 50px;
    z-index: 1;
}

.cta-button.primary:hover::before {
    opacity: 1;
}

.cta-button.primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.6),
                0 0 30px rgba(59, 130, 246, 0.3);
}

.cta-button.secondary {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2.5rem;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button.secondary:hover {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    color: #020202;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4),
                0 0 30px rgba(255, 255, 255, 0.2);
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* New Elements CSS */

/* Founder Spotlight */
.founder-spotlight {
    margin-top: 3rem;
    padding: 3rem;
    background: rgba(0, 0, 0, 0.02);
    border-left: 4px solid #3b82f6;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.founder-spotlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa, #8b5cf6);
    border-radius: 2px 2px 0 0;
}

.founder-quote blockquote {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #1a1a1a;
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    font-weight: 400;
}

.founder-quote blockquote::before {
    content: '"';
    position: absolute;
    left: -30px;
    top: -10px;
    font-size: 4rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.4;
    font-family: 'Times New Roman', serif;
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.3));
}

.founder-quote cite {
    font-size: 0.95rem;
    color: #666666;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

/* Expertise Stats */
.expertise-stats {
    display: flex;
    justify-content: space-between;
    margin: 2rem 0 3rem;
    padding: 2rem 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-item .stat-number {
    display: block;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    background: linear-gradient(135deg, #3b82f6, #60a5fa, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.3));
}

.stat-item .stat-label {
    font-size: 0.85rem;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* Vision Manifesto */
.vision-manifesto {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    padding: 3rem 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.manifesto-item {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.manifesto-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.03) 0%, 
        rgba(139, 92, 246, 0.02) 50%, 
        rgba(96, 165, 250, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.manifesto-item:hover::before {
    opacity: 1;
}

.manifesto-item:hover {
    background: rgba(59, 130, 246, 0.05);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
                0 0 30px rgba(59, 130, 246, 0.1);
}

.manifesto-item h4 {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.manifesto-item p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666666;
    font-weight: 400;
}

/* CTA Benefits */
.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0 3rem;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

.benefit-item i {
    font-size: 1.2rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.benefit-item:hover i {
    transform: scale(1.2);
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.5));
}

/* Enhanced Philosophy Grid for 4 items */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

/* Testimonials Section - White Background */
.testimonials-section {
    padding: 4rem 0;
    background: #ffffff;
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: #e5e7eb;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: rgba(0, 0, 0, 0.03);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.03) 0%, 
        rgba(139, 92, 246, 0.02) 50%, 
        rgba(96, 165, 250, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.testimonial-card:hover::after {
    opacity: 1;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.6),
                0 0 50px rgba(59, 130, 246, 0.15);
}

.testimonial-content blockquote {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #1a1a1a;
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
    font-weight: 400;
}

.testimonial-content blockquote::before {
    content: '"';
    position: absolute;
    left: -30px;
    top: -15px;
    font-size: 4rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    font-family: 'Times New Roman', serif;
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-content blockquote::before {
    opacity: 0.6;
    transform: scale(1.1);
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info h4 {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.author-info p {
    font-size: 0.9rem;
    color: #666666;
    font-weight: 400;
    margin: 0;
}

.testimonial-rating {
    display: flex;
    gap: 0.3rem;
}

.testimonial-rating i {
    font-size: 1rem;
    color: #fbbf24;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 3px rgba(251, 191, 36, 0.5));
}

.testimonial-card:hover .testimonial-rating i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 5px rgba(251, 191, 36, 0.8));
}

/* Credentials Showcase */
.credentials-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
    border-top: 1px solid #e5e7eb;
}

.credentials-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.credentials-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.02) 0%, 
        rgba(139, 92, 246, 0.01) 50%, 
        rgba(96, 165, 250, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.credentials-item:hover::before {
    opacity: 1;
}

.credentials-item:hover {
    background: rgba(59, 130, 246, 0.05);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4),
                0 0 30px rgba(59, 130, 246, 0.1);
}

.credential-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(139, 92, 246, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.credential-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 50%;
}

.credentials-item:hover .credential-icon::before {
    opacity: 1;
}

.credentials-item:hover .credential-icon {
    transform: scale(1.2) rotate(15deg);
    border-color: rgba(59, 130, 246, 0.8);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.4);
}

.credential-icon i {
    font-size: 1.5rem;
    color: #3b82f6;
    transition: all 0.3s ease;
}

.credentials-item:hover .credential-icon i {
    color: #ffffff;
}

.credentials-item h4 {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.credentials-item p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666666;
    font-weight: 400;
    margin: 0;
}

/* Scroll animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.philosophy-card,
.expertise-feature,
.heritage-point,
.testimonial-card,
.credentials-item,
.manifesto-item {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.philosophy-card:nth-child(1) { animation-delay: 0.1s; }
.philosophy-card:nth-child(2) { animation-delay: 0.2s; }
.philosophy-card:nth-child(3) { animation-delay: 0.3s; }
.philosophy-card:nth-child(4) { animation-delay: 0.4s; }

.expertise-feature:nth-child(1) { animation-delay: 0.1s; }
.expertise-feature:nth-child(2) { animation-delay: 0.3s; }
.expertise-feature:nth-child(3) { animation-delay: 0.5s; }

.heritage-point:nth-child(1) { animation-delay: 0.1s; }
.heritage-point:nth-child(2) { animation-delay: 0.3s; }
.heritage-point:nth-child(3) { animation-delay: 0.5s; }

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.3s; }
.testimonial-card:nth-child(3) { animation-delay: 0.5s; }

.credentials-item:nth-child(1) { animation-delay: 0.1s; }
.credentials-item:nth-child(2) { animation-delay: 0.3s; }
.credentials-item:nth-child(3) { animation-delay: 0.5s; }

/* Enhanced parallax effects */
@media (prefers-reduced-motion: no-preference) {
    .story-section,
    .philosophy-section,
    .expertise-section,
    .heritage-section,
    .vision-section,
    .testimonials-section {
        transform: translateZ(0);
        will-change: transform;
    }
}

/* Mobile Responsive for New Elements */
@media (max-width: 992px) {
    .founder-spotlight {
        padding: 2rem;
    }
    
    .founder-quote blockquote {
        font-size: 1.2rem;
    }
    
    .expertise-stats {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .vision-manifesto {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-benefits {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .credentials-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    /* Reduce animations on mobile for performance */
    .philosophy-card:hover,
    .testimonial-card:hover,
    .credentials-item:hover,
    .manifesto-item:hover {
        transform: translateY(-5px) scale(1.01);
    }
    
    .card-icon:hover,
    .feature-icon:hover,
    .credential-icon:hover {
        transform: scale(1.05);
    }
}

@media (max-width: 768px) {
    .founder-quote blockquote::before {
        left: -20px;
        font-size: 3rem;
    }
    
    .stat-item .stat-number {
        font-size: 2rem;
    }
    
    .manifesto-item {
        padding: 1.5rem 1rem;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-content blockquote::before {
        left: -20px;
        font-size: 3rem;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .story-content,
    .expertise-content,
    .heritage-content {
        gap: 4rem;
    }
}

@media (max-width: 992px) {
    .hero-content {
        text-align: center;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .story-content,
    .expertise-content,
    .heritage-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .story-text,
    .expertise-text,
    .heritage-text {
        max-width: 100%;
        text-align: center;
    }
    
    .philosophy-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .vision-stats {
        gap: 3rem;
    }
}

@media (max-width: 1024px) {
    .about-hero {
        height: auto;
        padding: 8rem 0 4rem;
        padding-top: 100px;
    }
    
    .about-hero-title {
        font-size: 3rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .vision-stats {
        gap: 2rem;
    }
    
    .nav-menu {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .philosophy-card {
        padding: 2rem 1.5rem;
    }
    
    .expertise-feature,
    .heritage-point {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon,
    .point-number {
        margin: 0 auto 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
}

/* Responsive adjustments for hero features - matching contact page */
@media (max-width: 1200px) {
    .hero-features {
        gap: 2rem;
    }
    
    .feature-badge {
        min-width: 160px;
    }
}

@media (max-width: 768px) {
    .hero-features {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .feature-badge {
        min-width: 140px;
    }
    
    .about-hero-title {
        font-size: 3rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 6rem 0 3rem;
        padding-top: 80px;
    }
    
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-features {
        gap: 1rem;
    }
    
    .feature-badge {
        min-width: 120px;
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
}
