/* Home Page Specific Styles */

.hero-home {
    /* Potential home-specific background or padding overrides */
}

.home-services {
    /* Styles now handled in global.css */
}

.trust-section {
    padding: var(--space-xl) 0;
}

.trust-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trust-item {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.trust-item strong {
    color: var(--text-main);
}

/* Who We Are Section */
.who-we-are {
    padding: var(--space-xl) 0;
    position: relative;
    background-color: var(--white);
    overflow: visible;
}

.book-now-tab {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: left bottom;
    background-color: #B89A4E;
    color: white;
    padding: 1rem 2rem;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 1px;
    z-index: 10;
    white-space: nowrap;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.who-we-are-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.who-we-are-image {
    position: relative;
}

.tooth-frame-wrapper {
    position: relative;
    max-width: 500px;
}

.tooth-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    background: #F6D365;
    clip-path: polygon(50% 0%, 85% 10%, 100% 35%, 100% 65%, 85% 90%, 50% 100%, 15% 90%, 0% 65%, 0% 35%, 15% 10%);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tooth-frame img {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    object-fit: cover;
    clip-path: inherit;
}

.experience-badge {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    background: #0F172A;
    color: white;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 8px solid white;
    box-shadow: var(--shadow-lg);
    z-index: 5;
}

.badge-content .number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #F6D365;
    line-height: 1;
}

.badge-content .label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-top: 5px;
}

.who-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #F8FAFC;
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    border: 1px solid #E2E8F0;
}

.who-icon {
    color: #F6D365;
}

.who-we-are-content .section-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #0F172A;
}

.who-we-are-content .description {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3.5rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.feature-icon img {
    background: #F1F5F9;
    padding: 10px;
    border-radius: 12px;
}

.feature-text h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #0F172A;
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.get-appointment-btn {
    background-color: #B89A4E !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 1.1rem 2.5rem !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 1.5rem !important;
    font-size: 1rem !important;
    color: white !important;
    box-shadow: 0 10px 20px rgba(184, 154, 78, 0.2) !important;
}

.arrow-circle {
    background: white;
    color: #B89A4E;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: var(--transition);
}

.get-appointment-btn:hover .arrow-circle {
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .who-we-are-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .who-we-are-image {
        margin-bottom: var(--space-lg);
    }

    .who-tag {
        justify-content: center;
    }

    .book-now-tab {
        display: none;
    }

    .tooth-frame-wrapper {
        margin: 0 auto;
    }

    .features-grid {
        justify-items: center;
    }

    .get-appointment-btn {
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .who-we-are {
        padding: 3rem 0;
    }
    .who-we-are-grid {
        gap: var(--space-md);
    }
    .who-we-are-content .section-title {
        font-size: 2rem;
    }
    .who-we-are-content .description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    .feature-item {
        text-align: center;
        align-items: center;
    }
    .tooth-frame-wrapper {
        max-width: 320px;
    }
    .experience-badge {
        width: 120px;
        height: 120px;
        right: -15px;
    }
    .badge-content .number {
        font-size: 2.25rem;
    }
    .badge-content .label {
        font-size: 0.65rem;
    }
    .who-we-are-image {
        margin-bottom: var(--space-md);
    }
    .get-appointment-btn {
        padding: 0.9rem 2rem !important;
        font-size: 0.9rem !important;
    }
}

@media (max-width: 425px) {
    .who-we-are-content .section-title {
        font-size: 1.65rem;
    }
    .tooth-frame-wrapper {
        max-width: 260px;
    }
    .experience-badge {
        width: 100px;
        height: 100px;
        right: -10px;
    }
    .badge-content .number {
        font-size: 1.85rem;
    }
    .badge-content .label {
        font-size: 0.6rem;
    }
}