/* ==========================================
   ABOUT PAGE STYLES
   ========================================== */

/* ========== ABOUT INFO SECTION ========== */
.ss-about-info-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.ss-about-info-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ss-about-info-left {
    position: relative;
}

.ss-about-info-image {
    position: relative;
}

.ss-about-info-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.ss-about-info-right {
    padding: 0;
}

.ss-about-info-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.ss-about-info-description {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.ss-about-highlights {
    margin-bottom: 30px;
}

.ss-about-highlight-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #fb590b;
}

.ss-about-highlight-icon {
    font-size: 24px;
    color: #fb590b;
    flex-shrink: 0;
    margin-top: 2px;
}

.ss-about-highlight-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 5px 0;
}

.ss-about-highlight-content p {
    font-size: 13px;
    color: #666;
    margin: 0;
    letter-spacing: 1px;
}

.ss-about-cta-btn {
    display: inline-block;
    padding: 14px 35px;
    background: linear-gradient(135deg, #fb590b, #ff7f39);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ss-about-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(251, 89, 11, 0.3);
}

/* ========== SERVICES SECTION ========== */
.ss-about-services-section {
    padding: 80px 0;
    background: white;
}

.ss-about-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.ss-about-section-title {
    font-size: 40px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.ss-about-section-subtitle {
    font-size: 18px;
    color: #666;
    margin: 0;
}

.ss-about-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.ss-about-service-card {
    background: #f9f9f9;
    padding: 35px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.ss-about-service-card:hover {
    border-color: #fb590b;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(251, 89, 11, 0.15);
}

.ss-about-service-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.ss-about-service-icon img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.ss-about-service-name {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 1px;
    margin: 0 0 10px 0;
}

.ss-about-service-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ========== WHY CHOOSE US SECTION ========== */
.ss-about-why-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f9ff 0%, #f0f5ff 100%);
}

.ss-about-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.ss-about-why-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.ss-about-why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(251, 89, 11, 0.15);
}

.ss-about-why-number {
    font-size: 48px;
    font-weight: 700;
    color: #fb590b;
    margin-bottom: 15px;
    opacity: 0.2;
}

.ss-about-why-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 15px 0;
    letter-spacing: 1px;
}

.ss-about-why-text {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin: 0;
    letter-spacing: 1px;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
    .ss-about-info-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ss-about-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .ss-about-why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .ss-about-doctor-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .ss-about-info-section {
        padding: 50px 0;
    }

    .ss-about-info-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .ss-about-info-description {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .ss-about-highlight-item {
        margin-bottom: 15px;
        padding: 12px;
    }

    .ss-about-services-section {
        padding: 50px 0;
    }

    .ss-about-section-title {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .ss-about-section-subtitle {
        font-size: 16px;
    }

    .ss-about-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ss-about-service-card {
        padding: 25px 20px;
    }

    .ss-about-why-section {
        padding: 50px 0;
    }

    .ss-about-why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ss-about-why-card {
        padding: 30px 25px;
    }

    .ss-about-doctor-section {
        padding: 50px 0;
    }

    .ss-about-doctor-wrapper {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .ss-about-doctor-title {
        font-size: 28px;
        margin-bottom: 8px;
    }

    .ss-about-doctor-description {
        font-size: 14px;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .ss-about-info-section {
        padding: 30px 0;
    }

    .ss-about-info-image {
        margin-bottom: 20px;
    }

    .ss-about-info-title {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .ss-about-info-description {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .ss-about-highlight-item {
        margin-bottom: 12px;
        padding: 10px;
        gap: 10px;
    }

    .ss-about-highlight-icon {
        font-size: 20px;
    }

    .ss-about-highlight-content h4 {
        font-size: 15px;
    }

    .ss-about-highlight-content p {
        font-size: 13px;
    }

    .ss-about-cta-btn {
        padding: 12px 25px;
        font-size: 13px;
        width: 100%;
        text-align: center;
    }

    .ss-about-services-section {
        padding: 30px 0;
    }

    .ss-about-section-title {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .ss-about-section-subtitle {
        font-size: 14px;
    }

    .ss-about-service-card {
        padding: 20px 15px;
    }

    .ss-about-service-icon {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .ss-about-service-name {
        font-size: 17px;
        margin-bottom: 8px;
    }

    .ss-about-service-desc {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .ss-about-why-section {
        padding: 30px 0;
    }

    .ss-about-why-card {
        padding: 20px 15px;
    }

    .ss-about-why-number {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .ss-about-why-title {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .ss-about-why-text {
        font-size: 13px;
    }

    .ss-about-doctor-section {
        padding: 30px 0 !important;
    }

    .ss-about-doctor-title {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .ss-about-doctor-designation {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .ss-about-doctor-description {
        font-size: 13px;
        line-height: 1.6;
    }
}

/* ========== DOCTOR PROFILE SECTION ========== */
.ss-about-doctor-section {
    padding: 80px 0;
    background: white;
}

.ss-about-doctor-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ss-about-doctor-left {
    position: relative;
}

.ss-about-doctor-image {
    position: relative;
}

.ss-about-doctor-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.ss-about-doctor-right {
    padding: 0;
}

.ss-about-doctor-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 5px 0;
    line-height: 1.3;
}

.ss-about-doctor-designation {
    font-size: 16px;
    color: #fb590b;
    font-weight: 600;
    margin: 0 0 25px 0;
}

.ss-about-doctor-description {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* ========== PRINT STYLES ========== */
@media print {
    .ss-about-page-container {
        padding: 20px 0;
        background: white;
    }

    .ss-about-submit-btn {
        display: none;
    }

    .ss-about-captcha-container {
        display: none;
    }
}
