/* MAIN.CSS - CORRECTED VERSION */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Helvetica Neue', sans-serif;
  background: #fff;
  color: #111;
  line-height: 1.6;
  font-size: 16px;
}

.container {
  width: 100%;
  max-width: 1200px; /* Changed from 90% to 100% to work with max-width */
  margin: 0 auto;
  padding: 0 20px; /* Added consistent padding */
}

/* ==================================================
   HEADER STYLES
   ================================================== */

.site-header {
  background: #1a1a1a;
  padding: 15px 0;
  border-bottom: 1px solid #333;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-logo {
  width: 35px;
  height: 35px;
}

.site-name {
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.main-nav .nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 40px;
}

.main-nav .nav-menu li {
  margin: 0;
}

.main-nav .nav-menu a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.main-nav .nav-menu a:hover {
  color: #e50914;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none !important;
}

/* ==================================================
   ABOUT PAGE STYLES
   ================================================== */

/* About Hero Section */
.about-hero {
  background: white; /* No !important needed */
  color: #333;      /* No !important needed */
  padding: 60px 0;
}

/* About Content Layout */
.about-content {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.about-content .about-left {
  flex: 2;
}

.about-content .about-right {
  flex: 1;
}

/* About Text Styling */
.about-hero h2 {
  color: #000;
  font-size: 2.5rem;
  font-weight: bold;
  text-decoration: underline;
  margin-bottom: 20px;
}

.about-hero h3 {
  color: #000;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.about-hero p {
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Mission Box (Red) */
.mission-box {
  background: #e50914;
  color: white;
  padding: 30px;
  border-radius: 15px;
}

.mission-box h3 {
  color: white !important; /* Important may be needed to override .about-hero h3 */
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
  text-decoration: none; /* Removed !important, likely not needed */
}

.mission-box p {
  color: white !important; /* Important may be needed to override .about-hero p */
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Networks Section */
.networks-section {
  background: #fff;
  color: #333;
  padding: 60px 0;
}

.networks-title {
  font-size: 2.2rem;
  font-weight: bold;
  color: #e50914;
  margin-bottom: 40px;
}

.enterprise-item {
  margin-bottom: 40px;
}

.enterprise-item:last-child {
  margin-bottom: 0;
}

.enterprise-name {
  font-size: 1.3rem;
  font-weight: bold;
  color: #e50914; /* Changed this line from #333 to red */
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.enterprise-name .bullet {
  color: #e50914;
  font-size: 1.5rem;
  margin-right: 8px;
  line-height: 1;
}

.enterprise-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin: 0 0 25px 0;
  max-width: 800px;
}

/* Strategy Section */
.strategy-section {
  background: #000;
  color: #fff;
  padding: 60px 0;
  border-radius: 20px;
  margin: 40px 0;
}

.strategy-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 30px;
  text-align: left;
}

.strategy-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.strategy-item {
  font-size: 1rem;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 16px;
  padding-left: 20px;
  position: relative;
}

.strategy-item:last-child {
  margin-bottom: 0;
}

.strategy-item::before {
  content: "•";
  color: #fff;
  font-size: 1.2rem;
  position: absolute;
  left: 0;
  top: 0;
}

.strategy-item strong {
  color: #fff;
  font-weight: bold;
}

/* ==================================================
   WHY CHOOSE US & SOLUTIONS PAGES STYLES
   ================================================== */

/* Common Page Styles */
.why-choose-us-hero-section,
.solutions-hero-section {
  background: #000;
  color: white;
  padding: 80px 0;
  min-height: 100vh;
}

/* Hero Headers */
.hero-header,
.solutions-header {
  text-align: center;
  margin-bottom: 80px;
}

.hero-header h1,
.solutions-header h1 {
  font-size: 4rem;
  font-weight: bold;
  color: white;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.solutions-header h1 {
  text-decoration: underline;
  text-decoration-color: #e50914;
  text-decoration-thickness: 4px;
  text-underline-offset: 15px;
}

.hero-header h2,
.solutions-header h2 {
  font-size: 2.2rem;
  font-weight: 600;
  color: white;
  margin-bottom: 30px;
  line-height: 1.3;
}

.hero-header p,
.solutions-header p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #ccc;
  max-width: 900px;
  margin: 0 auto;
}

/* Why Choose Us - Two Column Layout */
.hero-content {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  margin-bottom: 60px;
}

.features-section {
  flex: 2;
}

.contact-form-section {
  flex: 1;
}

/* Feature Items (Why Choose Us) */
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 50px;
}

.feature-item:last-child {
  margin-bottom: 0;
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: transparent;
  border: 2px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  flex-shrink: 0;
}

.feature-content h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  margin-bottom: 15px;
  line-height: 1.2;
}

.feature-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #ccc;
  margin: 0;
}

/* Solutions Features Section */
.solutions-features {
  margin-bottom: 60px;
}

.solutions-features h3 {
  font-size: 2.5rem;
  font-weight: bold;
  color: white;
  text-align: center;
  margin-bottom: 60px;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 80px;
  max-width: 1000px;
  margin: 0 auto;
}

.solution-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.solution-icon {
  width: 50px;
  height: 50px;
  background: transparent;
  border: 2px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  flex-shrink: 0;
}

.solution-content h4 {
  font-size: 1.3rem;
  font-weight: bold;
  color: white;
  margin-bottom: 10px;
  line-height: 1.2;
}

.solution-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #ccc;
  margin: 0;
}

/* Contact Form (Why Choose Us) */
.contact-form-container {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 40px 30px;
  backdrop-filter: blur(10px);
}

.contact-form-container h3 {
  font-size: 1.8rem;
  font-weight: bold;
  color: white;
  margin-bottom: 15px;
  text-align: center;
}

.contact-form-container > p {
  font-size: 1rem;
  color: #ccc;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.4;
}

.partnership-form .form-group {
  margin-bottom: 20px;
}

.partnership-form input,
.partnership-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1rem;
  backdrop-filter: blur(5px);
}

.partnership-form input::placeholder,
.partnership-form textarea::placeholder {
  color: #ccc;
}

.partnership-form input:focus,
.partnership-form textarea:focus {
  outline: none;
  border-color: #e50914;
  box-shadow: 0 0 0 2px rgba(229, 9, 20, 0.2);
}

.form-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 25px;
}

/* Button Styles */
.btn {
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  text-align: center;
  display: inline-block;
}

.btn-primary {
  background: #e50914;
  color: white;
}

.btn-primary:hover {
  background: #cc0811;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: #000;
}

/* Bottom CTA */
.bottom-cta {
  text-align: center;
  margin-top: 60px;
}

.bottom-cta p {
  font-size: 1.3rem;
  color: white;
  font-weight: 500;
}

/* ==================================================
   PARTNERSHIP CTA + CLEAN FOOTER
   ================================================== */

/* Partnership Section */
.partnership-section {
  background: #000;
  color: white;
  padding: 60px 0 40px 0;
}

/* Centered Top Message */
.partnership-intro {
  text-align: center;
  margin-bottom: 60px;
}

.partnership-intro p {
  font-size: 1.4rem;
  color: white;
  font-weight: 500;
  margin: 0;
}

/* Two Column Partnership Content */
.partnership-content {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.partnership-left {
  flex: 1;
}

.partnership-right {
  flex: 1;
}

.partnership-left h3,
.partnership-right h3 {
  color: #e50914;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 25px;
}

.partnership-left .contact-details p {
  color: white;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.partnership-left .contact-details p strong {
  color: white;
  font-weight: 600;
}

.partnership-right p {
  color: white;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Partnership Buttons */
.partnership-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Clean Footer */
.clean-footer {
  background: #000;
  color: white;
  padding: 20px 0 0 0;
  border-top: 1px solid #333;
}

/* Centered Company Description */
.footer-company-intro {
  text-align: center;
  margin-bottom: 40px;
}

.footer-company-intro h4 {
  color: #e50914;
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.footer-company-intro p {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  max-width: 600px;
  margin: 0 auto;
}

/* Footer Grid - 3 Columns */
.clean-footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 40px;
}

.clean-footer .footer-column h4 {
  color: #e50914;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 25px;
  text-align: center;
}

.clean-footer .footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.clean-footer .footer-column ul li {
  margin-bottom: 12px;
  color: #ccc;
  font-size: 1rem;
  line-height: 1.4;
}

.clean-footer .footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.clean-footer .footer-column ul li a:hover {
  color: white;
}

/* Copyright Section */
.clean-footer .footer-copyright {
  border-top: 1px solid #333;
  padding: 30px 0;
  text-align: center;
}

.clean-footer .footer-copyright p {
  color: #888;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0 0 8px 0;
}

.clean-footer .footer-copyright p:last-child {
  margin-bottom: 0;
}

/* ==================================================
   FOOTER FIXES - HIDE WHITE FOOTER
   ================================================== */
/*
   The problematic body rule has been removed from this section.
   The rules below are aggressive but are likely needed to hide
   a default theme footer that you don't want.
*/
.site-footer:not(.clean-footer) {
  display: none !important;
}

.clean-footer ~ * {
  display: none !important;
}

.footer-columns,
.footer-main,
.partnership-cta-section,
.site-info,
.footer-bottom,
.wp-site-footer:not(.clean-footer) {
  display: none !important;
}

.clean-footer {
  display: block !important;
}

/* ==================================================
   RESPONSIVE DESIGN
   ================================================== */

/* About Page Responsive */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .about-hero .container,
  .networks-section .container,
  .strategy-section .container {
    padding: 0 20px;
  }
  
  .about-hero h2 {
    font-size: 2rem;
  }
  
  .about-hero h3 {
    font-size: 1.5rem;
  }
}

/* Header Responsive */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 20px;
  }
  
  .main-nav .nav-menu {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* Why Choose Us & Solutions Responsive */
@media (max-width: 1200px) {
  .hero-content {
    gap: 60px;
  }
  
  .solutions-grid {
    gap: 40px 60px;
  }
}

@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    gap: 60px;
  }
  
  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-header h1,
  .solutions-header h1 {
    font-size: 3rem;
  }
  
  .hero-header h2,
  .solutions-header h2 {
    font-size: 1.8rem;
  }
  
  .partnership-content {
    flex-direction: column;
    gap: 50px;
  }
  
  .clean-footer .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .hero-header h1,
  .solutions-header h1 {
    font-size: 2.5rem;
  }
  
  .hero-header h2,
  .solutions-header h2 {
    font-size: 1.5rem;
  }
  
  .solutions-features h3 {
    font-size: 2rem;
  }
  
  .feature-item,
  .solution-item {
    gap: 20px;
  }
  
  .form-buttons,
  .partnership-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  .partnership-section {
    padding: 40px 0 30px 0;
  }
  
  .clean-footer .container {
    padding: 0 20px;
  }
  
  .partnership-intro p {
    font-size: 1.2rem;
  }
  
  .clean-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
/* Horizontal Legal Links in Footer */
.footer-legal-links-container {
    padding: 20px 0;
    margin-top: 30px;
    border-top: 1px solid #333; /* Adds the line above the copyright */
    text-align: center;
}

.footer-legal-nav ul {
    list-style: none;      /* Removes the bullet points */
    margin: 0;
    padding: 0;
    display: inline-flex;  /* Aligns links in a row with even spacing */
    justify-content: center;
    gap: 30px;             /* Controls the space between each link */
}

.footer-legal-nav ul li a {
    color: #e50914;         /* Makes the link text RED */
    text-decoration: none;   /* Removes the default underline */
    font-size: 14px;
    font-weight: 500;
}

.footer-legal-nav ul li a:hover {
    color: #fff;            /* Links turn white on hover for contrast */
}