/* ============================================
   ABOUT US PAGE - MODERN & ATTRACTIVE DESIGN
   ============================================ */

/* Breadcrumb Section - Modern Style */
.breadcrumb-section {
    position: relative;
    height: 450px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.breadcrumb-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.7);
}

.breadcrumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.breadcrumb-section > .container {
    position: relative;
    z-index: 2;
}

.breadcrumb-content {
    text-align: center;
    color: #ffffff;
    animation: fadeInUp 0.8s ease-out;
}

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

.breadcrumb-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.02em;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 1.125rem;
}

.breadcrumb-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.breadcrumb-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.breadcrumb-current {
    color: #ffffff;
    font-weight: 600;
}

/* About Dr. Divit Section - Modern Design */
.about-dr-divit-section {
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 50%, #ffffff 100%);
}

.about-dr-divit-section > .container {
    position: relative;
    z-index: 1;
}

/* About Section Header Enhancements */
.about-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, rgba(242, 140, 40, 0.1), rgba(255, 122, 0, 0.1));
    border: 1px solid rgba(242, 140, 40, 0.25);
    border-radius: 50px;
    color: #F28C28;
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 15px rgba(242, 140, 40, 0.1);
    animation: fadeInUp 0.8s ease-out;
}

.about-header-badge i {
    font-size: 1rem;
}

/* About Stats Section */
.about-stats {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    margin-top: 2.5rem;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, rgba(242, 140, 40, 0.05), rgba(255, 122, 0, 0.05));
    border-radius: 20px;
    border: 1px solid rgba(242, 140, 40, 0.15);
}

.about-stat-item {
    text-align: center;
    flex: 1;
}

.about-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #F28C28, #FF7A00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.about-stat-label {
    font-size: 0.875rem;
    color: #6B7280;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* About Intro Badge */
.about-intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: rgba(242, 140, 40, 0.1);
    border: 1px solid rgba(242, 140, 40, 0.2);
    border-radius: 8px;
    color: #F28C28;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.about-intro-badge i {
    font-size: 0.875rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

/* About Highlight Box */
.about-highlight-box {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(242, 140, 40, 0.08), rgba(255, 122, 0, 0.05));
    border-radius: 20px;
    border: 2px solid rgba(242, 140, 40, 0.2);
    margin-top: 1rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.about-highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #F28C28, #FF7A00);
    border-radius: 0 4px 4px 0;
}

.about-highlight-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(242, 140, 40, 0.2);
    border-color: rgba(242, 140, 40, 0.4);
}

.about-highlight-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, #F28C28, #FF7A00);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    box-shadow: 0 8px 20px rgba(242, 140, 40, 0.3);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.about-highlight-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.about-highlight-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 0.75rem;
    font-family: 'Playfair Display', serif;
}

.about-highlight-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #4B5563;
    margin: 0;
}

.about-highlight-text strong {
    color: #F28C28;
    font-weight: 700;
}

/* Organization Section - Stunning Modern Design */
.organization-section {
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.organization-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    background: 
        radial-gradient(ellipse at top left, rgba(242, 140, 40, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse at bottom right, rgba(242, 140, 40, 0.1) 0%, transparent 60%),
        linear-gradient(135deg, transparent 0%, rgba(242, 140, 40, 0.02) 50%, transparent 100%);
    pointer-events: none;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.organization-section > .container {
    position: relative;
    z-index: 1;
}

.organization-header {
    text-align: center;
    margin-bottom: 5rem;
    animation: fadeInUp 0.8s ease-out;
}

.organization-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, rgba(242, 140, 40, 0.1), rgba(255, 122, 0, 0.1));
    border: 1px solid rgba(242, 140, 40, 0.25);
    border-radius: 50px;
    color: #F28C28;
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 15px rgba(242, 140, 40, 0.1);
}

.organization-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.organization-title .title-accent {
    background: linear-gradient(135deg, #F28C28, #FF7A00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.organization-subtitle {
    font-size: 1.25rem;
    color: #6B7280;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.8;
}

.organization-content {
    max-width: 950px;
    margin: 0 auto;
}

.organization-intro {
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.organization-intro-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.01em;
}

.organization-intro-text {
    font-size: 1.125rem;
    line-height: 1.9;
    color: #4B5563;
    margin-bottom: 1.75rem;
}

.organization-intro-text strong {
    color: #F28C28;
    font-weight: 700;
}

.organization-values {
    margin-top: 4rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.organization-values-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 3rem;
    text-align: center;
    font-family: 'Playfair Display', serif;
}

.organization-values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.organization-value-item {
    background: #ffffff;
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.06),
        0 1px 3px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    border: 1px solid rgba(229, 231, 235, 0.8);
    position: relative;
    overflow: hidden;
}

.organization-value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(242, 140, 40, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.organization-value-item:hover::before {
    opacity: 1;
}

.organization-value-item:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 8px 20px rgba(242, 140, 40, 0.15);
    border-color: rgba(242, 140, 40, 0.3);
}

.organization-value-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F28C28, #FF7A00);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(242, 140, 40, 0.3);
    transition: transform 0.4s ease;
    position: relative;
    z-index: 1;
}

.organization-value-item:hover .organization-value-icon {
    transform: scale(1.1) rotate(5deg);
}

.organization-value-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.organization-value-desc {
    font-size: 1rem;
    color: #6B7280;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* About Locations Section - Modern Elegant Design */
.about-locations-section {
    padding: 7rem 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.about-locations-section > .container {
    position: relative;
    z-index: 1;
}

.locations-header {
    text-align: center;
    margin-bottom: 5rem;
    animation: fadeInUp 0.8s ease-out;
}

.locations-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, rgba(242, 140, 40, 0.1), rgba(255, 122, 0, 0.1));
    border: 1px solid rgba(242, 140, 40, 0.25);
    border-radius: 50px;
    color: #F28C28;
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 15px rgba(242, 140, 40, 0.1);
}

.locations-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.locations-title .title-accent {
    background: linear-gradient(135deg, #F28C28, #FF7A00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.locations-subtitle {
    font-size: 1.25rem;
    color: #6B7280;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.8;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.location-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 0;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(229, 231, 235, 0.8);
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
}

.location-card:nth-child(2) {
    animation-delay: 0.2s;
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.12),
        0 10px 30px rgba(242, 140, 40, 0.15);
    border-color: rgba(242, 140, 40, 0.3);
}

.location-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 0;
    padding: 2rem 2rem 1.5rem;
    background: linear-gradient(135deg, rgba(242, 140, 40, 0.05), rgba(255, 122, 0, 0.05));
}

.location-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, #F28C28, #FF7A00);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.75rem;
    box-shadow: 0 8px 20px rgba(242, 140, 40, 0.3);
    flex-shrink: 0;
}

.location-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1F2937;
    margin: 0;
}

.location-map {
    margin: 0;
    border-radius: 0;
    overflow: hidden;
    height: 400px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.location-map::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(242, 140, 40, 0.02) 0%, transparent 100%);
    pointer-events: none;
}

.location-map-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    background: #ffffff;
}

.location-address {
    font-size: 1.0625rem;
    color: #4B5563;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    line-height: 1.7;
}

.location-address i {
    color: #F28C28;
    margin-top: 0.25rem;
    flex-shrink: 0;
    font-size: 1.25rem;
}

.location-link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #F28C28, #FF7A00);
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.0625rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(242, 140, 40, 0.3);
}

.location-link-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(242, 140, 40, 0.4);
    background: linear-gradient(135deg, #FF7A00, #F28C28);
}

/* About FAQ Section - Modern Design */
.about-faq-section {
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.faq-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    background: 
        radial-gradient(ellipse at top left, rgba(242, 140, 40, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse at bottom right, rgba(242, 140, 40, 0.1) 0%, transparent 60%),
        linear-gradient(135deg, transparent 0%, rgba(242, 140, 40, 0.02) 50%, transparent 100%);
    pointer-events: none;
}

.about-faq-section > .container {
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .organization-values-grid {
        gap: 2rem;
    }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .about-dr-divit-section {
        padding: 4rem 0;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .about-stat-item {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(242, 140, 40, 0.1);
    }
    
    .about-stat-item:last-child {
        border-bottom: none;
    }
    
    .about-stat-number {
        font-size: 2rem;
    }
    
    .about-highlight-box {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .about-highlight-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .about-highlight-title {
        font-size: 1.125rem;
    }
    
    .about-highlight-text {
        font-size: 0.9375rem;
    }
    
    .about-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image-wrapper {
        max-width: 400px;
    }
    
    .about-stats {
        margin-top: 1.5rem;
    }
}
    .breadcrumb-section {
        height: 350px;
    }
    
    .breadcrumb-title {
        font-size: 2.75rem;
    }
    
    .organization-section,
    .about-locations-section,
    .about-faq-section,
    .about-dr-divit-section {
        padding: 5rem 0;
    }
    
    .organization-title,
    .locations-title {
        font-size: 2.75rem;
    }
    
    .organization-values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .organization-value-item {
        padding: 2.5rem 2rem;
    }
    
    .location-map {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .breadcrumb-title {
        font-size: 2.25rem;
    }
    
    .organization-title,
    .locations-title {
        font-size: 2.25rem;
    }
    
    .organization-intro-title {
        font-size: 1.75rem;
    }
    
    .location-map {
        height: 250px;
    }
    
    .organization-value-item {
        padding: 2rem 1.5rem;
    }
    
    .about-stat-number {
        font-size: 1.75rem;
    }
    
    .about-stat-label {
        font-size: 0.75rem;
    }
    
    .about-header-badge {
        padding: 0.625rem 1.25rem;
        font-size: 0.8125rem;
    }
    
    .about-intro-badge {
        padding: 0.5rem 1rem;
        font-size: 0.8125rem;
    }
}
