
.mb-10 { margin-bottom: 10px; }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-card {
    text-align: center;
    padding: 35px 25px;
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 18px;
    background: rgba(58, 174, 224, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.stat-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
}

.functions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.function-card {
    padding: 35px 25px;
    background: var(--bg-white);
    border-radius: 8px;
    border-top: 3px solid var(--primary-color);
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    transition: var(--transition);
}

.function-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.function-icon {
    width: 50px;
    height: 50px;
    background: rgba(58, 174, 224, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.function-icon i {
    font-size: 1.3rem;
    color: var(--primary-color);
}

.function-card h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.function-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.curves-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.curve-item {
    padding: 30px 25px;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
    transition: var(--transition);
}

.curve-item:hover {
    background: var(--bg-white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.curve-badge {
    display: inline-block;
    background: rgba(58, 174, 224, 0.1);
    color: var(--primary-color);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.curve-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.alert-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.alert-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 25px;
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.alert-item:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.alert-item > i {
    font-size: 1.3rem;
    color: #e8a838;
    flex-shrink: 0;
    margin-top: 3px;
}

.alert-item h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.alert-item p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.5;
}

@media (max-width: 992px) {
    .stats-grid,
    .functions-grid,
    .curves-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .stats-grid,
    .functions-grid,
    .curves-grid,
    .alert-grid {
        grid-template-columns: 1fr;
    }
}

.contact-section {
    background: var(--bg-light);
}

.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
}

.contact-info-panel {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-panel h2 {
    color: var(--bg-white) !important;
    font-size: 1.8rem;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.title-line-white {
    width: 50px;
    height: 3px;
    background: rgba(255,255,255,0.5);
    margin-bottom: 35px;
}

.contact-location {
    margin-bottom: 28px;
}

.contact-location h4 {
    color: var(--bg-white) !important;
    font-size: 1.05rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.contact-location h4 i {
    margin-right: 8px;
    opacity: 0.8;
}

.contact-location p {
    color: rgba(255,255,255,0.85) !important;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 6px;
}

.contact-location p i {
    width: 18px;
    margin-right: 8px;
    opacity: 0.7;
    font-size: 0.85rem;
}

.btn-white {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 28px;
    background: var(--bg-white);
    color: var(--primary-color);
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    text-decoration: none;
    align-self: flex-start;
}

.btn-white:hover {
    background: rgba(255,255,255,0.85);
    transform: translateY(-2px);
}

.contact-map-panel {
    position: relative;
    min-height: 520px;
}

.contact-map-panel iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .contact-split {
        grid-template-columns: 1fr;
    }
    .contact-info-panel {
        padding: 40px 25px;
    }
    .contact-map-panel {
        min-height: 350px;
    }
}



.mb-50 { margin-bottom: 50px; }
.relative-z { position: relative; z-index: 10; }

.premium-hero {
    position: relative;
    min-height: 450px;
    margin-top: 80px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(10, 45, 77, 0.95) 0%, rgba(41, 151, 198, 0.7) 100%);
}

.premium-hero h1 {
    color: var(--bg-white);
    font-size: 3.2rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.premium-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 600px;
    line-height: 1.6;
}

.badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.premium-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0,0,0,0.02);
    border-bottom: 4px solid transparent;
    transition: all 0.4s ease;
}

.premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-bottom: 4px solid var(--primary-color);
}

.card-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background-color: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.premium-card:hover .card-icon-wrapper {
    background-color: var(--primary-color);
    color: var(--bg-white);
    transform: scale(1.1);
}

.premium-card h4 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--dark-blue);
    font-weight: 600;
}

.premium-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.logo-icon i {
    font-size: 2.2rem;
    color: var(--primary-color);
}


.reveal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.reveal-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 280px;
    transition: var(--transition);
}

.reveal-card:hover {
    box-shadow: 0 15px 40px rgba(58,174,224,0.15);
}

.reveal-card-front {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding: 30px;
    background: var(--bg-white);
    transition: all 0.5s ease;
    z-index: 2;
}

.reveal-card:hover .reveal-card-front {
    transform: translateY(-100%);
    opacity: 0;
}

.reveal-card-back {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    padding: 30px;
    background: var(--primary-color);
    color: var(--bg-white);
    display: flex; flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transform: translateY(100%);
    transition: all 0.5s ease;
    z-index: 1;
}

.reveal-card:hover .reveal-card-back {
    transform: translateY(0);
}

.reveal-card-back h5 {
    color: var(--bg-white) !important;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 1.15rem;
}

.reveal-card-back p {
    color: rgba(255,255,255,0.8) !important;
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.reveal-card-back .btn {
    padding: 8px 24px;
    font-size: 0.8rem;
    background: var(--bg-white);
    color: var(--primary-color);
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.reveal-card-back .btn:hover {
    background: var(--bg-light);
}

.reveal-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .reveal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .reveal-grid {
        grid-template-columns: 1fr;
    }
}

.treatment-steps {
    max-width: 800px;
    margin: 40px auto 0;
    position: relative;
}

.treatment-steps::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-color), rgba(58,174,224,0.2));
}

.treatment-step {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 35px;
    position: relative;
}

.treatment-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(58,174,224,0.3);
}

.step-content {
    background: var(--bg-white);
    padding: 25px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    flex: 1;
    transition: var(--transition);
}

.step-content:hover {
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
    transform: translateX(5px);
}

.step-content h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 576px) {
    .treatment-steps::before {
        display: none;
    }
    .treatment-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .step-content {
        padding: 20px;
    }
}

.anatomy-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.anatomy-text {
    flex: 1;
}

.anatomy-text h2 {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.anatomy-text > p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-light);
    line-height: 1.7;
}

.anatomy-image {
    flex: 1;
}

.anatomy-image img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.accordion-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.accordion-item {
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.accordion-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: var(--bg-white);
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
}

.accordion-trigger span {
    display: flex;
    align-items: center;
    gap: 12px;
}

.accordion-trigger span i {
    font-size: 1.2rem;
}

.accordion-arrow {
    font-size: 0.8rem;
    color: var(--text-light);
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-arrow {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    padding: 0 20px 18px;
}

.accordion-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .anatomy-layout {
        flex-direction: column;
    }
    .anatomy-image img {
        height: 400px;
    }
}

