/* ===== TEEN HERO SECTION ===== */
.th-hero{
    position:relative;
    background:linear-gradient(135deg,#0f172a,#2563eb);
    overflow:hidden;
    color:#fff;
    min-height:400px;
    display:flex;
    align-items:center;
}
.th-hero{
    height:400px;
    display:flex;
    align-items:center;
}

.th-overlay{
    position:absolute;
    inset:0;
    background:url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1920&q=80');
    background-size:cover;
    background-position:center;
    opacity:.12;
}

.th-content{
    position:relative;
    z-index:2;
}

.th-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:rgba(255,255,255,.1);
    border:1px solid rgba(255,255,255,.15);
    padding:10px 18px;
    border-radius:50px;
    margin-bottom:20px;
    font-size:14px;
    font-weight:600;
}

.th-content h1{
    font-size:62px;
    font-weight:800;
    line-height:1.1;
    margin-bottom:20px;
}

.th-content p{
    font-size:18px;
    color:#dbeafe;
    max-width:650px;
    margin-bottom:35px;
}

.th-btns{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin-bottom:50px;
}

.th-stats{
    display:flex;
    gap:50px;
}

.th-stats h3{
    color:#60a5fa;
    font-size:34px;
    margin-bottom:5px;
}

.th-stats span{
    color:#cbd5e1;
}

.th-image{
    position:relative;
    z-index:2;
    text-align:center;
}

.th-image img{
    width:100%;
    max-width:500px;
    border-radius:25px;
    box-shadow:0 25px 60px rgba(0,0,0,.35);
}

/* ===== ABOUT SECTION ===== */
.py-100{
    padding:100px 0;
}

.th-about{
    background:#fff;
}

.th-about-img img{
    border-radius:25px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.th-section-badge{
    display:inline-block;
    padding:8px 18px;
    background:#dbeafe;
    color:#2563eb;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.th-section-title{
    font-size:42px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:20px;
}

.th-section-text{
    color:#64748b;
    line-height:1.8;
    margin-bottom:15px;
}

.th-feature-box{
    background:#f8fafc;
    border-radius:18px;
    padding:20px;
    text-align:center;
    margin-bottom:20px;
    transition:.3s;
    border:1px solid #e2e8f0;
}

.th-feature-box:hover{
    transform:translateY(-5px);
}

.th-feature-box i{
    font-size:28px;
    color:#2563eb;
    margin-bottom:12px;
}

.th-feature-box h5{
    margin:0;
    font-size:16px;
    font-weight:600;
    color:#0f172a;
}

/* ===== SERVICES SECTION ===== */
.th-service-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid #e0e0e0;
}

.th-service-card:hover {
    border-color: #003366;
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.th-service-img {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.th-service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.th-service-card:hover .th-service-img img {
    transform: scale(1.1);
}

.th-service-content {
    padding: 30px;
    position: relative;
    z-index: 1;
}

.th-service-icon {
    width: 60px;
    height: 60px;
    background: #E31E24;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-top: 8px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
}

.th-service-card:hover .th-service-icon {
    background: #003366;
    transform: scale(1.1) rotate(360deg);
}

.th-service-card h4 {
    color: #003366;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.th-service-card p {
    color: #333;
    line-height: 1.7;
    margin-bottom: 20px;
}

.th-service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.th-service-card ul li {
    padding: 8px 0;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.th-service-card ul li::before {
    content: '✓';
    color: #E31E24;
    font-weight: 700;
    font-size: 1rem;
}

/* ===== HEALTH CONCERNS SECTION ===== */
.th-concerns{
    background:#fff;
}

.th-concern-card{
    background:#f8fafc;
    padding:30px;
    border-radius:22px;
    text-align:center;
    height:100%;
    border:1px solid #e2e8f0;
    transition:.3s;
}

.th-concern-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.th-concern-card i{
    width:75px;
    height:75px;
    line-height:75px;
    border-radius:50%;
    background:#dbeafe;
    color:#2563eb;
    font-size:28px;
    margin-bottom:20px;
}

.th-concern-card h4{
    font-size:20px;
    font-weight:700;
    color:#0f172a;
    margin-bottom:12px;
}

.th-concern-card p{
    color:#64748b;
    margin:0;
}

/* ===== WARNING SIGNS SECTION ===== */
.th-warning-signs{
    background:#f8fafc;
}

.th-warning-card{
    background:#fff;
    border-radius:25px;
    padding:40px;
    height:100%;
    transition:.3s;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.th-warning-card:hover{
    transform:translateY(-5px);
}

.th-warning-icon{
    width:80px;
    height:80px;
    line-height:80px;
    text-align:center;
    border-radius:50%;
    margin-bottom:25px;
}

.urgent .th-warning-icon{
    background:#fee2e2;
    color:#dc2626;
}

.appointment .th-warning-icon{
    background:#dbeafe;
    color:#2563eb;
}

.th-warning-icon i{
    font-size:30px;
}

.th-warning-card h4{
    font-size:24px;
    font-weight:700;
    margin-bottom:20px;
    color:#0f172a;
}

.th-warning-card ul{
    list-style:none;
    padding:0;
    margin:0;
}

.th-warning-card ul li{
    position:relative;
    padding-left:28px;
    margin-bottom:15px;
    color:#475569;
}

.th-warning-card ul li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    color:#2563eb;
    font-weight:700;
}

/* ===== HEALTH TIPS SECTION ===== */
.th-health-tips{
    background:#fff;
}

.th-tip-card{
    background:#f8fafc;
    padding:35px;
    border-radius:24px;
    text-align:center;
    height:100%;
    transition:.3s;
    border:1px solid #e2e8f0;
}

.th-tip-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.th-tip-card i{
    width:80px;
    height:80px;
    line-height:80px;
    border-radius:50%;
    background:#dbeafe;
    color:#2563eb;
    font-size:30px;
    margin-bottom:20px;
}

.th-tip-card h4{
    font-size:22px;
    font-weight:700;
    margin-bottom:15px;
    color:#0f172a;
}

.th-tip-card p{
    color:#64748b;
    margin:0;
}

/* ===== CTA SECTION ===== */
.wh-cta-section{
    padding: 80px 0;
    background: #f8fbff;
}

.wh-cta-wrapper{
    background: linear-gradient(135deg, #0d4a8b, #1b6bc1);
    padding: 50px;
    border-radius: 20px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.wh-cta-wrapper h2{
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.wh-cta-wrapper p{
    font-size: 18px;
    line-height: 1.8;
    margin: 0;
    color: rgba(255,255,255,0.9);
}

.btn-white-custom{
    display: inline-block;
    padding: 14px 32px;
    background: #fff;
    color: #0d4a8b;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all .3s ease;
}

.btn-white-custom:hover{
    transform: translateY(-3px);
}

.btn-outline-white{
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all .3s ease;
}

.btn-outline-white:hover{
    background: #fff;
    color: #0d4a8b;
}

.ms-2{
    margin-left: 10px;
}

.text-lg-end{
    text-align: right;
}

.align-items-center{
    align-items: center;
}

.row{
    display: flex;
    flex-wrap: wrap;
}

.col-lg-8{
    width: 66.66%;
}

.col-lg-4{
    width: 33.33%;
}

@media(max-width: 991px){

    .wh-cta-wrapper{
        padding: 35px 25px;
        text-align: center;
    }

    .col-lg-8,
    .col-lg-4{
        width: 100%;
    }

    .text-lg-end{
        text-align: center;
        margin-top: 25px;
    }

    .wh-cta-wrapper h2{
        font-size: 32px;
    }

    .btn-white-custom,
    .btn-outline-white{
        display: block;
        width: 100%;
        margin: 10px 0;
    }

    .ms-2{
        margin-left: 0;
    }
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet (992px and below) */
@media (max-width: 992px) {
    /* Hero */
    .th-content h1 {
        font-size: 42px;
    }
    
    .th-stats {
        gap: 25px;
        justify-content: center;
    }
    
    .th-image {
        margin-bottom: 50px;
    }
    
    .th-content {
        text-align: center;
        padding: 80px 0 40px;
    }
    
    /* Section titles */
    .th-section-title {
        font-size: 32px;
    }
    
    /* Services */
    .th-service-img {
        height: 200px;
    }
    
    .th-service-content {
        padding: 25px 20px;
    }
    
    .th-service-icon {
        margin-top: -25px;
    }
    
    /* Concerns */
    .th-concern-card {
        padding: 25px;
    }
    
    .th-concern-card i {
        width: 65px;
        height: 65px;
        line-height: 65px;
        font-size: 24px;
    }
    
    /* Warning */
    .th-warning-card {
        padding: 30px 25px;
    }
    
    .th-warning-card h4 {
        font-size: 20px;
    }
    
    /* Tips */
    .th-tip-card {
        padding: 30px 20px;
    }
    
    .th-tip-card i {
        width: 70px;
        height: 70px;
        line-height: 70px;
        font-size: 26px;
    }
    
    /* CTA */
    .th-cta-wrapper h2 {
        font-size: 1.6rem;
    }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
    /* Padding */
    .py-100 {
        padding: 60px 0;
    }
    
    /* Hero */
    .th-content h1 {
        font-size: 32px;
    }
    
    .th-content p {
        font-size: 16px;
    }
    
    .th-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .th-stats h3 {
        font-size: 28px;
    }
    
    .th-btns {
        justify-content: center;
    }
    
    /* Section titles */
    .th-section-title {
        font-size: 26px;
    }
    
    .th-section-badge {
        font-size: 12px;
        padding: 6px 14px;
    }
    
    /* Services */
    .th-service-img {
        height: 180px;
    }
    
    .th-service-content {
        padding: 25px 20px;
    }
    
    .th-service-icon {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
        margin-top: -20px;
    }
    
    .th-service-card h4 {
        font-size: 1.2rem;
    }
    
    /* Concerns */
    .th-concern-card {
        padding: 20px;
    }
    
    .th-concern-card i {
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .th-concern-card h4 {
        font-size: 18px;
    }
    
    /* Warning */
    .th-warning-card {
        padding: 25px 20px;
    }
    
    .th-warning-card h4 {
        font-size: 18px;
    }
    
    .th-warning-icon {
        width: 65px;
        height: 65px;
        line-height: 65px;
        margin-bottom: 20px;
    }
    
    .th-warning-icon i {
        font-size: 24px;
    }
    
    /* Tips */
    .th-tip-card {
        padding: 25px 20px;
    }
    
    .th-tip-card i {
        width: 65px;
        height: 65px;
        line-height: 65px;
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .th-tip-card h4 {
        font-size: 18px;
    }
    
    /* CTA */
    .th-cta-wrapper {
        padding: 30px 20px;
    }
    
    .th-cta-wrapper h2 {
        font-size: 1.4rem;
    }
    
    .th-cta-wrapper p {
        font-size: 1rem;
    }
}

/* Small Mobile (576px and below) */
@media (max-width: 576px) {
    /* Hero */
    .th-content h1 {
        font-size: 28px;
    }
    
    .th-badge {
        font-size: 12px;
        padding: 8px 14px;
    }
    
    /* Services */
    .th-service-img {
        height: 160px;
    }
    
    .th-service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-top: -18px;
    }
    
    .th-service-card h4 {
        font-size: 1.1rem;
    }
    
    .th-service-content {
        padding: 20px 15px;
    }
    
    /* Concerns */
    .th-concern-card i {
        width: 55px;
        height: 55px;
        line-height: 55px;
        font-size: 20px;
    }
    
    .th-concern-card h4 {
        font-size: 16px;
    }
    
    /* Warning */
    .th-warning-card {
        padding: 20px 15px;
    }
    
    .th-warning-card h4 {
        font-size: 16px;
    }
    
    .th-warning-icon {
        width: 55px;
        height: 55px;
        line-height: 55px;
    }
    
    .th-warning-icon i {
        font-size: 20px;
    }
    
    /* Tips */
    .th-tip-card {
        padding: 20px 15px;
    }
    
    .th-tip-card i {
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 22px;
    }
    
    .th-tip-card h4 {
        font-size: 16px;
    }
    
    /* CTA */
    .th-cta-wrapper h2 {
        font-size: 1.2rem;
    }
    
    .th-btns {
        flex-direction: column;
        gap: 10px;
    }
}