/* Modern CSS Variables */
:root {
    --primary: #2a2a2a;
    --primary-light: #3a3a3a;
    --secondary: #f8f6f2;
    --accent: #e8b4b8;
    --text: #2a2a2a;
    --text-light: #6b7280;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --shadow: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-lg: 0 25px 50px rgba(0,0,0,0.15);
}

/* Modern Breadcrumb */
.modern-breadcrumb {
    background: var(--gradient);
    padding: 80px 0 120px;
    position: relative;
    color: var(--white);
    text-align: center;
}

.breadcrumb-content {
    position: relative;
    z-index: 2;
}

.breadcrumb-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modern-breadcrumb-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.breadcrumb-link {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s;
}

.breadcrumb-link:hover {
    opacity: 0.8;
}

.breadcrumb-divider {
    opacity: 0.7;
}

.breadcrumb-current {
    color: var(--accent);
    font-weight: 600;
}

.breadcrumb-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.breadcrumb-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.breadcrumb-wave .shape-fill {
    fill: var(--white);
}

/* Hero Section */
.about-hero-section {
    padding: 100px 0;
    background: var(--white);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-image-container {
    position: relative;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient);
    opacity: 0.1;
}

.shape-1 { width: 100px; height: 100px; top: -20px; left: -20px; }
.shape-2 { width: 60px; height: 60px; bottom: 40px; right: -30px; }
.shape-3 { width: 80px; height: 80px; top: 50%; right: 20px; }

.hero-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.image-overlay-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    z-index: 3;
    backdrop-filter: blur(10px);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.image-overlay-card h4 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
}

.image-overlay-card p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Hero Content */
.hero-content {
    padding-left: 40px;
}

.section-badge {
    display: inline-block;
    background: var(--gradient);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 3rem;
    color: var(--text);
}

.content-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.content-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.item-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.item-text h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.3rem;
    color: var(--text);
}

.item-text p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
}

/* Promise Section */
.promise-section {
    margin: 3rem 0;
}

.promise-section h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.promise-card {
    background: var(--secondary);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s;
}

.promise-card:hover {
    transform: translateY(-5px);
}

.promise-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.promise-card h5 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.promise-card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--text);
}

.btn-secondary:hover {
    background: var(--text);
    color: var(--white);
}

/* Stats Section */
.stats-section {
    padding: 100px 0;
    background: var(--secondary);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin: 1rem 0;
    color: var(--text);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.stat-content h3 {
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-content p {
    margin: 0;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.stat-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient);
}

/* Expertise Section */
.expertise-section {
    padding: 100px 0;
    background: var(--white);
}

.expertise-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.skills-container {
    margin-top: 2rem;
}

.skill-item {
    margin-bottom: 2rem;
}

.skill-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.skill-name {
    font-weight: 600;
    color: var(--text);
}

.skill-percent {
    font-weight: 700;
    color: var(--text-light);
}

.skill-bar {
    height: 8px;
    background: #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: var(--gradient);
    border-radius: 10px;
    width: 0;
    transition: width 1.5s ease-in-out;
}

.expertise-image {
    position: relative;
}

.image-container {
    position: relative;
}

.image-container img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.floating-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    box-shadow: var(--shadow);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-grid,
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content {
        padding-left: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .promise-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}