/* Variables */
:root {
  --primary: #e94e1b;  
  --primary-dark: #c43c0e;
  --secondary: #1fb6ff;  /
  --secondary-dark: #0897e0;
  --accent: #7e22ce;  
  --dark: #2d3142;
  --light: #f9f7f7;
  --white: #ffffff;
  --gray: #6c757d;
  --success: #28a745;
  --transition: all 0.3s ease;
}

/* Base Styles */
body {
  font-family:  'Arial', sans-serif;
  color: var(--dark);
  overflow-x: hidden;
  background-color: var(--light);
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

.btn {
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.btn-primary:hover, .btn-primary:focus {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-secondary {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
}

.btn-secondary:hover, .btn-secondary:focus {
  background-color: var(--secondary-dark);
  border-color: var(--secondary-dark);
}

.btn-accent {
  background-color: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.btn-outline-accent {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-outline-accent:hover {
  background-color: var(--accent);
  color: var(--white);
}

/* Header */
.TelecomNavMainPortal {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 0.5rem 0;
}

.TelecomNavMainPortal .navbar-brand img {
  max-height: 40px;
}

.TelecomNavMainPortal .nav-link {
  color: var(--dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
}

.TelecomNavMainPortal .nav-link:hover {
  color: var(--primary);
}

/* Hero Section */
.HeroTechDisplay {
  background: linear-gradient(135deg, #f6f6f6 0%, #e9e9e9 100%);
  min-height: 60vh;
  display: flex;
  align-items: center;
}

/* Coverage Checker */
.CoverageVerificationArea {
  background-color: var(--white);
}

.coverage-checker-container {
  background-color: var(--light);
  max-width: 900px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Plan Cards */
.MobileServicePlansGrid {
  background-color: var(--white);
}

.plan-card {
  background-color: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  position: relative;
}

.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.plan-header {
  padding: 1.5rem;
  text-align: center;
  background-color: var(--light);
}

.plan-title {
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.plan-subtitle {
  color: var(--gray);
  margin-bottom: 0;
}

.plan-price {
  padding: 1.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.price-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
}

.price-period {
  color: var(--gray);
}

.plan-features {
  padding: 1.5rem;
}

.plan-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plan-features ul li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
}

.plan-features ul li i {
  color: var(--success);
  margin-right: 0.75rem;
}

.plan-action {
  padding: 0 1.5rem 1.5rem;
}

.plan-tag {
  position: absolute;
  top: 0;
  right: 1.5rem;
  background-color: var(--accent);
  color: var(--white);
  padding: 0.25rem 1rem;
  border-radius: 0 0 10px 10px;
  font-size: 0.75rem;
  font-weight: 600;
}

.plan-card.featured {
  border: 2px solid var(--accent);
  transform: scale(1.05);
}

.plan-card.featured:hover {
  transform: translateY(-5px) scale(1.05);
}

/* Benefits Section */
.ClientBenefitsShowcase {
  background-color: var(--light);
}

.benefit-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.benefit-title {
  font-weight: 700;
  margin-bottom: 1rem;
}

.benefit-text {
  color: var(--gray);
  margin-bottom: 0;
}

/* Technology Section */
.NetworkInfrastructureDisplay {
  background-color: var(--white);
}

.tech-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tech-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.tech-feature-icon {
  font-size: 1.5rem;
  color: var(--primary);
  background-color: rgba(233, 78, 27, 0.1);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tech-feature-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.tech-feature-content p {
  color: var(--gray);
  margin-bottom: 0;
}

/* Process Steps */
.ServiceProcessSteps {
  background-color: var(--light);
}

.process-step {
  position: relative;
  padding: 2rem;
}

.step-number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background-color: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.step-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.process-step h3 {
  font-weight: 700;
  margin-bottom: 1rem;
}

.process-step p {
  color: var(--gray);
}

/* Testimonials */
.ClientTestimonialsDisplay {
  background-color: var(--white);
}

.testimonial-card {
  background-color: var(--light);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
  font-style: italic;
  color: var(--dark);
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial-content:before {
  content: '\201C';
  font-size: 4rem;
  position: absolute;
  top: -2rem;
  left: -1rem;
  color: rgba(233, 78, 27, 0.2);
  font-family: serif;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.author-info h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0;
}

.author-info p {
  color: var(--gray);
  margin-bottom: 0;
  font-size: 0.875rem;
}

/* App Section */
.MobileAppShowcase {
  background-color: var(--light);
}

.app-mockup {
  max-width: 300px;
}

.app-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.app-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.app-feature i {
  color: var(--primary);
  font-size: 1.25rem;
}

/* Coverage Map */
.CoverageMapDisplay {
  background-color: var(--white);
}

.coverage-map-container {
  padding: 1rem;
  background-color: var(--light);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.coverage-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  color: var(--gray);
}

/* Call to Action */
.MainCallToActionPanel {
  background-color: var(--light);
}

.cta-container {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  max-width: 900px;
  margin: 0 auto;
}

/* Footer */
.MainFooterContent {
  background-color: var(--dark);
  color: var(--white);
}

.footer-title {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact li i {
  color: var(--primary);
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-icon:hover {
  background-color: var(--primary);
  color: var(--white);
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 2rem 0;
}

.copyright {
  color: rgba(255, 255, 255, 0.7);
}

.payment-methods {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

/* Cookie Notice */
.privacy-message-section {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  padding: 1rem 0;
  z-index: 9999;
}

.privacy-message {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.privacy-message p {
  color: var(--white);
  margin-bottom: 0;
}

.privacy-message a {
  color: var(--primary);
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
  .plan-card.featured {
    transform: scale(1);
  }
  
  .plan-card.featured:hover {
    transform: translateY(-5px);
  }
  
  .privacy-message {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .tech-feature {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .testimonial-author {
    flex-direction: column;
    text-align: center;
  }
  
  .author-avatar {
    margin: 0 auto;
  }
}