/* Doctor Cards Elementor Widget Styles */

.doctor-cards-section {
    padding: 60px 0;
}

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

.doctor-cards-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

/* Left Content */
.doctor-cards-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.doctor-cards-label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.doctor-cards-label-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #f0b528;
}

.doctor-cards-label-text {
    font-size: 14px;
    font-weight: 500;
    color: #f0b528;
}

.doctor-cards-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0;
}

.doctor-cards-title-highlight {
    color: #644a0e;
    font-style: italic;
    font-family: Georgia, serif;
}

.doctor-cards-stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.doctor-cards-stats-number {
    font-size: 64px;
    font-weight: 700;
    color: #e8d5a8;
    line-height: 1;
}

.doctor-cards-stats-text {
    font-size: 14px;
    color: #666;
}

.doctor-cards-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 2px solid #1a1a1a;
    border-radius: 50px;
    background: transparent;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    width: fit-content;
}

.doctor-cards-button:hover {
    background: #f0b528;
    border-color: #f0b528;
    color: #fff;
}

.doctor-cards-button svg,
.doctor-cards-button img {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.doctor-cards-button:hover svg,
.doctor-cards-button:hover img {
    transform: translateX(4px);
}

/* Right Grid - Doctor Cards */
.doctor-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* Individual Doctor Card */
.doctor-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(to bottom, #fef8e8, #f5f5f5);
}

.doctor-card-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.doctor-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

/* Share Button Container */
.doctor-card-share-container {
    position: absolute;
    bottom: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.doctor-card-social-icons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all 0.3s ease-out;
}

.doctor-card-share-container:hover .doctor-card-social-icons {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.doctor-card-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0b528;
    border: 2px solid #fcd34d;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.doctor-card-social-btn:hover {
    transform: scale(1.1);
    background: #e5a520;
}

.doctor-card-social-btn svg,
.doctor-card-social-btn img {
    width: 16px;
    height: 16px;
}

.doctor-card-social-btn img {
    object-fit: contain;
}

/* Main Share Button */
.doctor-card-share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #644a0e;
    border: none;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.doctor-card-share-container:hover .doctor-card-share-btn {
    background: #f0b528;
    border: 2px solid #fcd34d;
}

.doctor-card-share-btn svg,
.doctor-card-share-btn img {
    width: 16px;
    height: 16px;
}

/* Doctor Info */
.doctor-card-info {
    padding: 16px;
    text-align: center;
}

.doctor-card-name {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 4px 0;
}

.doctor-card-specialty {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .doctor-cards-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .doctor-cards-content {
        text-align: center;
        align-items: center;
    }
    
    .doctor-cards-title {
        font-size: 36px;
    }
    
    .doctor-cards-stats-number {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .doctor-cards-section {
        padding: 40px 0;
    }
    
    .doctor-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .doctor-cards-title {
        font-size: 28px;
    }
    
    .doctor-card-name {
        font-size: 16px;
    }
    
    .doctor-card-specialty {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .doctor-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .doctor-cards-title {
        font-size: 24px;
    }
}
