/* Satellite Tracker page specific styles */
.page-hero {
    padding: 100px 0;
}

.hero-content {
    max-width: 900px;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
}

.hero-subtitle {
    font-size: 1.15rem;
    max-width: 700px;
}

.section {
    padding: 70px 0;
}

.content-section {
    width: 100%;
    border-radius: 16px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .1);
    overflow: hidden;
    padding: 0;
}

.content-section iframe {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

/* ========== Satellite Tracker Page Mobile Responsive ========== */
@media (max-width: 968px) {
    .page-hero {
        padding: 80px 0;
    }

    .hero-title {
        font-size: clamp(2.5rem, 7vw, 4rem);
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .section {
        padding: 50px 0;
    }

    .content-section {
        border-radius: 14px;
    }

    .content-section iframe {
        height: 600px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 70px 0;
    }

    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3.5rem);
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section {
        padding: 40px 0;
    }

    .content-section {
        border-radius: 12px;
    }

    .content-section iframe {
        height: 550px;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 60px 0;
    }

    .hero-title {
        font-size: clamp(2rem, 9vw, 3rem);
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .section {
        padding: 30px 0;
    }

    .content-section {
        border-radius: 10px;
    }

    .content-section iframe {
        height: 500px;
    }
}
