/* Oman Coverage Website - Minimal Map Design */

:root {
  --white: #ffffff;
  --light-grey: #f5f5f5;
  --grey: #e0e0e0;
  --text-dark: #333333;
  --text-light: #666666;
  --green: #4CAF50;
  --green-light: #81C784;
  --green-dark: #388E3C;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header & Navigation */
header {
  background-color: var(--white);
  border-bottom: 2px solid var(--grey);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 30px;
  height: 30px;
  background-color: var(--green);
  border-radius: 50%;
  display: inline-block;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-light);
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--green);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--text-dark);
  transition: 0.3s;
}

/* Main Content */
main {
  flex: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 3rem 1rem;
  background: linear-gradient(135deg, var(--light-grey) 0%, var(--white) 100%);
  border-radius: 12px;
  margin-bottom: 3rem;
}

.hero h1 {
  font-size: 2.5rem;
  color: var(--green-dark);
  margin-bottom: 1rem;
}

.hero p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Map Placeholder */
.map-container {
  background-color: var(--light-grey);
  border: 2px solid var(--grey);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}

.map-placeholder {
  width: 100%;
  height: 350px;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.map-regions {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.region-dot {
  width: 12px;
  height: 12px;
  background-color: var(--green);
  border-radius: 50%;
  display: inline-block;
  margin-right: 0.5rem;
}

.region-label {
  font-size: 0.9rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: var(--white);
  border-radius: 20px;
  border: 1px solid var(--grey);
}

/* Content Sections */
.content-section {
  background-color: var(--white);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 1px solid var(--light-grey);
}

.content-section h2 {
  color: var(--green-dark);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--light-grey);
}

.content-section p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.content-section ul {
  list-style: none;
  padding-left: 0;
}

.content-section li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--text-light);
  line-height: 1.8;
}

.content-section li::before {
  content: "✓";
  color: var(--green);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Info Cards */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.info-card {
  background-color: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: 12px;
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.info-card h3 {
  color: var(--green-dark);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.info-card p {
  color: var(--text-light);
  line-height: 1.7;
}

/* FAQ Section */
.faq-item {
  background-color: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  padding: 1.25rem;
  background-color: var(--light-grey);
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--green);
}

.faq-answer {
  padding: 1.25rem;
  color: var(--text-light);
  line-height: 1.7;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question::after {
  content: "-";
}

/* Contact Form */
.contact-info {
  background-color: var(--light-grey);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2rem;
}

.contact-item {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--grey);
}

.contact-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-item h3 {
  color: var(--green-dark);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Disclaimer Banner */
.disclaimer-banner {
  background-color: var(--light-grey);
  border-left: 4px solid var(--green);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 8px;
}

.disclaimer-banner p {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.95rem;
}

.disclaimer-banner strong {
  color: var(--green-dark);
}

/* Footer */
footer {
  background-color: var(--light-grey);
  padding: 2rem;
  border-top: 2px solid var(--grey);
  margin-top: auto;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--green);
}

.copyright {
  color: var(--text-light);
  font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav-links {
    gap: 1rem;
    font-size: 0.9rem;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .nav-links {
    display: none;
  }
  
  .nav-links.active {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  main {
    padding: 1rem;
  }
  
  .info-grid {
    grid-template-columns: 1fr;
  }
  
  .map-container {
    min-height: 300px;
  }
  
  .map-placeholder {
    height: 250px;
  }
}

/* Print Styles */
@media print {
  header, footer {
    display: none;
  }
  
  .map-container {
    page-break-inside: avoid;
  }
  
  .info-card {
    page-break-inside: avoid;
  }
}