/* General Reset */
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* Header */
.cph-header {
  padding: 20px 30px;
  background-color: #101820;
  display: flex;
  align-items: center;
  /*justify-content: space-between;*/
  flex-wrap: wrap;
  position: relative;
}

/* Logo */
.logo-wrapper img {
  max-width: 170px;
  height: auto;
}

/* Menu Toggle for Mobile */
.menu-toggle {
  font-size: 26px;
  background: none;
  color: #000;
  border: none;
  cursor: pointer;
  display: none;
  float: right;
}

/* Navigation */
.main-nav {
  flex-grow: 1;
  text-align: right;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 25px;
  justify-content: flex-end;
  align-items: center;
}

.nav-list li a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  font-family: 'Arial', sans-serif;
  transition: color 0.3s ease;
}

.nav-list li a:hover {
  color: #00bfff;
}

/* Call Now Button */
.call-now-btn {
  background-color: #00bfff;
  padding: 8px 18px;
  border-radius: 4px;
  color: #101820 !important;
  font-weight: bold;
}

.call-now-btn:hover {
  background-color: #009acd;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    width: 100%;
    display: none;
  }

  .main-nav.active {
    display: block;
    margin-top: 10px;
  }

  .nav-list {
    flex-direction: column;
    gap: 15px;
    text-align: left;
    background-color: #101820;
    padding: 15px 0;
  }

  .nav-list li {
    padding-left: 10px;
  }
}

/* Banner Section */
.cph-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 80px 30px;
  background: linear-gradient(to right, #f0f9ff, #e0f2f1);
}

.banner-content {
  flex: 1;
  max-width: 600px;
}

.banner-content h2 {
  font-size: 36px;
  font-family: 'Canaro', sans-serif;
  margin-bottom: 20px;
  color: #003366;
}

.banner-content p {
  font-size: 16px;
  color: #444;
  margin-bottom: 30px;
}

.cta-btn {
  padding: 14px 28px;
  background-color: #00bfff;
  color: #fff;
  font-family: 'Canaro', sans-serif;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.cta-btn:hover {
  background-color: #009acd;
}

.banner-image {
  flex: 1;
  text-align: center;
}

.banner-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .cph-banner {
    flex-direction: column-reverse;
    text-align: center;
  }

  .banner-content h2 {
    font-size: 28px;
  }
}

.cph-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 35px 30px;
  background-color: #f2fcff;
}

.hero-content {
  flex: 1;
  max-width: 600px;
  padding: 20px;
}

.hero-label {
  display: inline-block;
  font-size: 18px;
  color: #035e7b;
  font-weight: 600;
  background: #e1f5ff;
  padding: 10px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: 32px;
  font-weight: 700;
  color: #003349;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 16px;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.6;
}

.hero-content .highlight {
  color: #00a0e3;
  font-weight: bold;
}

.subtext {
  color: #666;
  font-size: 14px;
}

.cta-button {
  display: inline-block;
  background-color: #00a0e3;
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  margin-top: 25px;
  text-decoration: none;
  transition: background 0.3s ease;
  font-weight: 600;
}

.cta-button:hover {
  background-color: #007cb2;
}

.hero-image {
  flex: 1;
  text-align: center;
  padding: 20px;
}

.hero-image img {
  max-width: 100%;
  border-radius: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  .cph-hero {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 26px;
  }

  .hero-content {
    padding: 0;
  }
}
.cph-header {
  background-color: #f2fcff;
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

/*.logo-wrapper img {
  height: 40px;
  width: auto;
}
*/
.brand-name {
  font-size: 22px;
  font-weight: 700;
  font-family: 'Arial', sans-serif;
  color: #003349;
}
.services-flow {
  background: #fff;
  padding: 50px 30px;
  font-family: 'Arial', sans-serif;
}

.services-flow .section-title {
  text-align: center;
  font-size: 36px;
  font-family: 'Canaro', sans-serif;
  margin-bottom: 10px;
  color: #00263a;
}

.services-flow .section-subtitle {
  text-align: center;
  font-size: 16px;
  color: #666;
  margin-bottom: 60px;
}

.service-flow-item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 60px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.service-flow-item.reverse {
  flex-direction: row-reverse;
  text-align: right;
}

.flow-icon {
  background: #00bfff;
  color: #fff;
  font-size: 30px;
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(0,191,255,0.2);
}

.flow-text h3 {
  font-size: 22px;
  font-family: 'Canaro', sans-serif;
  color: #00324e;
  margin-bottom: 8px;
}

.flow-text p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .service-flow-item,
  .service-flow-item.reverse {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .flow-text {
    text-align: center;
  }
}
.tv-comparison {
  background: #ffffff;
  padding: 100px 30px;
  font-family: 'Arial', sans-serif;
  text-align: center;
}

.compare-heading h2 {
  font-size: 38px;
  font-family: 'Canaro', sans-serif;
  color: #003144;
  margin-bottom: 10px;
}

.compare-heading p {
  font-size: 16px;
  color: #555;
  max-width: 700px;
  margin: 0 auto 60px;
}

.compare-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.compare-box {
  flex: 1;
  min-width: 280px;
  max-width: 400px;
  background: #f6fbff;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  text-align: left;
  transition: transform 0.3s ease;
}

.compare-box:hover {
  transform: translateY(-10px);
}

.compare-box h3 {
  font-size: 24px;
  color: #003144;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.compare-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 15px;
  color: #333;
  line-height: 1.7;
}

.compare-box li {
  margin-bottom: 12px;
}

/* Specific colors for sides */
.compare-box.cable {
  border-left: 6px solid #0075ff;
}

.compare-box.satellite {
  border-left: 6px solid #ff7a00;
}

/* Responsive */
@media (max-width: 768px) {
  .compare-columns {
    flex-direction: column;
  }

  .compare-box {
    text-align: center;
  }

  .compare-box h3 {
    justify-content: center;
  }
}

.cta-section {
  background-color: #000;
  color: #fff;
  padding: 80px 30px;
  text-align: center;
  font-family: 'Arial', sans-serif;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: 32px;
  font-family: 'Canaro', sans-serif;
  margin-bottom: 20px;
  color: #fff;
}

.cta-section p {
  font-size: 16px;
  line-height: 1.6;
  color: #ddd;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  background-color: #00bfff;
  color: #000;
  font-weight: bold;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 16px;
  transition: background 0.3s;
}

.cta-button:hover {
  background-color: #00a6d6;
}


.installation-process {
  background: #fff;
  padding: 100px 30px;
  font-family: 'Arial', sans-serif;
  text-align: center;
}

.installation-process .section-title {
  font-size: 36px;
  font-family: 'Canaro', sans-serif;
  margin-bottom: 10px;
  color: #002944;
}

.installation-process .section-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 60px;
}

.steps-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.step-item {
  background: #fff;
  padding: 40px 25px;
  border-radius: 16px;
  width: 300px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  position: relative;
  transition: transform 0.3s ease;
}

.step-item:hover {
  transform: translateY(-10px);
}

.step-number {
  width: 50px;
  height: 50px;
  background: #00bfff;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  border-radius: 50%;
  line-height: 50px;
  margin: 0 auto 20px;
}

.step-item h3 {
  font-size: 20px;
  font-family: 'Canaro', sans-serif;
  color: #002944;
  margin-bottom: 12px;
}

.step-item p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

.advantages-section {
  background: #f6fbff;
  padding: 100px 30px;
  font-family: 'Arial', sans-serif;
  text-align: center;
}

.advantages-section .section-title {
  font-size: 36px;
  font-family: 'Canaro', sans-serif;
  color: #003144;
  margin-bottom: 30px;
}

.advantages-text {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  max-width: 900px;
  margin: 0 auto 40px;
}

.call-now-btn {
  display: inline-block;
  background-color: #00bfff;
  color: #000;
  font-weight: bold;
  font-size: 16px;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.call-now-btn:hover {
  background-color: #0099cc;
}
.site-footer {
  background: #f0f0f0;
  padding: 40px 20px 100px; /* Extra bottom padding for fixed bar */
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #333;
}

.footer-container {
  max-width: 1000px;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 20px;
}

.footer-links a {
  color: #0073aa;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.disclaimer {
  text-align: center;
  color: #555;
  font-size: 13px;
  line-height: 1.6;
  padding: 0 10px;
}

/* Fixed Call Now Bar */
.fixed-call-now {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #00bfff;
  color: #000;
  font-weight: bold;
  text-align: center;
  font-size: 16px;
  padding: 16px 0;
  text-decoration: none;
  z-index: 999;
  transition: background 0.3s ease;
}

.fixed-call-now:hover {
  background: #0099cc;
}

.faq-section {
  background: #000;
  color: #fff;
  padding: 100px 30px;
  font-family: Arial, sans-serif;
}

.faq-title {
  font-size: 36px;
  font-family: 'Canaro', sans-serif;
  text-align: center;
  margin-bottom: 60px;
  color: #00bfff;
}

.faq-item {
  max-width: 800px;
  margin: 0 auto 20px;
  border-bottom: 1px solid #333;
}

.faq-item input[type="checkbox"] {
  display: none;
}

.faq-item label {
  display: block;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  padding: 20px;
  transition: 0.3s;
}

.faq-item label:hover {
  color: #00bfff;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  font-size: 15px;
  color: #ccc;
  padding: 0 20px;
  line-height: 1.6;
  transition: max-height 0.3s ease;
}

.faq-item input:checked ~ .faq-content {
  max-height: 300px;
  padding-bottom: 20px;
}

.about-section {
  background-color: #f8f9fa;
  padding: 60px 20px;
  color: #101820;
}

.about-section .section-title {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}

.about-intro {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.about-content {
  max-width: 900px;
  margin: 0 auto 40px;
  line-height: 1.8;
  font-size: 16px;
}

.about-content p {
  margin-bottom: 20px;
}

.about-section .cta-button {
  display: inline-block;
  background-color: #00bfff;
  color: #fff;
  padding: 12px 24px;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
}

.about-section .cta-button:hover {
  background-color: #009acd;
}
.about-button-wrapper {
  text-align: center;
  margin-top: 20px;
}
.contact-section {
  background-color: #f1f1f1;
  padding: 60px 20px;
  color: #101820;
}

.contact-section .section-title {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}

.contact-section .section-subtitle {
  text-align: center;
  font-size: 18px;
  margin-bottom: 40px;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  justify-content: space-between;
}

.contact-info {
  flex: 1 1 300px;
  font-size: 16px;
}

.contact-info h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.contact-info p {
  margin: 10px 0;
}

.contact-info i {
  color: #00bfff;
  margin-right: 10px;
}

.contact-form {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
}

.contact-form button.cta-button {
  align-self: flex-start;
  background-color: #00bfff;
  color: #fff;
  font-weight: 600;
  padding: 12px 24px;
  border: none;
  border-radius: 5px;
  transition: background 0.3s;
  cursor: pointer;
}

.contact-form button.cta-button:hover {
  background-color: #009acd;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }

  .contact-form button.cta-button {
    align-self: center;
  }
}
