/* Additional page-specific styles */

/* Page Hero Section */
.page-hero {
  margin-top: 70px;
  min-height: 300px;
  background: var(--bg-gradient);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-light);
  padding: 60px 20px;
  position: relative;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 10px;
  font-weight: 700;
}

.page-hero p {
  font-size: 1.2rem;
  opacity: 0.95;
}

.mission-hero {
  min-height: 350px;
}

.mission-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(6, 214, 160, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

/* Page Content */
.page-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.content-section {
  margin-bottom: 60px;
}

.content-section.alt {
  background: var(--bg-light);
  padding: 40px;
  border-radius: 16px;
  margin-bottom: 60px;
}

.section-title-alt {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--primary-dark);
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.content-grid.reversed {
  direction: rtl;
}

.content-grid.reversed > * {
  direction: ltr;
}

.content-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--primary-dark);
}

.content-text p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 15px;
}

.content-visual img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 43, 91, 0.15);
}

.values-list {
  list-style: none;
}

.values-list li {
  margin-bottom: 15px;
  padding: 12px;
  background: white;
  border-left: 4px solid var(--primary-gold);
  border-radius: 4px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.trust-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 43, 91, 0.08);
  transition: all 0.3s ease;
}

.trust-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 43, 91, 0.15);
}

.trust-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-gold);
  margin-bottom: 10px;
}

.trust-card p {
  color: var(--text-dark);
  font-weight: 500;
}

/* Mission Section */
.mission-statement {
  background: white;
  padding: 40px;
  border-radius: 12px;
  border-left: 6px solid var(--primary-gold);
  box-shadow: 0 4px 15px rgba(0, 43, 91, 0.08);
  text-align: center;
}

.mission-statement h2 {
  font-size: 2rem;
  color: var(--primary-dark);
  margin-bottom: 20px;
}

.highlight-text {
  font-size: 1.2rem;
  color: #333;
  line-height: 1.8;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.pillar-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 43, 91, 0.08);
  border-top: 4px solid var(--primary-gold);
  transition: all 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 43, 91, 0.15);
}

.pillar-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-gold);
  margin-bottom: 10px;
}

.pillar-card h3 {
  font-size: 1.3rem;
  color: var(--primary-dark);
  margin-bottom: 15px;
}

.pillar-card p {
  color: #666;
  line-height: 1.6;
}

.vision-box {
  background: linear-gradient(135deg, rgba(0, 43, 91, 0.05), rgba(241, 196, 15, 0.05));
  padding: 40px;
  border-radius: 12px;
  border: 2px solid rgba(241, 196, 15, 0.3);
  text-align: center;
  font-size: 1.1rem;
  color: #333;
  line-height: 1.8;
}

/* Coverage Styles */
.coverage-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: start;
}

.coverage-map {
  position: relative;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 43, 91, 0.12);
}

.coverage-map img {
  width: 100%;
  border-radius: 8px;
}

.map-legend {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.legend-color {
  width: 20px;
  height: 20px;
  border-radius: 4px;
}

.legend-color.lte {
  background: #06d6a0;
}

.legend-color.five-g {
  background: #ffd166;
}

.legend-color.fiber {
  background: #002b5b;
}

.coverage-stats h3 {
  font-size: 1.3rem;
  color: var(--primary-dark);
  margin-bottom: 25px;
}

.stat-item {
  margin-bottom: 20px;
}

.stat-label {
  display: block;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.stat-bar {
  width: 100%;
  height: 10px;
  background: #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 8px;
}

.stat-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-gold), var(--accent-mint));
  border-radius: 10px;
  transition: width 1s ease;
}

.stat-value {
  text-align: right;
  font-weight: 700;
  color: var(--primary-gold);
  font-size: 0.9rem;
}

/* Networks Styles */
.networks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.network-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 43, 91, 0.08);
  border-top: 4px solid var(--primary-gold);
  transition: all 0.3s ease;
}

.network-card.featured {
  border-top-color: var(--accent-mint);
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(6, 214, 160, 0.2);
}

.network-card:hover {
  transform: translateY(-5px);
}

.network-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.network-card h3 {
  font-size: 1.3rem;
  color: var(--primary-dark);
  margin-bottom: 15px;
}

.network-specs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #e0e0e0;
}

.spec {
  font-size: 0.9rem;
  color: var(--primary-gold);
  font-weight: 600;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.capability-box {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 43, 91, 0.08);
}

.capability-box h3 {
  color: var(--primary-dark);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.capability-box p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

.tech-stack {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 43, 91, 0.08);
  text-align: center;
}

.tech-stack h2 {
  color: var(--primary-dark);
  margin-bottom: 25px;
}

.tech-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
}

.tech-item {
  background: var(--bg-light);
  padding: 15px;
  border-radius: 8px;
  border-left: 3px solid var(--primary-gold);
  font-weight: 600;
  color: var(--primary-dark);
}

/* FAQ Styles */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 43, 91, 0.08);
}

.faq-question {
  width: 100%;
  padding: 20px;
  background: white;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-dark);
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary-gold);
}

.faq-question:hover {
  background: var(--bg-light);
}

.faq-toggle {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-question.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0;
  background: var(--bg-light);
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question.active + .faq-answer {
  padding: 20px;
  max-height: 500px;
}

.faq-answer p {
  color: #666;
  line-height: 1.7;
}

/* Contact Styles */
.contact-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.contact-form-wrapper h2,
.contact-info h2 {
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin-bottom: 25px;
}

.contact-form {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 43, 91, 0.08);
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--primary-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-gold);
}

.contact-info {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 43, 91, 0.08);
}

.info-item {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
}

.info-item:last-child {
  border-bottom: none;
}

.info-item h3 {
  color: var(--primary-gold);
  font-size: 1rem;
  margin-bottom: 8px;
}

.info-item p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

.info-item a {
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.info-item a:hover {
  color: var(--primary-gold);
}

.office-map {
  margin-top: 40px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 43, 91, 0.12);
}

.office-map img {
  width: 100%;
  display: block;
}

/* Policy Styles */
.policy-content {
  max-width: 800px;
  margin: 0 auto;
}

.policy-content h2 {
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin-top: 30px;
  margin-bottom: 15px;
}

.policy-content p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 15px;
}

.cookie-type-box {
  background: white;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(0, 43, 91, 0.08);
  border-left: 4px solid var(--primary-gold);
}

.cookie-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.cookie-type-box h3 {
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.cookie-type-box p {
  margin-bottom: 0;
}

.policy-list {
  list-style: none;
  padding: 20px;
  background: var(--bg-light);
  border-radius: 8px;
  margin-bottom: 20px;
}

.policy-list li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  color: #666;
}

.policy-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-mint);
  font-weight: 700;
}

.policy-content a {
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.policy-content a:hover {
  color: var(--primary-gold);
}

/* Responsive Design */
@media (max-width: 768px) {
  .content-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .page-hero h1 {
    font-size: 1.8rem;
  }

  .coverage-container {
    grid-template-columns: 1fr;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }

  .networks-grid .network-card.featured {
    transform: scale(1);
  }

  .section-title-alt {
    font-size: 1.5rem;
  }

  .faq-question {
    padding: 15px;
    font-size: 0.95rem;
  }
}
