/* ==========================================
   ABOUT PAGE STYLES
   ========================================== */

/* General Page Styles */
* {
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* Hero Section */
.about-hero {
    position: relative;
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #f5f1e8 0%, #e8dcc8 100%);
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(186, 159, 99, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.about-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.about-hero-title {
    font-family: 'Urbanist', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--color-gray-900);
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.about-hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-gray-700);
    max-width: 800px;
    margin: 0 auto;
}

.about-hero-images {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.hero-slider-container {
    position: relative;
    height: 450px;
    width: 100%;
    margin: 0 auto;
    perspective: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-slider-track {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.hero-image-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(139, 111, 71, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
    transform-origin: center center;
    background: #fff;
    border: 4px solid var(--color-white);
    opacity: 0;
    z-index: 0;
    /* Default hidden state */
    transform: translate(-50%, -50%) scale(0.5);
    visibility: hidden;
}

/* Active center slide */
.hero-image-card.active {
    transform: translate(-50%, -50%) scale(1.1);
    z-index: 10;
    opacity: 1;
    box-shadow: 0 30px 80px rgba(186, 159, 99, 0.35);
    visibility: visible;
}

/* Previous slide (Left) */
.hero-image-card.prev {
    transform: translate(-130%, -50%) scale(0.85);
    /* Moves left */
    z-index: 5;
    opacity: 0.6;
    visibility: visible;
    cursor: pointer;
}

/* Next slide (Right) */
.hero-image-card.next {
    transform: translate(30%, -50%) scale(0.85);
    /* Moves right */
    z-index: 5;
    opacity: 0.6;
    visibility: visible;
    cursor: pointer;
}

.hero-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-image-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

/* Darken inactive slides */
.hero-image-card.prev::after,
.hero-image-card.next::after {
    opacity: 1;
}

/* Navigation Buttons */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    color: var(--primary-gold);
}

.slider-nav:hover {
    background: var(--primary-gold);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-slider-container {
        height: 350px;
    }

    .hero-image-card {
        width: 240px;
        height: 320px;
    }

    .hero-image-card.active {
        transform: translate(-50%, -50%) scale(1);
    }

    .hero-image-card.prev {
        transform: translate(-120%, -50%) scale(0.8);
    }

    .hero-image-card.next {
        transform: translate(20%, -50%) scale(0.8);
    }

    .slider-nav {
        width: 40px;
        height: 40px;
    }

    .slider-nav.prev {
        left: 0;
    }

    .slider-nav.next {
        right: 0;
    }
}

/* Philosophy & Quote Combined Section */
.about-philosophy-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-cream) 100%);
    position: relative;
    overflow: hidden;
}

.about-philosophy-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(186, 159, 99, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.philosophy-wrapper {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Left Side - Quote Box */
.philosophy-left {
    position: relative;
}

.philosophy-quote-box {
    position: sticky;
    top: 140px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
    padding: 3rem 2.5rem;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(139, 111, 71, 0.3);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.quote-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.quote-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--color-white);
    opacity: 0.9;
}

.featured-quote {
    font-family: 'Urbanist', sans-serif;
    font-size: 1.75rem;
    font-style: italic;
    font-weight: 500;
    color: var(--color-white);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.quote-decoration {
    width: 60px;
    height: 3px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 10px;
}

/* Right Side - Philosophy Content */
.philosophy-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.philosophy-header {
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(186, 159, 99, 0.2);
}

.philosophy-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.philosophy-title {
    font-family: 'Urbanist', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-gray-900);
    line-height: 1.3;
    margin: 0;
}

.philosophy-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.philosophy-text {
    font-size: 1.0625rem;
    line-height: 1.9;
    color: var(--color-gray-700);
    margin: 0;
}

.philosophy-text strong {
    color: var(--color-gray-900);
    font-weight: 600;
}

.philosophy-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 15px rgba(186, 159, 99, 0.15);
}

.feature-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
    color: var(--color-white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.feature-item span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-gray-800);
}

/* Doctor Profile Section */
.about-doctor {
    padding: 100px 0;
    background: var(--color-white);
}

.doctor-profile-card {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    background: var(--color-cream);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.doctor-left-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.doctor-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 320px;
}

.doctor-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.doctor-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--color-white);
    color: var(--primary-gold);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.doctor-badge svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary-gold);
}

.doctor-right-section {
    padding: 3rem 3rem 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.doctor-header {
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(186, 159, 99, 0.2);
}

.doctor-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.doctor-name {
    font-family: 'Urbanist', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-gray-900);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.doctor-position {
    font-size: 1.125rem;
    color: var(--color-gray-600);
    font-weight: 500;
}

.doctor-bio {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.doctor-bio p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-gray-700);
    margin: 0;
}

.doctor-expertise {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(186, 159, 99, 0.15);
}

.expertise-heading {
    font-family: 'Urbanist', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-gray-900);
    margin-bottom: 1.25rem;
}

.expertise-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.expertise-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--color-white);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.expertise-item:hover {
    background: var(--color-white);
    box-shadow: 0 4px 15px rgba(186, 159, 99, 0.15);
    transform: translateX(5px);
}

.expertise-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
    border-radius: 10px;
    flex-shrink: 0;
}

.expertise-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-white);
}

.expertise-item span {
    font-weight: 500;
    color: var(--color-gray-800);
    font-size: 0.95rem;
}

/* Why Choose Us Section */
/* Why Choose Us Section - Golden Glass Redesign */
.about-why-choose {
    padding: 120px 0;
    background: radial-gradient(circle at center, #fbf7f1 0%, #f0e6d5 100%);
    position: relative;
    overflow: hidden;
}

.about-why-choose::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(186, 159, 99, 0.08) 0%, transparent 70%);
    pointer-events: none;
    animation: pulse-glow 8s infinite alternate;
}

.about-why-choose::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(186, 159, 99, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

@keyframes pulse-glow {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.section-title-centered {
    font-family: 'Urbanist', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-gray-900);
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--color-gray-900) 0%, #5d4037 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle-centered {
    text-align: center;
    font-size: 1.2rem;
    color: var(--color-gray-600);
    margin-top: 0;
    margin-bottom: 5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.5px;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.why-choose-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 3.5rem 2.5rem;
    border-radius: 30px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    box-shadow: 0 20px 40px rgba(139, 111, 71, 0.05), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    overflow: hidden;
}

.why-choose-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.why-choose-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(186, 159, 99, 0.15), inset 0 0 0 1px rgba(186, 159, 99, 0.3);
    background: rgba(255, 255, 255, 0.85);
}

.why-choose-card:hover::before {
    opacity: 1;
}

.why-choose-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
    border-radius: 30px;
    box-shadow: 0 15px 35px rgba(186, 159, 99, 0.15);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    color: var(--primary-gold);
    border: 1px solid rgba(186, 159, 99, 0.1);
}

.why-choose-card:hover .why-choose-icon {
    transform: scale(1.1) rotate(-5deg);
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
    color: var(--color-white);
    box-shadow: 0 20px 40px rgba(186, 159, 99, 0.3);
    border-color: transparent;
}

.why-choose-icon svg {
    width: 48px;
    height: 48px;
    transition: all 0.5s ease;
    stroke-width: 1.5;
}

.why-choose-title {
    font-family: 'Urbanist', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 1.25rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.why-choose-card:hover .why-choose-title {
    color: var(--primary-gold-dark);
}

.why-choose-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-gray-600);
    transition: color 0.3s ease;
}

.why-choose-card:hover .why-choose-description {
    color: var(--color-gray-800);
}

/* CTA Section */
.about-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--color-gray-900) 0%, var(--color-brown) 100%);
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(186, 159, 99, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.about-cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-quote {
    font-family: 'Urbanist', sans-serif;
    font-size: 2rem;
    font-style: italic;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.cta-title {
    font-family: 'Urbanist', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 3rem;
    line-height: 1.4;
}

.cta-actions {
    margin-bottom: 3rem;
}

.btn-whatsapp-large {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 3rem;
    background: #25D366;
    color: var(--color-white);
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.btn-whatsapp-large:hover {
    background: #20BA5A;
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-large svg {
    width: 28px;
    height: 28px;
}

.cta-social {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
}

.social-text {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
    font-weight: 500;
}

.cta-social .social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
    border: 2px solid var(--primary-gold);
    color: var(--color-white);
    font-weight: 600;
    font-size: 1.0625rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(186, 159, 99, 0.3);
}

.cta-social .social-link:hover {
    background: linear-gradient(135deg, var(--primary-gold-dark) 0%, var(--primary-gold) 100%);
    border-color: var(--primary-gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(186, 159, 99, 0.4);
}

.cta-social .social-link svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* ==========================================
   RESPONSIVE STYLES
   ========================================== */

@media (max-width: 1024px) {
    .about-hero-title {
        font-size: 2.5rem;
    }

    .about-hero-subtitle {
        font-size: 1rem;
    }

    .about-hero-images {
        gap: 1.5rem;
    }

    .philosophy-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .philosophy-quote-box {
        position: relative;
        top: 0;
        min-height: 300px;
    }

    .philosophy-title {
        font-size: 2rem;
    }

    .doctor-profile-card {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .doctor-left-section {
        padding: 3rem 2rem;
    }

    .doctor-right-section {
        padding: 3rem 2rem;
    }

    .doctor-name {
        font-size: 2rem;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .why-choose-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 120px 1rem 80px;
    }

    .about-hero-title {
        font-size: 2rem;
    }

    .about-philosophy-section {
        padding: 60px 1rem;
    }

    .philosophy-wrapper {
        gap: 2rem;
    }

    .philosophy-quote-box {
        padding: 2.5rem 2rem;
        min-height: 280px;
        border-radius: 20px;
    }

    .quote-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1.5rem;
    }

    .quote-icon svg {
        width: 28px;
        height: 28px;
    }

    .featured-quote {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .philosophy-title {
        font-size: 1.75rem;
    }

    .philosophy-text {
        font-size: 1rem;
    }

    .feature-item {
        padding: 0.875rem 1.25rem;
    }

    .feature-icon {
        width: 28px;
        height: 28px;
        font-size: 0.875rem;
    }

    .feature-item span {
        font-size: 0.9375rem;
    }

    .about-hero-subtitle {
        font-size: 0.95rem;
    }

    .about-hero-images {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
        padding: 0 0.5rem;
    }

    .hero-image-card {
        aspect-ratio: 4/5;
    }

    .about-quote {
        padding: 60px 1rem;
    }

    .quote-text {
        font-size: 1.5rem;
        padding: 0 2rem;
    }

    .quote-text::before,
    .quote-text::after {
        font-size: 3rem;
    }

    .about-philosophy {
        padding: 60px 1rem;
    }

    .philosophy-text {
        font-size: 1rem;
    }

    .about-doctor {
        padding: 60px 1rem;
    }

    .doctor-profile-card {
        border-radius: 20px;
        margin: 0;
    }

    .doctor-left-section {
        padding: 2.5rem 1.5rem;
    }

    .doctor-right-section {
        padding: 2.5rem 1.5rem;
    }

    .doctor-name {
        font-size: 1.75rem;
    }

    .doctor-position {
        font-size: 1rem;
    }

    .doctor-bio p {
        font-size: 0.95rem;
    }

    .expertise-heading {
        font-size: 1.25rem;
    }

    .about-why-choose {
        padding: 60px 1rem;
    }

    .section-title-centered {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .section-subtitle-centered {
        margin-bottom: 3rem;
        font-size: 1rem;
        padding: 0 1rem;
    }

    .why-choose-card {
        padding: 2.5rem 2rem;
    }

    .why-choose-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1.75rem;
    }

    .why-choose-icon svg {
        width: 40px;
        height: 40px;
    }

    .why-choose-title {
        font-size: 1.625rem;
    }

    .why-choose-description {
        font-size: 0.9375rem;
    }

    .about-cta {
        padding: 80px 1rem;
    }

    .cta-quote {
        font-size: 1.5rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .btn-whatsapp-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .btn-whatsapp-large svg {
        width: 24px;
        height: 24px;
    }

    .social-text {
        font-size: 1rem;
    }

    .cta-social .social-link {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .cta-social .social-link svg {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 480px) {
    .about-hero-content {
        padding: 0 1rem;
        margin-bottom: 3rem;
    }

    .about-hero-title {
        font-size: 1.625rem;
        line-height: 1.4;
    }

    .about-hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .about-hero-images {
        padding: 0 1rem;
        gap: 1rem;
    }

    .hero-image-card {
        border-radius: 16px;
    }

    .philosophy-quote-box {
        padding: 2rem 1.5rem;
        min-height: 250px;
    }

    .featured-quote {
        font-size: 1.25rem;
    }

    .philosophy-label {
        font-size: 0.8rem;
        letter-spacing: 1.5px;
    }

    .philosophy-title {
        font-size: 1.5rem;
    }

    .philosophy-text {
        font-size: 0.9375rem;
    }

    .feature-item {
        padding: 0.75rem 1rem;
    }

    .feature-icon {
        width: 26px;
        height: 26px;
        font-size: 0.8rem;
    }

    .feature-item span {
        font-size: 0.875rem;
    }

    .section-title-centered {
        font-size: 1.75rem;
    }

    .section-subtitle-centered {
        font-size: 0.9375rem;
        margin-bottom: 2.5rem;
    }

    .doctor-badge {
        padding: 0.6rem 1.25rem;
        font-size: 0.85rem;
        bottom: 1rem;
    }

    .doctor-badge svg {
        width: 18px;
        height: 18px;
    }

    .expertise-icon {
        width: 36px;
        height: 36px;
    }

    .expertise-icon svg {
        width: 18px;
        height: 18px;
    }

    .expertise-item span {
        font-size: 0.9rem;
    }

    .btn-whatsapp-large {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 0.9375rem;
    }

    .social-text {
        font-size: 0.9375rem;
    }

    .cta-social .social-link {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }
}