/* ==================================================
   LANDING PAGE CSS - COMPLETE CORRECTED FILE
   ================================================== */

/* ==================================================
   HERO SECTION
   ================================================== */
.hero-section {
  background: linear-gradient(135deg, #111 0%, #222 100%);
  color: white;
  text-align: center;
  padding: 100px 20px 80px;
}

.hero-section h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  font-weight: 800;
  color: #fff;
}

.hero-section h2 {
  font-size: 1.75rem;
  color: #e50914;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hero-section p {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #ccc;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.btn-primary,
.btn-secondary {
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #e50914;
  color: #fff;
  border: none;
}

.btn-primary:hover {
  background: #c40711;
}

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

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

/* ==================================================
   OUR BRANDS + WHO WE ARE SECTION
   ================================================== */
.our-brands-section {
  padding: 80px 0;
  background: white;
}

.our-brands-section .container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Main Layout - Side by Side */
.brands-content {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

/* Left Side - Who We Are (takes up 1/3) */
.who-we-are {
  flex: 1.2;
  padding-right: 60px;
}

.who-we-are h2 {
  font-size: 3rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
  white-space: nowrap;
}

.who-we-are p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #666;
  text-align: left;
}

/* Right Side - Brand Cards (takes up 2/3) */
.brand-cards {
  flex: 2;
  position: relative;
}

.brand-cards h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  white-space: nowrap;
}

/* Brand Cards Grid - 3 columns */
.brand-card-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  margin-top: 20px;
}

/* Horizontal Line connecting all brands */
.brand-card-grid::before {
  content: '';
  position: absolute;
  top: 25px;
  left: 150px;
  right: 150px;
  height: 2px;
  background: #e50914;
  z-index: 1;
}

/* Individual Brand Card */
.brand-card {
  flex: 1;
  position: relative;
  text-align: center;
}

/* Vertical Lines from horizontal line to labels */
.brand-card::before {
  content: '';
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 35px;
  background: #e50914;
  z-index: 2;
}

/* Brand Labels (Red rounded rectangles) */
.brand-label {
  background: #e50914;
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 25px;
  display: inline-block;
  position: relative;
  z-index: 3;
  line-height: 1.3;
  text-align: center;
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Vertical Lines from labels to boxes */
.brand-label::after {
  content: '';
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 25px;
  background: #e50914;
  z-index: 2;
}

/* Brand Boxes */
.brand-box {
  background: white;
  border: 2px solid #e50914;
  border-radius: 15px;
  padding: 25px 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  height: 450px;
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

/* Brand Icons */
.brand-icon {
  font-size: 3.5rem;
  color: #e50914;
  margin-bottom: 20px;
}

/* Brand Titles */
.brand-box h4 {
  font-size: 1.3rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 20px;
  line-height: 1.2;
}

/* Brand Descriptions */
.brand-box p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #666;
  text-align: center;
  margin: 0;
  flex-grow: 1;
  display: flex;
  align-items: center;
}

/* ==================================================
   STATS BANNER
   ================================================== */
.stats-banner {
  background-color: #e50914;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.stat-item {
  flex: 1 1 20%;
  min-width: 150px;
}

.stat-item h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.stat-item p {
  font-size: 1rem;
  line-height: 1.4;
  margin: 0;
}

/* ==================================================
   TRAFFIC TREE DISTRIBUTION PLATFORM
   ================================================== */
.distribution-platform {
  padding: 80px 0;
  background: #000;
  color: white;
}

.distribution-platform .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

/* Section Headers */
.platform-title {
  font-size: 3.5rem;
  font-weight: bold;
  color: white;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.platform-subtitle {
  font-size: 1.4rem;
  color: #ccc;
  margin-bottom: 60px;
  font-weight: 300;
  line-height: 1.4;
}

/* Platform Grid - 2 rows x 3 columns */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Platform Boxes */
.platform-box {
  background: #e8e8e8;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.platform-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

/* Platform Icons */
.platform-icon {
  width: 80px;
  height: 80px;
  background: #e50914;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 2.5rem;
  color: white;
}

/* Platform Titles */
.platform-box h3 {
  font-size: 1.4rem;
  font-weight: bold;
  color: #e50914;
  margin-bottom: 20px;
  line-height: 1.2;
}

/* Platform Descriptions */
.platform-box p {
  font-size: 1rem;
  line-height: 1.5;
  color: #666;
  margin: 0;
  text-align: center;
}

/* ==================================================
   COMPETITIVE ADVANTAGE
   ================================================== */
.competitive-advantage {
  background: #f5f5f5;
  padding: 80px 20px;
  text-align: center;
}

.advantage-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.advantage-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.advantage-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  border-left: 4px solid #e50914;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.advantage-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
}

.advantage-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
}

/* ==================================================
   PARTNERSHIP CTA SECTION
   ================================================== */
.cta-partnership {
  background-color: #000;
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.cta-heading {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 40px;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.cta-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  text-align: left;
}

.cta-left,
.cta-right {
  flex: 1 1 45%;
}

.cta-left .red {
  color: #e50914;
  font-weight: bold;
  margin-bottom: 20px;
}

.cta-buttons {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* ==================================================
   PRE-FOOTER LINKS
   ================================================== */
.pre-footer-links {
  background-color: #000;
  color: #fff;
  padding: 60px 20px;
  font-size: 0.95rem;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-col {
  flex: 1 1 200px;
  min-width: 180px;
}

.footer-title {
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 1rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 10px;
  color: #ddd;
  line-height: 1.4;
}

.footer-col p {
  color: #ddd;
  line-height: 1.5;
}

/* ==================================================
   PARTNERSHIP PAGE STYLES
   ================================================== */
.valued-partners-section {
  padding: 80px 0 60px 0;
  background: #f8f9fa;
}

.valued-partners-section .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.partners-header {
  text-align: center;
  margin-bottom: 60px;
}

.partners-header h1 {
  font-size: 3.5rem;
  font-weight: bold;
  color: #000;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Partners Grid */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.partner-card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  line-height: 1.3;
}

.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* ==================================================
   WHY CHOOSE US PAGE STYLES
   ================================================== */
.why-choose-us-hero-section {
  padding: 80px 0;
  background: #000;
  color: white;
  min-height: 100vh;
}

.why-choose-us-hero-section .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

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

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

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

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

/* Hero Content Layout */
.hero-content {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.features-section {
  flex: 2;
}

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

/* Feature Items */
.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;
}

/* Contact Form Styling */
.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;
}

/* ==================================================
   SOLUTIONS PAGE STYLES
   ================================================== */
.solutions-hero-section {
  padding: 80px 0;
  background: #000;
  color: white;
}

.solutions-hero-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.solutions-header {
  text-align: center;
}

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

.solutions-header h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 4px;
  background: #e50914;
}

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

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

/* Solutions Features Section */
.solutions-features-section {
  padding: 80px 0;
  background: #000;
  color: white;
}

.solutions-features-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.features-header {
  text-align: center;
  margin-bottom: 60px;
}

.features-header h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: white;
  margin: 0;
}

/* Solutions Grid */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  max-width: 1000px;
  margin: 0 auto;
}

.solution-feature {
  display: flex;
  align-items: flex-start;
  gap: 25px;
}

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

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

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

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

/* Large Screens */
@media (max-width: 1200px) {
  .hero-content {
    gap: 60px;
  }
  
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Medium Screens */
@media (max-width: 1024px) {
  .brands-content {
    flex-direction: column;
    gap: 60px;
  }
  
  .who-we-are {
    padding-right: 0;
  }
  
  .brand-card-grid {
    flex-direction: column;
    gap: 60px;
  }
  
  .brand-card-grid::before,
  .brand-card::before,
  .brand-label::after {
    display: none;
  }
  
  .platform-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 25px;
  }
  
  .platform-title {
    font-size: 2.8rem;
  }
  
  .platform-subtitle {
    font-size: 1.2rem;
  }
}

/* Tablet Screens */
@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;
  }
  
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* Mobile Screens */
@media (max-width: 768px) {
  .brands-content,
  .cta-columns,
  .footer-grid,
  .stats-grid {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-card,
  .stat-item,
  .cta-left,
  .cta-right {
    flex: 1 1 100%;
  }

  .cta-buttons,
  .form-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .feature-item,
  .solution-feature {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
  
  .hero-header h1,
  .solutions-header h1 {
    font-size: 2.5rem;
  }
  
  .hero-header h2,
  .solutions-header h2 {
    font-size: 1.5rem;
  }
  
  .platform-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 1fr);
    gap: 20px;
  }
  
  .platform-title {
    font-size: 2.5rem;
  }
  
  .platform-subtitle {
    font-size: 1.1rem;
    margin-bottom: 40px;
  }
  
  .platform-box {
    padding: 30px 25px;
    min-height: 250px;
  }
  
  .platform-icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }
  
  .platform-box h3 {
    font-size: 1.2rem;
  }
  
  .partners-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .partners-header h1 {
    font-size: 2.5rem;
  }
  
  .partner-card {
    padding: 25px 15px;
    min-height: 100px;
    font-size: 0.9rem;
  }
  
  .contact-form-container {
    padding: 30px 25px;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
}