/* Reset e Variáveis */
:root {
    --primary-color: #6D417B;
    --secondary-color: #4BB5C1;
    --accent-color: #4BB5C1;
    --green-accent: #a8d530;
    --dark-bg: #1a2332;
    --light-bg: #f8f9fa;
    --text-dark: #333;
    --text-light: #666;
    --white: #fff;
    --primary-light: rgba(109, 65, 123, 0.1);
    --secondary-light: rgba(75, 181, 193, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* Botões */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #4aa9a7;
    transform: translateY(-2px);
}

.btn-green {
    background: var(--green-accent);
    color: var(--white);
}

.btn-green:hover {
    background: #96c020;
}

/* Seções */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    color: #5d7a15;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-heading {
    font-size: 36px;
    color: var(--primary-color);
    font-weight: 700;
}

/* Hero Section - Modern Design */
.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    contain: layout style paint;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: linear-gradient(135deg, var(--secondary-light), var(--primary-light));
    border-radius: 50%;
    z-index: 1;
    will-change: transform;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(168, 213, 48, 0.05), var(--secondary-light));
    border-radius: 50%;
    z-index: 1;
    will-change: transform;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 100px 0;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
    min-height: 600px;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(75, 181, 193, 0.3);
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    padding-bottom: 5px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title .highlight {
    display: block;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 35px;
    max-width: 580px;
}

.hero-credentials {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero-credentials-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.hero-credentials-text {
    flex: 1;
}

.hero-credentials-text strong {
    display: block;
    color: var(--text-dark);
    font-size: 16px;
    margin-bottom: 3px;
}

.hero-credentials-text span {
    color: var(--text-light);
    font-size: 14px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--green-accent), #96c020);
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(168, 213, 48, 0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(168, 213, 48, 0.5);
}

.btn-hero-primary::before {
    content: '';
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    background: transparent;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
    line-height: 1;
}

.hero-stat-number:not(:has(+)) {
    font-size: 24px;
}

.hero-stat-label {
    font-size: 13px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-image-wrapper {
    position: relative;
    animation: fadeInRight 1s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image-main {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    aspect-ratio: 3 / 4;
    width: 100%;
    height: auto;
    min-height: 500px;
}

.hero-image-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(123, 67, 151, 0.1), transparent);
    z-index: 1;
}

.hero-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-floating-card {
    position: absolute;
    background: var(--white);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.hero-rating-card {
    top: 40px;
    left: -40px;
    text-align: center;
    min-width: 140px;
}

.hero-rating-badge {
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
}

.hero-rating-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 8px;
}

.hero-rating-stars {
    color: #ffa500;
    font-size: 16px;
    margin-bottom: 5px;
}

.hero-rating-label {
    font-size: 12px;
    color: var(--text-light);
}

.hero-experience-card {
    bottom: 40px;
    right: -40px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-experience-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.hero-experience-text strong {
    display: block;
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 3px;
}

.hero-experience-text span {
    font-size: 13px;
    color: var(--text-light);
}

/* About Doctor Section */
.about-doctor {
    padding: 120px 0;
    background: var(--white);
    position: relative;
}

.about-doctor::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: linear-gradient(180deg, #f8f9fa 0%, transparent 100%);
    z-index: 1;
}

.about-doctor-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-doctor-image {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(20%);
    transition: all 0.5s ease;
}

.about-image-wrapper:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(109, 65, 123, 0.1), rgba(75, 181, 193, 0.1));
    pointer-events: none;
}

.about-rating-card {
    position: absolute;
    top: 30px;
    left: 30px;
    background: var(--white);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    text-align: center;
    min-width: 160px;
    animation: float 3s ease-in-out infinite;
}

.about-rating-badge {
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
}

.about-rating-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 10px;
}

.about-rating-stars {
    color: #ffa500;
    font-size: 18px;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.about-rating-label {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.hero-rating-link,
.about-rating-link {
    display: inline-block;
    background: var(--green-accent);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-rating-link:hover,
.about-rating-link:hover {
    background: #96c020;
    transform: translateY(-2px);
}

.about-doctor-content {
    animation: fadeInUp 1s ease-out;
}

.about-subtitle {
    color: var(--green-accent);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.about-doctor-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 25px;
}

.about-description {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 40px;
}

.about-credentials-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.about-credential-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 15px;
    border-left: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.about-credential-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.about-credential-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.about-credential-text h3,
.about-credential-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.about-credential-text p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.about-cta {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

/* Services Section */
.services {
    background: var(--white);
}

.services-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.services-text h3 {
    color: var(--primary-color);
    font-size: 32px;
    margin-bottom: 20px;
}

.services-text .highlight {
    border-left: 4px solid var(--green-accent);
    padding-left: 20px;
    font-style: italic;
    color: var(--text-light);
    margin: 20px 0;
}

.services-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.service-item {
    font-size: 14px;
    color: var(--text-light);
}

.services-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Specialties Section */
.specialties {
    background: var(--light-bg);
    padding: 120px 0;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* Flip Card Effect */
.specialty-card-flip {
    perspective: 1000px;
    height: 400px;
    position: relative;
}

.specialty-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.specialty-card-flip:hover .specialty-card-inner {
    transform: rotateY(180deg);
}

.specialty-card-front,
.specialty-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    top: 0;
    left: 0;
}

.specialty-card-front {
    z-index: 2;
    transform: rotateY(0deg);
}

.specialty-card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.specialty-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 35, 50, 0.95), rgba(26, 35, 50, 0.7));
    padding: 30px;
}

.specialty-overlay h3,
.specialty-overlay span {
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    display: block;
}

.specialty-card-back {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    text-align: center;
}

.specialty-card-back h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.specialty-card-back p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.95);
}

.specialty-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    background: var(--white);
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.specialty-link:hover {
    background: var(--green-accent);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Remove old specialty card styles */
.specialty-card {
    display: none;
}

.tendon-info {
    display: none;
}

/* How We Work Section */
.how-we-work {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.how-we-work::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(135deg, rgba(109, 65, 123, 0.03), rgba(75, 181, 193, 0.03));
    z-index: 0;
}

.how-we-work .container {
    position: relative;
    z-index: 1;
}

.section-intro {
    text-align: center;
    color: var(--text-light);
    font-size: 17px;
    max-width: 700px;
    margin: 15px auto 0;
    line-height: 1.6;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.step-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.step-number {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    z-index: 2;
    box-shadow: 0 5px 20px rgba(109, 65, 123, 0.3);
}

.step-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.step-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.step-card:hover .step-image img {
    transform: scale(1.1);
}

.step-content {
    padding: 30px;
}

.step-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
}

.steps-cta {
    text-align: center;
    margin-top: 60px;
}

.steps-cta .btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    font-size: 16px;
}

/* FAQ Section */
.faq-section {
    padding: 120px 0;
    background: var(--white);
}

.faq-container {
    max-width: 900px;
    margin: 60px auto 0;
}

.faq-item {
    background: var(--white);
    border: 2px solid var(--light-bg);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 5px 20px rgba(75, 181, 193, 0.1);
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(109, 65, 123, 0.15);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question h3 {
    flex: 1;
    padding-right: 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    transition: color 0.3s ease;
}

.faq-question:hover h3 {
    color: var(--primary-color);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 16px;
    margin: 0;
}

.faq-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(109, 65, 123, 0.05), rgba(75, 181, 193, 0.05));
    border-radius: 20px;
}

.faq-cta p {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.faq-cta .btn-hero-primary {
    display: inline-flex;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #2c3e50, #34495e, #3d5a80);
    color: var(--white);
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-info h3 {
    font-size: 14px;
    color: var(--green-accent);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: rgba(255,255,255,0.2);
    transform: translateX(5px);
}

.contact-btn-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-btn-text span {
    display: block;
    font-size: 12px;
    opacity: 0.8;
}

.contact-btn-text strong {
    font-size: 18px;
}

/* Contact Image */
.contact-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container {
        gap: 50px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-rating-card {
        left: -20px;
    }
    
    .hero-experience-card {
        right: -20px;
    }
    
    .about-doctor-container {
        gap: 50px;
    }
    
    .specialties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .specialties-grid {
        grid-template-columns: 1fr;
    }
    
    .specialty-card-flip {
        height: 350px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .hero {
        min-height: auto;
        padding: 30px 0 60px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0;
    }
    
    .hero-badge {
        margin-top: 0;
        margin-bottom: 20px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-content {
        min-height: auto;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        justify-content: center;
        width: 100%;
    }
    
    .hero-stats {
        gap: 20px;
        justify-content: space-around;
    }
    
    .hero-stat-number {
        font-size: 28px;
    }
    
    .hero-rating-card,
    .hero-experience-card {
        position: static;
        margin: 20px auto;
    }
    
    .hero-floating-card {
        animation: none;
    }
    
    .hero-image-main {
        min-height: 400px;
    }
    
    .about-doctor {
        padding: 60px 0;
    }
    
    .about-doctor-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-doctor-content h2 {
        font-size: 32px;
    }
    
    .about-rating-card {
        position: static;
        margin: 20px auto;
        animation: none;
    }
    
    .about-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-about-primary,
    .btn-about-secondary {
        justify-content: center;
        width: 100%;
    }
    
    .section-heading {
        font-size: 28px;
    }
    
    /* How We Work Mobile */
    .how-we-work {
        padding: 60px 0;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
    
    .step-image {
        height: 200px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .step-content {
        padding: 25px;
    }
    
    .step-content h3 {
        font-size: 20px;
    }
    
    .steps-cta {
        margin-top: 40px;
    }
    
    .steps-cta .btn-hero-primary {
        width: 100%;
        justify-content: center;
    }
    
    /* FAQ Mobile */
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-container {
        margin-top: 40px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
    
    .faq-answer p {
        font-size: 15px;
    }
    
    .faq-cta {
        margin-top: 40px;
        padding: 30px 20px;
    }
    
    .faq-cta p {
        font-size: 18px;
    }
    
    .faq-cta .btn-hero-primary {
        width: 100%;
        justify-content: center;
    }
}
