/* General Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: Arial, sans-serif; line-height: 1.6; color: #333; }
/* Navbar */
.cable-navbar {
  background: #0A1D37; /* deep navy */
  color: #fff;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo a {
  font-size: 26px;
  font-weight: bold;
  color: #00C6AE; /* teal */
  text-decoration: none;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  transition: 0.3s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -5px;
  background: #FF4C29; /* orange underline */
  transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-call {
  background: #00C6AE; /* teal button */
  color: #0A1D37;
  padding: 8px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.nav-call:hover {
  background: #FF4C29; /* orange on hover */
  color: #fff;
}

/* Mobile */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #fff;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #12294D;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    padding: 20px;
  }

  .nav-links a {
    padding: 10px 0;
    font-size: 18px;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .nav-call {
    display: none; /* hide in header for mobile */
  }
}
/* Cable Hero Section - Updated Colors */
.cable-hero {
  background: linear-gradient(135deg, #0d47a1, #00bcd4); /* Deep blue to cyan */
  color: #fff;
  padding: 100px 20px;
}

.cable-hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.hero-text {
  max-width: 600px;
}

.hero-text h1 {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-text p {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.5;
}

.hero-cta {
  display: inline-block;
  padding: 15px 30px;
  background: #ffeb3b; /* Yellow button for contrast */
  color: #0d47a1;
  font-weight: 600;
  font-size: 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.hero-cta:hover {
  background: #fff176;
  color: #002171;
}

.hero-image img {
  max-width: 400px;
  width: 100%;
}

/* Responsive */
@media(max-width: 768px) {
  .cable-hero .container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
    margin-top: 30px;
  }

  .hero-image img {
    max-width: 250px;
  }
}
/* Unique Features Section */
.unique-features {
  background: #ffffff; /* White background */
  color: #222;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.unique-features h2 {
  font-size: 2.8em;
  margin-bottom: 10px;
}

.unique-features .section-subtitle {
  font-size: 1.2em;
  color: #555;
  margin-bottom: 60px;
}

.feature-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  flex-wrap: wrap;
}

.feature-left, .feature-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.feature-center {
  flex: 0 0 200px;
  position: relative;
  z-index: 10;
}

.feature-circle {
  width: 200px;
  height: 200px;
  background: #0688bd; /* Yellow accent */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  font-size: 50px;
  color: #222;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transform: rotate(-15deg);
}

.feature-item {
  background: #f7f7f7; /* Light gray card */
  padding: 25px 20px;
  border-radius: 15px;
  position: relative;
  text-align: left;
  transition: transform 0.3s, background 0.3s;
}

.feature-item:hover {
  transform: translateY(-10px);
  background: #e0e0e0;
}

.feature-icon {
  font-size: 40px;
  color: #0688bd; /* blue icon */
  margin-bottom: 15px;
}

.feature-item h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.feature-item p {
  font-size: 1em;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .feature-wrapper {
    flex-direction: column;
    gap: 50px;
  }

  .feature-left, .feature-right {
    align-items: center;
    text-align: center;
  }

  .feature-item {
    text-align: center;
  }
}
/* Why Choose Us Section */
.why-choose-us {
  background: #e0e0e0; /* White background */
  color: #222;
  padding: 50px 20px;
  text-align: center;
}

.why-choose-us h2 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.why-choose-us .section-subtitle {
  font-size: 1.2em;
  color: #555;
  margin-bottom: 60px;
}

.choose-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 50px;
}

.choose-card {
  background: #f7f7f7;
  padding: 30px 20px;
  border-radius: 15px;
  width: 250px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.choose-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

.choose-card i {
  font-size: 40px;
  color: #ff6b6b; /* Accent color */
  margin-bottom: 15px;
}

.choose-card h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.choose-card p {
  font-size: 1em;
  color: #555;
  line-height: 1.6;
}

/* Contact Now Button */
.btn-contact-now {
  display: inline-block;
  padding: 15px 35px;
  font-size: 16px;
  background: #ff6b6b; /* Accent color */
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.btn-contact-now:hover {
  background: #e05555;
}

/* Responsive */
@media (max-width: 992px) {
  .choose-cards {
    flex-direction: column;
    align-items: center;
  }
}
/* Cable Journey Section */
.cable-journey {
  background: #ffffff;
  padding: 100px 20px;
  text-align: center;
  position: relative;
}

.cable-journey h2 {
  font-size: 2.5em;
  margin-bottom: 15px;
  color: #222;
}

.journey-intro {
  font-size: 1.2em;
  color: #555;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.journey-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
  text-align: left;
}

.step-icon {
  flex-shrink: 0;
  font-size: 36px;
  color: #4caf50;
  margin-top: 5px;
}

.step-text h3 {
  font-size: 1.5em;
  color: #222;
  margin-bottom: 10px;
}

.step-text p {
  font-size: 1.1em;
  color: #555;
  line-height: 1.6;
}

.btn-contact-now {
  display: inline-block;
  padding: 15px 40px;
  font-size: 16px;
  background: #00bcd4;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
  margin-top: 30px;
}

.btn-contact-now:hover {
  background: #0097a7;
}

/* Responsive */
@media (max-width: 768px) {
  .journey-step {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .step-icon {
    margin-bottom: 15px;
  }
}
/* CTA Offer Section */
.cta-offer {
  position: relative;
  background: url('../images/logo/paralex.webp') no-repeat center center / cover;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
  background-attachment: fixed; /* Parallax effect */
}

.cta-offer .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6); /* dark overlay */
  z-index: 1;
}

.cta-offer .cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 20px;
}

.cta-offer h2 {
  font-size: 2.5em;
  margin-bottom: 15px;
  font-weight: 700;
}

.cta-offer p {
  font-size: 1.2em;
  margin-bottom: 25px;
}

.btn-cta {
  display: inline-block;
  padding: 15px 35px;
  font-size: 18px;
  background: #ff6b6b;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s;
}

.btn-cta:hover {
  background: #ff3b3b;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-offer {
    height: 450px;
  }
  .cta-offer h2 {
    font-size: 2em;
  }
  .cta-offer p {
    font-size: 1em;
  }
}
/* FAQ Section */
.faq-section {
  background: #e0e0e0;
  padding: 60px 20px;
  text-align: center;
}

.faq-section h2 {
  font-size: 2.2em;
  margin-bottom: 10px;
  color: #222;
}

.faq-subtitle {
  font-size: 1em;
  color: #555;
  margin-bottom: 40px;
}

.faq-list details {
  background: #fff;
  border-radius: 8px;
  padding: 20px 25px;
  margin-bottom: 15px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  cursor: pointer;
  transition: box-shadow 0.3s, transform 0.3s;
}

.faq-list details[open] {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.faq-list summary {
  font-weight: 600;
  font-size: 1.1em;
  outline: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list details p {
  margin-top: 10px;
  font-size: 0.95em;
  color: #555;
  line-height: 1.6;
  text-align: left;
}

.faq-list details a {
  color: #ff6b6b;
  text-decoration: none;
}

.faq-list details a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-list details {
    padding: 15px 20px;
  }
}
/* Affiliate Disclaimer Section */
.affiliate-disclaimer {
  background: #ffffff;
  padding: 60px 20px;
  text-align: center;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.affiliate-disclaimer h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #222;
}

.affiliate-disclaimer p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  max-width: 800px;
  margin: auto;
  margin-bottom: 30px;
}

.btn-contact {
  display: inline-block;
  padding: 12px 25px;
  font-size: 16px;
  background: #0052cc;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s;
}

.btn-contact:hover {
  background: #003f9e;
}

/* Responsive */
@media (max-width: 768px) {
  .affiliate-disclaimer {
    padding: 40px 15px;
  }

  .affiliate-disclaimer p {
    font-size: 0.95rem;
  }
}
/* Footer */
.site-footer {
  background: #111;
  color: #ddd;
  padding: 60px 20px 80px 20px; /* extra bottom space for call button */
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-links {
  margin-bottom: 20px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 15px;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ff6b6b;
}

.site-footer p {
  margin: 10px 0;
  font-size: 14px;
}

.footer-note {
  display: block;
  margin: 10px 0;
  font-size: 12px;
  color: #aaa;
  line-height: 1.5;
}

/* Full-width Call Now Button */
.call-now-full {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, #36d1dc, #5b86e5);
  color: #fff;
  text-align: center;
  padding: 15px 0;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  z-index: 999;
  transition: background 0.3s;
}

.call-now-full:hover {
  background: linear-gradient(90deg, #5b86e5, #36d1dc);
}

.call-now-full i {
  margin-right: 8px;
}
/* Contact Section */
.contact-section {
  background: #f8f8f8;
  padding: 80px 20px;
  text-align: center;
}

.contact-section h2 {
  font-size: 2.2em;
  color: #222;
  margin-bottom: 10px;
}

.contact-section p {
  font-size: 1em;
  color: #555;
  margin-bottom: 50px;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.contact-info, .contact-form {
  flex: 1 1 400px;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  text-align: left;
}

.contact-info h3 {
  font-size: 1.5em;
  color: #0052cc;
  margin-bottom: 20px;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.contact-info ul li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #555;
}

.contact-info a {
  text-decoration: none;
}

.btn-contact {
  display: inline-block;
  margin-top: 15px;
  background: linear-gradient(45deg, #36d1dc, #5b86e5);
  color: #fff;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.btn-contact:hover {
  background: linear-gradient(45deg, #5b86e5, #36d1dc);
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
}

.contact-form button {
  padding: 12px 20px;
  font-size: 16px;
  background: #0052cc;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #003f9e;
}

.contact-map iframe {
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
