/* Topbar */
.topbar {
    background: #0a1f44;
    color: #ffffff;
    font-size: 14px;
    text-align: center;
    padding: 8px 15px;
    font-weight: 500;
}

.topbar a {
    color: #ffd200;
    text-decoration: none;
    font-weight: 600;
    margin-left: 5px;
}

.topbar a:hover {
    text-decoration: underline;
}

/* Header */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 60px;
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Logo */
.logo img {
    max-height: 65px;
    width: auto;
}

/* Header Right */
.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-right a {
    color: #0a1f44;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-right a i {
    color: #0056ff;
}

.header-right a:hover {
    color: #0056ff;
}

/* Menu Button (Mobile) */
.menu-btn {
    font-size: 28px;
    cursor: pointer;
    display: none;
    color: #0a1f44;
}

/* Responsive */
@media (max-width: 991px) {
    header {
        padding: 15px 25px;
    }

    .header-right a {
        display: none;
    }

    .menu-btn {
        display: block;
    }
}

@media (max-width: 576px) {
    .topbar {
        font-size: 13px;
        padding: 6px 10px;
    }
}
/* ==============================
   GLOBAL RESET & BASICS
============================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Oswald', sans-serif;
    color: #1d1d1d;
    background: #ffffff;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

/* ==============================
   HERO SECTION
============================== */
.hero-clean {
    padding: 120px 60px;
    background: linear-gradient(135deg, #061a3a, #0b2d5f);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.hero-wrapper {
    max-width: 1250px;
    margin: auto;
    display: flex;
    gap: 90px;
    align-items: center;
}

/* =====================
   HERO CONTENT
===================== */

.hero-content {
    max-width: 600px;
}

.hero-content .tag {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 2px;
    color: #8fb3ff;
    margin-bottom: 16px;
    font-weight: 600;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    color: #d6e3ff;
    line-height: 1.7;
    margin-bottom: 35px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffd200;
    color: #071c3f;
    padding: 16px 34px;
    border-radius: 40px;
    font-weight: 700;
    text-decoration: none;
}

/* =====================
   OFFER CARD
===================== */

.offer-card {
    background: linear-gradient(135deg, #ffffff, #f4f7ff);
    color: #071c3f;
    padding: 40px;
    width: 400px;
    border-radius: 22px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.25);
    position: relative;
}

/* Offer header */
.offer-top {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: #0056ff;
    margin-bottom: 25px;
}

/* Deal rows */
.deal {
    margin-bottom: 18px;
}

.deal strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}

.deal .price {
    font-size: 22px;
    font-weight: 800;
    color: #0056ff;
}

.deal small {
    font-size: 14px;
    color: #555;
}

/* Highlight */
.deal.highlight {
    background: #eaf0ff;
    padding: 16px;
    border-radius: 14px;
    border-left: 4px solid #0056ff;
}

/* CTA inside card */
.cta-btn {
    margin-top: 30px;
    display: block;
    text-align: center;
    background: #0056ff;
    color: #fff;
    padding: 16px;
    border-radius: 35px;
    font-weight: 700;
    text-decoration: none;
}

/* =====================
   RESPONSIVE
===================== */

@media (max-width: 991px) {
    .hero-wrapper {
        flex-direction: column;
        gap: 60px;
    }

    .offer-card {
        width: 100%;
    }

    .hero-content h1 {
        font-size: 38px;
    }
}

/* ==============================
   TV OFFER SECTION
============================== */
.tv-offer,
.tv-offer2 {
    padding: 90px 60px;
    background: #f9fbff;
}

.offer-container {
    max-width: 1250px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.offer-image img {
    border-radius: 16px;
}

.offer-content {
    max-width: 560px;
}

.blue-text {
    color: #0056ff;
    font-weight: 600;
    margin-bottom: 10px;
}

.offer-title {
    font-size: 40px;
    color: #0a1f44;
    margin-bottom: 15px;
}

.offer-desc {
    font-size: 17px;
    color: #444;
    margin-bottom: 25px;
}

/* PRICE RIBBON */
.price-ribbon {
    background: #0056ff;
    color: #fff;
    padding: 18px 26px;
    border-radius: 16px;
    display: inline-block;
    margin-bottom: 25px;
}

.price-ribbon .plan-label {
    font-size: 14px;
    opacity: 0.9;
}

.big-price {
    font-size: 42px;
    font-weight: 700;
}

.currency,
.per {
    font-size: 18px;
}

/* FEATURES GRID */
.features-grid {
    margin-top: 25px;
}

.features-grid li {
    list-style: none;
    padding-left: 26px;
    margin-bottom: 12px;
    position: relative;
}

.features-grid li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #0056ff;
    font-weight: bold;
}

/* CTA BUTTON */
.cta-button {
    display: inline-block;
    margin-top: 30px;
    background: #0056ff;
    color: #fff;
    padding: 14px 34px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}

/* ==============================
   DISNEY OFFER
============================== */
.disney-offer {
    padding: 90px 40px;
    background: #ffffff;
}

.disney-card {
    max-width: 1000px;
    margin: auto;
    background: #f8faff;
    padding: 45px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    gap: 50px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.07);
}

.disney-card-logo img {
    max-width: 180px;
}

.disney-card-content h2 {
    font-size: 34px;
    color: #0a1f44;
    margin-bottom: 15px;
}

.disney-card-content p {
    font-size: 17px;
    color: #444;
}

.disney-btn {
    margin-top: 20px;
    display: inline-block;
    background: #0056ff;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}

/* ==============================
   VOICE SECTION
============================== */
.voice-section {
    padding: 90px 60px;
    background: #f9fbff;
}

.voice-container {
    max-width: 1250px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.voice-section.reverse {
    background: #ffffff;
}

.voice-image-side img {
    border-radius: 18px;
}

.voice-tag {
    color: #0056ff;
    font-weight: 600;
    margin-bottom: 10px;
    display: inline-block;
}

.voice-content h2 {
    font-size: 38px;
    color: #0a1f44;
    margin-bottom: 15px;
}

.voice-content p {
    font-size: 17px;
    color: #444;
    margin-bottom: 20px;
}

.price-card {
    background: #eef4ff;
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 25px;
}

.price-card h3 {
    font-size: 36px;
    color: #0056ff;
}

.btn-call {
    background: #0056ff;
    color: #fff;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}

.offers,
.disclaimer {
    font-size: 14px;
    color: #666;
    margin-top: 12px;
}

/* ==============================
   BUSINESS OFFER
============================== */
/* ==============================
   BUSINESS HERO FIX – SPECNET
============================== */

.offer-section {
    background: #071c3f;
    padding: 120px 60px;
}

.business-wrapper {
    max-width: 1200px;
    margin: auto;
}

.offer-section .offer-content {
    max-width: 650px;
    text-align: left;
}

/* Headings */
.offer-section h4 {
    color: #9bb8ff;
    font-size: 14px;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.offer-section h2 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

/* Description */
.offer-section p {
    font-size: 18px;
    color: #d6e0ff;
    margin-bottom: 30px;
}

/* Price */
.offer-section .price {
    font-size: 44px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
}

.offer-section .price span {
    font-size: 16px;
    font-weight: 400;
    opacity: 0.9;
}

/* CTA Button */
.offer-btn {
    background: #ffd200;
    color: #071c3f;
    padding: 16px 36px;
    border-radius: 40px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.offer-btn i {
    font-size: 16px;
}

/* Disclaimer */
.offer-section .small-text {
    margin-top: 15px;
    font-size: 13px;
    color: #b5c7ff;
}

/* ==============================
   RESPONSIVE FIX
============================== */
@media (max-width: 991px) {
    .offer-section {
        padding: 80px 30px;
    }

    .offer-section h2 {
        font-size: 36px;
    }

    .offer-section .offer-content {
        max-width: 100%;
    }
}
/* ==============================
   TWO-SIDE OFFER LAYOUT
============================== */

.offer-grid {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

/* Right Offer Visual Separation */
.offer-right {
    padding-left: 60px;
    border-left: 1px solid rgba(255,255,255,0.15);
}

/* Responsive */
@media (max-width: 991px) {
    .offer-grid {
        flex-direction: column;
        gap: 60px;
    }

    .offer-right {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.15);
        padding-top: 50px;
    }
}
/* ==============================
   DISCLAIMER SECTION
============================== */

.disclaimer-section {
    background: #0f2644;
    color: #ffffff;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.disclaimer-section h2 {
    font-size: 28px;
    margin-bottom: 25px;
}

.disclaimer-section ul {
    padding-left: 20px;
}

.disclaimer-section li {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: #e4ecff;
}

.disclaimer-section strong {
    color: #ffffff;
}

/* ==============================
   FOOTER
============================== */

.site-footer {
    background: #071c3f;
    color: #ffffff;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 70px 20px;
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

/* Left */
.footer-left {
    max-width: 420px;
}

.footer-left h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.footer-left p {
    font-size: 15px;
    line-height: 1.7;
    color: #cdd9ff;
}

/* Right */
.footer-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #d6e0ff;
}

.footer-item i {
    color: #ffd200;
    font-size: 16px;
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #cdd9ff;
    max-width: 1200px;
    margin: auto;
}

.footer-links a {
    margin-left: 20px;
    color: #cdd9ff;
    text-decoration: none;
}

.footer-links a:hover {
    color: #ffd200;
}

/* ==============================
   RESPONSIVE
============================== */

@media (max-width: 991px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-right {
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-links a {
        margin: 0 10px;
    }
}



@media (max-width: 768px) {
  section,
  .hero-clean,
  .tv-offer,
  .tv-offer2,
  .voice-section,
  .offer-section,
  .disney-offer {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}
@media (max-width: 576px) {
  header {
    padding: 12px 16px;
  }

  .logo img {
    max-height: 50px;
  }
}
@media (max-width: 768px) {
  .hero-clean {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .hero-wrapper {
    gap: 40px;
  }

  .hero-content h1 {
    font-size: 32px;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 16px;
  }

  .offer-card {
    padding: 25px;
  }
}
@media (max-width: 768px) {
  .offer-container,
  .voice-container,
  .disney-card {
    flex-direction: column;
    gap: 35px;
  }

  .offer-content,
  .voice-content {
    max-width: 100%;
  }

  .offer-title,
  .voice-content h2,
  .disney-card-content h2 {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .big-price {
    font-size: 32px;
  }

  .offer-section h2 {
    font-size: 30px;
  }

  .offer-section .price {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .footer-container {
    padding: 50px 20px;
  }

  .footer-left h2 {
    font-size: 24px;
  }

  .footer-left p {
    font-size: 14px;
  }

  .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
