
/* Why Choose Section - Professional Premium */
.why-choose-section {
    padding: 7rem 2rem;
    background: #FFFFFF;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    position: relative;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(42, 89, 52, 0.08) 50%, 
        transparent 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Header - Premium Styling */
.section-header {
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
}

.section-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #111827;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 1.8rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2A5934, #3A7C4E);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6B7280;
    line-height: 1.6;
    font-weight: 400;
    max-width: 700px;
    margin: 2.5rem auto 0;
}

/* Value Points Grid - Premium Layout */
.value-points-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3.5rem;
    justify-content: center;
    align-items: start;
}

/* Individual Value Point - Premium Design */
.value-point {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.value-point::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(42, 89, 52, 0.02) 0%, transparent 100%);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.value-point:hover::before {
    opacity: 1;
}

.value-point:hover .value-icon {
    transform: translateY(-5px);
}

.value-point:hover .value-icon svg {
    stroke: #2A5934;
    stroke-width: 2;
}

/* Premium Icon Styling */
.value-icon {
    margin-bottom: 2rem;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(42, 89, 52, 0.04) 0%, rgba(244, 185, 66, 0.04) 100%);
    border-radius: 18px;
    border: 1px solid rgba(42, 89, 52, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.value-icon svg {
    stroke: #2A5934;
    stroke-width: 1.5;
    transition: all 0.4s ease;
}

/* Premium Content Styling */
.value-content {
    width: 100%;
}

.value-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2A5934;
    line-height: 1.3;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    position: relative;
    display: inline-block;
}

.value-title::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #F4B942;
    opacity: 0.5;
    border-radius: 1px;
}

.value-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #4B5563;
    font-weight: 400;
    margin: 0;
    padding: 0 0.5rem;
}

/* Number Indicator (Subtle) */
.value-number {
    position: absolute;
    top: -10px;
    right: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(42, 89, 52, 0.2);
    letter-spacing: 0.05em;
}

/* Add this to HTML for numbered indicators */
.value-point:nth-child(1) .value-number { content: '01'; }
.value-point:nth-child(2) .value-number { content: '02'; }
.value-point:nth-child(3) .value-number { content: '03'; }
.value-point:nth-child(4) .value-number { content: '04'; }
.value-point:nth-child(5) .value-number { content: '05'; }

/* Responsive Design - Premium */
@media (max-width: 1200px) {
    .value-points-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
    
    .section-title {
        font-size: 2.8rem;
    }
    
    .value-icon {
        width: 65px;
        height: 65px;
    }
}

@media (max-width: 992px) {
    .why-choose-section {
        padding: 6rem 1.5rem;
    }
    
    .value-points-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .value-point {
        padding: 1.25rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-header {
        margin-bottom: 4.5rem;
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 5rem 1.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-title::after {
        width: 60px;
        height: 3px;
        bottom: -12px;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }
    
    .value-title {
        font-size: 1.2rem;
    }
    
    .value-desc {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .why-choose-section {
        padding: 4rem 1rem;
    }
    
    .value-points-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .value-point {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .value-icon {
        width: 65px;
        height: 65px;
    }
}

/* Premium Micro-Interactions */
.value-point {
    cursor: default;
}

.value-point:hover .value-title {
    color: #1F452B;
}

.value-point:hover .value-desc {
    color: #374151;
}

/* Smooth transitions for all interactive elements */
.value-icon,
.value-title,
.value-desc {
    transition: all 0.3s ease;
}

/* Add these subtle hover effects */
.value-point:hover {
    transform: translateY(-3px);
}

/* Add this background pattern for premium feel */
.why-choose-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(42, 89, 52, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(244, 185, 66, 0.02) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

/* Premium typography enhancements */
.value-title {
    text-transform: lowercase;
}

.value-title::first-letter {
    text-transform: uppercase;
}

/* Add this CSS animation for fade-in effect */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.value-point {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.value-point:nth-child(1) { animation-delay: 0.1s; }
.value-point:nth-child(2) { animation-delay: 0.2s; }
.value-point:nth-child(3) { animation-delay: 0.3s; }
.value-point:nth-child(4) { animation-delay: 0.4s; }
.value-point:nth-child(5) { animation-delay: 0.5s; }
.value-point:nth-child(6) { animation-delay: 0.6s; }




/* Clinic Introduction Section */
.clinic-intro {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #F9FAFB 100%);
    position: relative;
    overflow: hidden;
}

.clinic-intro::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(45deg, rgba(42, 89, 52, 0.03) 0%, transparent 100%);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.intro-content {
    padding-right: 2rem;
}

.intro-badge {
    display: inline-block;
    background: linear-gradient(135deg, #2A5934, #3A7C4E);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.intro-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.intro-desc {
    font-size: 1.2rem;
    color: #4B5563;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.intro-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(42, 89, 52, 0.1);
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2A5934;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: #6B7280;
    font-weight: 500;
    margin: 0;
}

.intro-cta {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.cta-primary {
    display: inline-block;
    background: linear-gradient(135deg, #2A5934, #3A7C4E);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(42, 89, 52, 0.2);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 89, 52, 0.3);
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #2A5934;
    font-weight: 600;
    text-decoration: none;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(42, 89, 52, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: rgba(42, 89, 52, 0.05);
    border-color: #2A5934;
}

.intro-image {
    position: relative;
}

.image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    max-width: 200px;
}

.overlay-content i {
    font-size: 2rem;
    color: #2A5934;
    margin-bottom: 0.5rem;
}

.overlay-content h4 {
    font-size: 1.1rem;
    color: #111827;
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.overlay-content p {
    font-size: 0.85rem;
    color: #6B7280;
    margin: 0;
}

/* Clinic Values Section */
.clinic-values {
    padding: 7rem 2rem;
    background: #FFFFFF;
    position: relative;
}

.clinic-values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(42, 89, 52, 0.1) 50%, 
        transparent 100%);
}

.values-header {
    text-align: center;
    margin-bottom: 5rem;
}

.values-title {
    font-size: 3rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.values-subtitle {
    font-size: 1.2rem;
    color: #6B7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: #F9FAFB;
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2A5934, #3A7C4E);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.value-card:hover::before {
    transform: translateY(0);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: white;
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(42, 89, 52, 0.1), rgba(244, 185, 66, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: #2A5934;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #2A5934, #3A7C4E);
    color: white;
}

.value-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.value-card:hover .value-card-title {
    color: #2A5934;
}

.value-card-desc {
    font-size: 1rem;
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .intro-grid {
        gap: 3rem;
    }
    
    .intro-title {
        font-size: 2.8rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .intro-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .clinic-intro,
    .clinic-values {
        padding: 4rem 1.5rem;
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .intro-content {
        padding-right: 0;
        text-align: center;
    }
    
    .intro-title {
        font-size: 2.4rem;
    }
    
    .intro-desc {
        font-size: 1.1rem;
    }
    
    .intro-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .intro-stats {
        grid-template-columns: repeat(3, 1fr);
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .values-title {
        font-size: 2.4rem;
    }
    
    .values-subtitle {
        font-size: 1.1rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .value-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .clinic-intro,
    .clinic-values {
        padding: 3rem 1rem;
    }
    
    .intro-title {
        font-size: 2rem;
    }
    
    .intro-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .values-title {
        font-size: 2rem;
    }
    
    .image-overlay {
        bottom: 1rem;
        right: 1rem;
        padding: 1rem;
        max-width: 150px;
    }
    
    .overlay-content h4 {
        font-size: 1rem;
    }
    
    .overlay-content p {
        font-size: 0.8rem;
    }
}

/* Animation Effects */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.intro-content,
.intro-image,
.values-header,
.value-card {
    animation: fadeIn 0.8s ease-out forwards;
    opacity: 0;
}

.values-header { animation-delay: 0.1s; }
.value-card:nth-child(1) { animation-delay: 0.2s; }
.value-card:nth-child(2) { animation-delay: 0.3s; }
.value-card:nth-child(3) { animation-delay: 0.4s; }
.value-card:nth-child(4) { animation-delay: 0.5s; }



/* ====== ABOUT WHITE FILLING SECTION ====== */
.whitefilling-about {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8faf9 0%, #f0f7f2 100%);
    position: relative;
    overflow: hidden;
}

.whitefilling-about::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at 100% 0%, rgba(42, 89, 52, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.whitefilling-about .container {
    position: relative;
    z-index: 1;
}

.whitefilling-about .section-header {
    margin-bottom: 3rem;
    text-align: center;
}

.whitefilling-about .section-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: #111;
    margin-bottom: 1rem;
}

.whitefilling-about .section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* About Content Layout */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out;
}

.about-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2A5934;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1rem;
}

.about-text h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(to bottom, #2A5934, #4CAF50);
    border-radius: 2px;
}

.about-text > p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2.5rem;
}

/* Features Grid */
.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(42, 89, 52, 0.1);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(42, 89, 52, 0.1);
    border-color: #2A5934;
}

.feature-item i {
    font-size: 1.5rem;
    color: #2A5934;
    background: rgba(42, 89, 52, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 0.3rem;
}

.feature-content p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* About Image */
.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
}

.about-image:hover .image-wrapper {
    transform: perspective(1000px) rotateY(0deg);
}

.image-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover .image-wrapper img {
    transform: scale(1.05);
}

.image-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.8rem 1.2rem;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(42, 89, 52, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: float 3s ease-in-out infinite;
}

.image-badge i {
    color: #2A5934;
    font-size: 1.2rem;
}

.image-badge span {
    font-weight: 600;
    color: #2A5934;
    font-size: 0.9rem;
}

/* Stats Cards */
.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.stat-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: #2A5934;
    box-shadow: 0 15px 30px rgba(42, 89, 52, 0.15);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(42, 89, 52, 0.1), rgba(42, 89, 52, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #2A5934, #4CAF50);
}

.stat-icon i {
    font-size: 1.8rem;
    color: #2A5934;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon i {
    color: white;
}

.stat-info h4 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 0.3rem;
    line-height: 1;
}

.stat-info p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    font-weight: 500;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ====== RESPONSIVE DESIGN ====== */

/* Tablet View (768px - 991px) */
@media (max-width: 991px) {
    .whitefilling-about {
        padding: 4rem 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .about-text {
        order: 2;
    }
    
    .about-image {
        order: 1;
    }
    
    .image-wrapper {
        transform: none;
    }
    
    .about-image:hover .image-wrapper {
        transform: none;
    }
    
    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile View (576px - 767px) */
@media (max-width: 767px) {
    .whitefilling-about {
        padding: 3rem 0;
    }
    
    .whitefilling-about .section-header h2 {
        font-size: 1.8rem;
    }
    
    .about-text h3 {
        font-size: 1.5rem;
    }
    
    .about-text > p {
        font-size: 1rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-item {
        padding: 1rem;
    }
    
    .image-wrapper img {
        height: 300px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 300px;
        margin: 3rem auto 0;
    }
    
    .stat-card {
        padding: 1.5rem 1rem;
    }
}

/* Small Mobile (below 576px) */
@media (max-width: 575px) {
    .whitefilling-about {
        padding: 2.5rem 0;
    }
    
    .whitefilling-about .section-header h2 {
        font-size: 1.6rem;
    }
    
    .whitefilling-about .section-header p {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .about-content {
        gap: 2rem;
    }
    
    .image-wrapper img {
        height: 250px;
    }
    
    .image-badge {
        padding: 0.6rem 1rem;
        bottom: 15px;
        right: 15px;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .stat-icon i {
        font-size: 1.5rem;
    }
    
    .stat-info h4 {
        font-size: 1.3rem;
    }
}

/* Landscape Mobile */
@media (max-height: 600px) and (orientation: landscape) {
    .whitefilling-about {
        padding: 2rem 0;
    }
    
    .about-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .image-wrapper img {
        height: 250px;
    }
}

/* Large Screens (1200px and above) */
@media (min-width: 1200px) {
    .whitefilling-about {
        padding: 6rem 0;
    }
    
    .about-content {
        max-width: 1100px;
        margin: 0 auto 5rem;
    }
    
    .about-stats {
        max-width: 1100px;
        margin: 4rem auto 0;
    }
}

/* Fix for animation performance */
.about-content,
.about-stats,
.feature-item,
.stat-card {
    will-change: transform;
    backface-visibility: hidden;
}

/* Ensure text doesn't overflow */
.about-text h3,
.feature-content h4,
.stat-info h4 {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Touch device optimizations */
@media (hover: none) {
    .feature-item:hover,
    .stat-card:hover {
        transform: none;
    }
    
    .about-image:hover .image-wrapper {
        transform: none;
    }
    
    .about-image:hover .image-wrapper img {
        transform: none;
    }
    
    .stat-card:hover .stat-icon {
        transform: none;
    }
}