* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a4d6e;
    --accent-color: #00a8e8;
    --text-color: #333;
    --light-bg: #f8f9fa;
}

body {
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #1a1a1a;
    overflow-x: hidden;
    background: #f8f9fa;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, #1a4d6e 0%, #2d6a8f 100%);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid #00a8e8;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #fff;
}

.logo i {
    font-size: 32px;
    color: #00a8e8;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.header-text {
    flex-grow: 1;
    text-align: center;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 400;
}

/* Header Social Links */
.header-social {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-right: 20px;
}

.header-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.header-social-link:hover {
    background: #00a8e8;
    color: #1a4d6e;
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 168, 232, 0.4);
}

.whatsapp-btn {
    background: #25d366;
    color: #fff;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn i {
    font-size: 20px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a4d6e 0%, #2d6a8f 50%, #1a4d6e 100%);
    min-height: calc(100vh - 80px);
    position: relative;
    padding: 80px 0 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 168, 232, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 168, 232, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    padding-bottom: 40px;
}

.hero-left h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    border-left: 5px solid #00a8e8;
    padding-left: 20px;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.92);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 400;
    max-width: 550px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #00a8e8;
    border: 2px solid #00a8e8;
    color: #fff;
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 168, 232, 0.4);
}

.cta-btn:hover {
    background: #0096d1;
    border-color: #0096d1;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 168, 232, 0.6);
}

.cta-btn i {
    font-size: 22px;
}

/* Dentist Image Section */
.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dentist-image {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.dentist-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 3px solid #00a8e8;
}

.dentist-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: linear-gradient(135deg, #1a4d6e 0%, #2d6a8f 100%);
    backdrop-filter: blur(10px);
    padding: 14px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.5);
    border: 2px solid #00a8e8;
}

.dentist-badge span {
    font-weight: 600;
    font-size: 15px;
    white-space: nowrap;
    color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Stats Section */
.stats-section {
    position: relative;
    z-index: 10;
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.stat-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(0, 168, 232, 0.1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00a8e8 0%, #0096d1 50%, #00a8e8 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 168, 232, 0.25);
    border-color: rgba(0, 168, 232, 0.3);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00a8e8 0%, #0096d1 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 8px 25px rgba(0, 168, 232, 0.4);
    position: relative;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(0, 168, 232, 0.6);
}

.stat-icon i {
    font-size: 36px;
    color: #fff;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon i {
    transform: scale(1.1);
}

/* Pulse animation for stat icons during counter animation */
.stat-card.animating .stat-icon {
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(0, 168, 232, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 35px rgba(0, 168, 232, 0.6);
    }
}

.stat-number {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px;
}

.counter {
    font-size: 48px;
    font-weight: 800;
    color: #1a4d6e;
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
    display: inline-block;
    transition: all 0.3s ease;
}

.stat-card:hover .counter {
    color: #00a8e8;
    transform: scale(1.05);
}

.stat-plus {
    font-size: 32px;
    font-weight: 700;
    color: #00a8e8;
    font-family: 'Montserrat', sans-serif;
}

.stat-text {
    color: #4a5568;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive adjustments for stats */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stat-card {
        padding: 40px 30px;
    }

    .counter {
        font-size: 42px;
    }

    .stat-plus {
        font-size: 28px;
    }

    .stat-text {
        font-size: 15px;
    }
}

/* Areas de Atuação Section */
.areas-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #1a4d6e;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #00a8e8, transparent);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 60px;
    line-height: 1.8;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.areas-carousel {
    position: relative;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.area-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 168, 232, 0.2);
}

.area-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(0, 168, 232, 0.3);
    border-color: #00a8e8;
}

.area-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.area-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.area-card:hover .area-image img {
    transform: scale(1.1);
}

.area-content {
    padding: 25px;
}

.area-content h3 {
    color: #1a4d6e;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 18px;
    font-family: 'Montserrat', sans-serif;
}

.area-content p {
    color: #4a5568;
    font-size: 15px;
    line-height: 1.8;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 168, 232, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 168, 232, 0.5);
}

.dot.active {
    background: #00a8e8;
    width: 35px;
    border-radius: 5px;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #1a4d6e 0%, #2d6a8f 100%);
    padding: 100px 0;
    position: relative;
}

.testimonials-label {
    color: #00a8e8;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-align: left;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.testimonials-title {
    font-size: 44px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 60px;
    line-height: 1.4;
}

.testimonials-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.carousel-btn {
    background: rgba(0, 168, 232, 0.15);
    border: 2px solid #00a8e8;
    color: #00a8e8;
    width: 55px;
    height: 55px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: #00a8e8;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 168, 232, 0.4);
}

.carousel-btn i {
    font-size: 18px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    flex: 1;
    overflow: hidden;
}

.testimonial-card {
    background: #fff;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 300px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 3px solid #00a8e8;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 168, 232, 0.3);
}

.testimonial-text {
    color: #4a5568;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
    flex-grow: 1;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.author-photo {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #00a8e8;
}

.author-info {
    flex: 1;
}

.author-name {
    color: #1a4d6e;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 5px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.author-rating {
    display: flex;
    gap: 3px;
}

.author-rating i {
    color: #ffc107;
    font-size: 14px;
}

/* About Dentist Section */
.about-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0;
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-left {
    position: relative;
}

.about-image {
    position: relative;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 3px solid #00a8e8;
}

.experience-badge {
    position: absolute;
    top: 20px;
    right: -10px;
    background: linear-gradient(135deg, #00a8e8 0%, #0096d1 100%);
    color: #fff;
    padding: 15px 25px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 6px 25px rgba(0, 168, 232, 0.4);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.name-badge {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #1a4d6e 0%, #2d6a8f 100%);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.5);
    border: 2px solid #00a8e8;
}

.name-badge i {
    font-size: 18px;
    color: #00a8e8;
}

.name-badge span {
    font-weight: 600;
    font-size: 15px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.about-right h2 {
    font-size: 48px;
    font-weight: 700;
    color: #1a4d6e;
    margin-bottom: 20px;
    line-height: 1.3;
    font-family: 'Montserrat', sans-serif;
}

.about-label {
    color: #00a8e8;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.about-text {
    color: #4a5568;
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 35px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.about-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #00a8e8;
    color: #fff;
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 168, 232, 0.4);
}

.about-cta:hover {
    background: #0096d1;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 168, 232, 0.6);
}

.about-cta i {
    font-size: 22px;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, #1a4d6e 0%, #2d6a8f 100%);
    padding: 100px 0;
    position: relative;
}

.faq-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.faq-left h2 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.3;
}

.faq-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 17px;
    line-height: 1.9;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.faq-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 168, 232, 0.3);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 168, 232, 0.5);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    color: #fff;
    padding: 22px 28px;
    text-align: left;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.faq-question:hover {
    color: #00a8e8;
}

.faq-question i {
    font-size: 18px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 25px 20px;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.8;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.faq-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25d366;
    color: #fff;
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 25px;
    align-self: flex-start;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.faq-cta:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.faq-cta i {
    font-size: 22px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a4d6e 0%, #0f2a3f 100%);
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.footer-logo i {
    font-size: 32px;
    color: #00a8e8;
}

.footer-tagline {
    color: #00a8e8;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.7;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
}

.footer-list i {
    color: #00a8e8;
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #00a8e8;
    padding-left: 5px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.social-link:hover::before {
    transform: scale(1);
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Facebook */
.social-link.facebook {
    background: linear-gradient(135deg, #1877f2 0%, #42a5f5 100%);
    color: #fff;
    border: 2px solid #1877f2;
}

/* Instagram */
.social-link.instagram {
    background: linear-gradient(135deg, #1877f2 0%, #42a5f5 100%);
    color: #fff;
    border: 2px solid #1877f2;
}

/* TikTok */
.social-link.tiktok {
    background: linear-gradient(135deg, #1877f2 0%, #42a5f5 100%);
    color: #fff;
    border: 2px solid #1877f2;
}

/* LinkedIn */
.social-link.linkedin {
    background: linear-gradient(135deg, #0077b5 0%, #42a5f5 100%);
    color: #fff;
    border: 2px solid #0077b5;
}

/* X (formerly Twitter) */
.social-link.x {
    background: linear-gradient(135deg, #1da1f2 0%, #42a5f5 100%);
    color: #fff;
    border: 2px solid #1da1f2;
}

.x-logo {
    width: 20px;
    height: 20px;
    fill: #fff;
}

.social-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Ripple Effect for Social Links */
.ripple-effect {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px 0;
    margin-top: 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #25d366;
}

.footer-bottom-links span {
    color: rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-left h1 {
        font-size: 40px;
    }

    .dentist-badge {
        right: 50%;
        transform: translateX(50%);
    }

    .areas-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-title {
        font-size: 32px;
    }

    .carousel-btn {
        display: none;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .about-right h2 {
        font-size: 38px;
    }

    .faq-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .header-text {
        font-size: 12px;
    }

    .hero-left h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cta-btn {
        padding: 12px 25px;
        font-size: 14px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-title {
        font-size: 26px;
    }

    .area-content h3 {
        font-size: 20px;
    }

    .about-right h2 {
        font-size: 32px;
    }

    .faq-left h2 {
        font-size: 36px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-left h1 {
        font-size: 26px;
    }

    .whatsapp-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .stat-card {
        padding: 30px 20px;
    }

    .stat-text {
        font-size: 14px;
    }

    .section-title {
        font-size: 24px;
    }

    .testimonials-title {
        font-size: 22px;
    }

    .testimonial-card {
        padding: 20px;
        min-height: 250px;
    }

    .testimonial-text {
        font-size: 13px;
    }

    .about-right h2 {
        font-size: 26px;
    }

    .faq-left h2 {
        font-size: 28px;
    }

    .faq-question {
        font-size: 14px;
        padding: 15px 20px;
    }

    .about-image {
        max-width: 100%;
    }

    .experience-badge {
        font-size: 12px;
        padding: 10px 15px;
    }
}

/* Scroll to Top Button */
.scroll-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #00a8e8 0%, #0096d1 100%);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 168, 232, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.scroll-to-top-btn:hover {
    background: linear-gradient(135deg, #0096d1 0%, #0084ba 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 168, 232, 0.6);
}

.scroll-to-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top-btn i {
    transition: transform 0.3s ease;
}

.scroll-to-top-btn:hover i {
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .scroll-to-top-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
}

/* WhatsApp Float Button */
.whatsapp-float-btn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25d366 0%, #20bd5a 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    border: 3px solid rgba(255, 255, 255, 0.2);
    animation: whatsappPulse 2s infinite;
    transform: scale(0);
    opacity: 0;
}

.whatsapp-float-btn:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #20bd5a 0%, #1da851 100%);
}

.whatsapp-float-btn:active {
    transform: scale(0.95) translateY(-1px);
}

.whatsapp-float-btn i {
    transition: transform 0.3s ease;
}

.whatsapp-float-btn:hover i {
    transform: scale(1.1) rotate(5deg);
}

/* WhatsApp Tooltip */
.whatsapp-tooltip {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    background: #333;
    color: #fff;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-left-color: #333;
}

.whatsapp-float-btn:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 85px;
}

/* WhatsApp Pulse Animation */
@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0);
    }
}

/* Responsive adjustments for WhatsApp button */
@media (max-width: 768px) {
    .whatsapp-float-btn {
        bottom: 85px;
        right: 20px;
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .whatsapp-tooltip {
        display: none; /* Hide tooltip on mobile for better UX */
    }
}

@media (max-width: 480px) {
    .whatsapp-float-btn {
        bottom: 80px;
        right: 15px;
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
}

/* Responsive adjustments for footer */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .header-social {
        display: none; /* Hide header social on mobile to save space */
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .header-text {
        order: 2;
        margin: 10px 0;
    }
    
    .logo {
        order: 1;
    }
    
    .whatsapp-btn {
        order: 3;
    }
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-form-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-left h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-form-left p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    width: 30px;
}

.contact-item h4 {
    font-size: 1rem;
    color: var(--primary-color);
    margin: 0 0 5px 0;
    font-weight: 600;
}

.contact-item p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(0, 168, 232, 0.1);
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* reCAPTCHA Styles */
.recaptcha-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}

.recaptcha-note {
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    margin: 0;
    font-style: italic;
}

.submit-btn {
    width: 100%;
    padding: 16px 30px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #0096d1 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 168, 232, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn i {
    font-size: 1rem;
}

/* Responsive Design for Contact Form */
@media (max-width: 768px) {
    .contact-form-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-section {
        padding: 60px 0;
    }
    
    .contact-form-left h2 {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .contact-info {
        gap: 15px;
    }
    
    .contact-item {
        padding: 15px;
        gap: 12px;
    }
}

/* reCAPTCHA Responsive */
@media (max-width: 768px) {
    .recaptcha-container {
        margin: 15px 0;
    }
    
    .recaptcha-note {
        font-size: 0.8rem;
    }
}

/* Form Messages */
.form-message {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    animation: slideDown 0.3s ease;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-message i {
    font-size: 1.1rem;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
