/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.2rem;
  color: #003d80;
}

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  color: #555;
}

.pricing-note {
  text-align: center;
  margin-top: 30px;
  font-style: italic;
  color: #666;
}

/* Sticky Navigation Header */
header.nav-header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-logo img {
  max-height: 60px;
  width: auto;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #0056b3;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #0056b3, #003d80);
  color: #ffffff;
  text-align: center;
  padding: 100px 20px;
  position: relative;
}

.hero-logo {
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.hero .tagline {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: 600;
  color: #ffcc00;
}

.hero .sub-tagline {
  font-size: 1.2rem;
  margin-bottom: 30px;
  font-weight: 300;
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  background: #ffcc00;
  color: #000;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s;
  margin: 5px;
}

.cta-button:hover {
  background: #e6b800;
}

.cta-button.secondary {
  background: transparent;
  color: #ffcc00;
  border: 2px solid #ffcc00;
}

.cta-button.secondary:hover {
  background: #ffcc00;
  color: #000;
}

/* About Section */
.about {
  padding: 80px 0;
  background: #fff;
}

.about .lead {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  font-size: 1.1rem;
  color: #555;
}

.mission-vision {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.mv-card {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 8px;
  border-left: 5px solid #0056b3;
}

.mv-card h3 {
  margin-bottom: 15px;
  color: #0056b3;
}

.service-boundary {
  background: #fff3cd;
  border: 1px solid #ffc107;
  padding: 20px;
  border-radius: 8px;
  margin-top: 20px;
}

.service-boundary p {
  text-align: center;
  color: #856404;
  font-weight: 500;
}

/* Services Section */
.services {
  padding: 80px 0;
  background: #f9f9f9;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card h3 {
  margin-bottom: 15px;
  color: #0056b3;
  font-size: 1.2rem;
}

/* Pricing Section */
.pricing {
  padding: 80px 0;
  background: #fff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.pricing-card {
  background: white;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.pricing-card.featured {
  border: 2px solid #0056b3;
  background: #f9f9f9;
}

.pricing-card .badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #0056b3;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
}

.pricing-card h3 {
  margin-bottom: 15px;
  color: #003d80;
  font-size: 1.5rem;
}

.pricing-card .price {
  font-size: 2.2rem;
  font-weight: bold;
  color: #0056b3;
  margin-bottom: 20px;
}

.pricing-card .price span {
  font-size: 1rem;
  color: #666;
  font-weight: normal;
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 25px;
  text-align: left;
  padding-left: 10px;
}

.pricing-card ul li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.pricing-card ul li::before {
  content: "✓";
  color: #0056b3;
  font-weight: bold;
  margin-right: 10px;
}

/* Rules Section */
.rules {
  padding: 80px 0;
  background: #f9f9f9;
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.rule-card {
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.rule-card h3 {
  margin-bottom: 15px;
  color: #0056b3;
  font-size: 1.2rem;
}

.rule-card p {
  font-size: 0.95rem;
  color: #555;
}

/* Quote Calculator Section */
.quote-calc {
  padding: 80px 0;
  background: #003d80;
  color: white;
}

.quote-calc h2 {
  color: white;
}

.quote-calc .section-intro {
  color: #e0e0e0;
}

.quote-form {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ffcc00;
}

.estimated-cost {
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  margin: 20px 0;
  color: #333;
}

.estimated-cost strong {
  display: block;
  font-size: 1.5rem;
  color: #0056b3;
}

/* Contact Section - Enhanced Layout */
.contact {
  padding: 80px 0;
  background: #fff;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-details {
  background: #f9f9f9;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.contact-details h3 {
  color: #0056b3;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.contact-details p {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.contact-details strong {
  color: #003d80;
}

.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #0056b3;
}

.contact-form button {
  background: #0056b3;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 1.1rem;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
  width: 100%;
}

.contact-form button:hover {
  background: #003d80;
}

/* Footer */
footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 30px 0;
}

.footer-tagline {
  color: #ffcc00;
  font-weight: bold;
  margin-top: 10px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    padding: 20px;
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero .tagline {
    font-size: 1.2rem;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
}