/* =============================
   RESET & BASE
============================= */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --blue: #0052A5;
    --blue-dark: #003d7a;
    --blue-light: #1a6bbf;
    --orange: #FF6B00;
    --orange-light: #ff8533;
    --red: #D32F2F;
    --red-light: #e53935;
    --white: #ffffff;
    --light: #f4f7fb;
    --gray: #6b7280;
    --dark: #1a1f2e;
    --player-h: 80px;
    --nav-h: 72px;
    --radius: 12px;
    --shadow: 0 4px 24px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 48px rgba(0,0,0,0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark);
    background: var(--white);
    padding-bottom: var(--player-h);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =============================
   BUTTONS
============================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange), var(--red));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255, 107, 0, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.6);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* =============================
   SECTION HEADERS
============================= */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: rgba(0,82,165,0.1);
    color: var(--blue);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-header.light .section-tag {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-header.light .section-title {
    color: var(--white);
}

.section-desc {
    font-size: 17px;
    color: var(--gray);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-header.light .section-desc {
    color: rgba(255,255,255,0.8);
}

/* =============================
   NAVBAR
============================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-h);
    transition: all 0.4s ease;
    background: transparent;
}

.navbar.scrolled {
    background: var(--blue-dark);
    box-shadow: 0 2px 24px rgba(0,0,0,0.3);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
      width: 250px;
    /* height: 44px; 
    background: linear-gradient(135deg, #ffffff, #ffffff);
    border-radius: 11px;*/
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: rgba(255,255,255,0.9);
}

.logo-freq {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 20px;
    color: var(--white);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background: rgba(255,255,255,0.15);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
}

/* =============================
   HERO
============================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/header.jpg');
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.hero:hover .hero-bg {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 61, 122, 0.88) 0%,
        rgba(0, 82, 165, 0.75) 40%,
        rgba(211, 47, 47, 0.6) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 3px;
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.25);
    margin-bottom: 5px;
}

.live-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
    margin-bottom: 20px;
}

.hero-title-main {
    display: block;
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-title-freq {
    display: block;
    font-size: clamp(72px, 15vw, 140px);
    font-weight: 900;
    color: var(--white);
    letter-spacing: -2px;
    line-height: 0.9;
    text-shadow: 0 0 60px rgba(255,107,0,0.5);
}

.hero-slogan {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(16px, 2.5vw, 22px);
    font-weight: 600;
    color: var(--orange-light);
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.hero-desc {
    font-size: 17px;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll a {
    color: rgba(255,255,255,0.5);
    font-size: 22px;
    animation: bounce 2s infinite;
    display: block;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* =============================
   ABOUT
============================= */
.about {
    padding: 100px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: visible;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    height: 480px;
}

.about-image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--orange), var(--red));
    color: white;
    padding: 16px 24px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 8px 24px rgba(255,107,0,0.4);
}

.about-image-badge i {
    font-size: 22px;
}

.about-text {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 36px;
}

.stat-card {
    background: var(--light);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.stat-card:hover {
    border-color: var(--blue);
    background: white;
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.stat-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--blue), var(--blue-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
}

.stat-value {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: var(--dark);
}

.stat-label {
    display: block;
    font-size: 12px;
    color: var(--gray);
    font-weight: 500;
}

/* =============================
   BROADCASTS
============================= */
.broadcasts {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.broadcasts-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 50%, #1a3a6e 100%);
}

.broadcasts > .container {
    position: relative;
    z-index: 1;
}

.broadcasts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.broadcast-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.broadcast-card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.3);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.broadcast-card.featured {
    background: rgba(255,107,0,0.2);
    border-color: rgba(255,107,0,0.4);
    transform: scale(1.03);
}

.broadcast-card.featured:hover {
    transform: scale(1.03) translateY(-8px);
}

.broadcast-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--orange), var(--red));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    z-index: 2;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.broadcast-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.broadcast-card:hover .broadcast-img {
    transform: scale(1.05);
}

.broadcast-content {
    padding: 24px;
}

.broadcast-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
}

.broadcast-content p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 16px;
}

.broadcast-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.9);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* =============================
   CONTACT
============================= */
.contact {
    padding: 100px 0;
    background: var(--light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.3s;
    border-left: 4px solid transparent;
}

.contact-card:hover {
    box-shadow: var(--shadow);
    border-left-color: var(--orange);
    transform: translateX(4px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--blue), var(--blue-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-detail h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.contact-detail a {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    transition: color 0.2s;
    margin-bottom: 4px;
}

.contact-detail a:hover {
    color: var(--blue);
}

.contact-detail p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.5;
    margin-bottom: 4px;
}

.sms-card .contact-detail {
    width: 100%;
}

.sms-number {
    display: inline-block;
    background: linear-gradient(135deg, var(--orange), var(--red));
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 28px;
    padding: 6px 20px;
    border-radius: 8px;
    margin: 8px 0;
    letter-spacing: 2px;
}

/* Contact Form */
.contact-form-wrap {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    color: var(--dark);
    background: var(--white);
    transition: all 0.2s;
    outline: none;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(0,82,165,0.1);
}

/* =============================
   FOOTER
============================= */
.footer {
    background: var(--dark);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-logo i {
    color: var(--orange);
    font-size: 28px;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 16px;
    transition: all 0.2s;
}

.social-links a:hover {
    background: var(--orange);
    color: white;
    transform: translateY(-2px);
}

.footer-links h4,
.footer-contact h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}

.footer-links ul li a i {
    font-size: 10px;
    color: var(--orange);
}

.footer-links ul li a:hover {
    color: var(--white);
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 12px;
}

.footer-contact ul li i {
    color: var(--orange);
    width: 16px;
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.35);
}

.footer-bottom a {
    color: var(--orange-light);
}

/* =============================
   RADIO PLAYER (fixed bottom)
============================= */
.radio-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: var(--player-h);
    background: linear-gradient(135deg, #0d1a2e, var(--blue-dark));
    border-top: 2px solid var(--orange);
    z-index: 2000;
    box-shadow: 0 -4px 30px rgba(0,0,0,0.4);
}

.player-inner {
    display: flex;
    align-items: center;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    gap: 24px;
}

.player-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 220px;
}

.player-logo {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--orange), var(--red));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
    animation: player-pulse 2s infinite;
}

@keyframes player-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,107,0,0.5); }
    50% { box-shadow: 0 0 0 10px rgba(255,107,0,0); }
}

.player-name {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--white);
}

.player-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    font-weight: 500;
}

.player-status .live-dot {
    width: 7px;
    height: 7px;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.play-btn {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--orange), var(--red));
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(255,107,0,0.5);
}

.play-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(255,107,0,0.6);
}

.play-btn:active {
    transform: scale(0.96);
}

.player-volume {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vol-btn {
    background: none;
    border: none;
    color: rgba(255,255,255,0.6);
    font-size: 18px;
    cursor: pointer;
    transition: color 0.2s;
    padding: 4px;
}

.vol-btn:hover {
    color: var(--white);
}

.vol-slider {
    -webkit-appearance: none;
    width: 100px;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
    outline: none;
    cursor: pointer;
}

.vol-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    background: var(--orange);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
}

.vol-slider::-webkit-slider-thumb:hover {
    transform: scale(1.3);
}

/* Wave animation */
.player-wave {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-left: auto;
    height: 40px;
    padding-right: 8px;
}

.wave-bar {
    width: 4px;
    background: linear-gradient(to top, var(--orange), var(--red));
    border-radius: 4px;
    animation: wave 1.2s infinite ease-in-out;
    height: 8px;
    opacity: 0.3;
}

.wave-bar:nth-child(1) { animation-delay: 0s; }
.wave-bar:nth-child(2) { animation-delay: 0.1s; }
.wave-bar:nth-child(3) { animation-delay: 0.2s; }
.wave-bar:nth-child(4) { animation-delay: 0.3s; }
.wave-bar:nth-child(5) { animation-delay: 0.2s; }
.wave-bar:nth-child(6) { animation-delay: 0.1s; }
.wave-bar:nth-child(7) { animation-delay: 0s; }

.wave-bar.active {
    opacity: 1;
}

@keyframes wave {
    0%, 100% { height: 8px; }
    50% { height: 32px; }
}

.radio-player.playing .wave-bar {
    opacity: 1;
}

/* =============================
   RESPONSIVE
============================= */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image img {
        height: 380px;
    }

    .broadcasts-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .broadcast-card.featured {
        transform: none;
    }

    .broadcast-card.featured:hover {
        transform: translateY(-8px);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {


.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 70px 10px;
    max-width: 800px;
}


.logo-icon {
      width: 250px;
    /* height: 44px; 
    background: linear-gradient(135deg, #ffffff, #ffffff);
    border-radius: 11px;*/
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    z-index: 9999;
}


    .section-title {
        font-size: 28px;
    }

    .nav-menu {
        position: fixed;
        top: var(--nav-h);
        left: 0;
        right: 0;
        background: var(--blue-dark);
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        transform: translateY(-140%);
        transition: transform 0.3s ease;
        box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    }

    .nav-menu.open {
        transform: translateY(0);
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 12px;
    }

    .hamburger {
        display: flex;
        z-index: 9999;
    }

    .about, .broadcasts, .contact {
        padding: 70px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .player-wave {
        display: none;
    }

    .player-brand {
        min-width: unset;
    }

    .vol-slider {
        width: 70px;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
        max-width: 280px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrap {
        padding: 24px;
    }

    .player-inner {
        padding: 0 16px;
        gap: 14px;
    }

    .player-brand {
        min-width: unset;
    }

    .player-name {
        font-size: 12px;
    }
}