/* ========================================
   AK Advertising - Styles
   ======================================== */

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #ffffff;
  color: #333;
  line-height: 1.6;
}

/* ========================================
   Header & Navigation
   ======================================== */

header {
  background-color: #1b7a3d;
  color: white;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(27, 122, 61, 0.1);
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

nav .logo {
  font-size: 24px;
  font-weight: bold;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
  padding: 8px;
}

nav a:hover {
  color: #a8d5ba;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle.active ~ ul {
  display: flex !important;
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
  background: linear-gradient(135deg, #1b7a3d 0%, #2d9d5c 100%);
  color: white;
  text-align: center;
  padding: 80px 40px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
  opacity: 0.95;
}

/* ========================================
   Buttons
   ======================================== */

.cta-button {
  background-color: white;
  color: #1b7a3d;
  padding: 15px 40px;
  font-size: 18px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.cta-button:hover {
  background-color: #a8d5ba;
  color: #1b7a3d;
}

/* ========================================
   Container & Sections
   ======================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: 60px 0;
}

.section h2 {
  font-size: 36px;
  color: #1b7a3d;
  margin-bottom: 40px;
  text-align: center;
}

/* ========================================
   Stats Grid
   ======================================== */

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.stat-box {
  background-color: #f0f7f3;
  border-left: 5px solid #1b7a3d;
  padding: 30px;
  text-align: center;
  border-radius: 5px;
  transition: transform 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
}

.stat-box .number {
  font-size: 42px;
  color: #1b7a3d;
  font-weight: bold;
  margin-bottom: 10px;
}

.stat-box .label {
  font-size: 18px;
  color: #333;
  font-weight: 600;
}

/* ========================================
   Features Grid
   ======================================== */

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.feature-box {
  background-color: #ffffff;
  border: 2px solid #a8d5ba;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-box:hover {
  border-color: #1b7a3d;
  box-shadow: 0 5px 15px rgba(27, 122, 61, 0.1);
}

.feature-box h3 {
  color: #1b7a3d;
  font-size: 22px;
  margin-bottom: 15px;
}

.feature-box p {
  color: #666;
  line-height: 1.6;
  font-size: 15px;
}

/* ========================================
   Service Highlight
   ======================================== */

.service-highlight {
  background-color: #f0f7f3;
  border-radius: 8px;
  padding: 40px;
  margin: 30px 0;
  border-left: 5px solid #1b7a3d;
}

.service-highlight h3 {
  color: #1b7a3d;
  font-size: 26px;
  margin-bottom: 15px;
}

.service-highlight p {
  color: #333;
  font-size: 16px;
  line-height: 1.8;
}

/* ========================================
   Footer
   ======================================== */

footer {
  background-color: #1b7a3d;
  color: white;
  text-align: center;
  padding: 40px 0;
  margin-top: 60px;
}

footer p {
  margin: 10px 0;
}

/* ========================================
   Utilities
   ======================================== */

.green-highlight {
  color: #1b7a3d;
  font-weight: bold;
}

/* ========================================
   Responsive Design
   ======================================== */

/* Tablets and smaller desktops */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav ul {
    display: none !important;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    flex-direction: column;
    background-color: #1b7a3d;
    padding: 20px 0;
    gap: 0;
    border-bottom: 2px solid #a8d5ba;
  }

  nav ul li {
    width: 100%;
    text-align: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  nav ul li:last-child {
    border-bottom: none;
  }

  nav a {
    font-size: 16px;
    display: block;
  }

  nav {
    padding: 0 15px;
  }

  .hero {
    padding: 50px 20px;
  }

  .hero h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  .hero p {
    font-size: 16px;
  }

  .container {
    padding: 0 15px;
  }

  .section {
    padding: 40px 0;
  }

  .section h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .stats {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
  }

  .stat-box {
    padding: 20px;
  }

  .stat-box .number {
    font-size: 32px;
  }

  .stat-box .label {
    font-size: 14px;
  }

  .features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-box {
    padding: 20px;
  }

  .feature-box h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .feature-box p {
    font-size: 14px;
  }

  .service-highlight {
    padding: 25px;
    margin: 20px 0;
  }

  .service-highlight h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .service-highlight p {
    font-size: 14px;
  }

  .cta-button {
    padding: 12px 30px;
    font-size: 16px;
    width: 100%;
    max-width: 300px;
  }

  footer {
    padding: 30px 15px;
    font-size: 14px;
  }

  footer p {
    margin: 8px 0;
  }
}

/* Mobile phones */
@media (max-width: 480px) {
  nav .logo {
    font-size: 18px;
  }

  .hero h1 {
    font-size: 22px;
  }

  .hero p {
    font-size: 14px;
  }

  .section h2 {
    font-size: 22px;
  }

  .stat-box .number {
    font-size: 28px;
  }

  .stat-box .label {
    font-size: 12px;
  }

  .feature-box h3 {
    font-size: 16px;
  }

  .feature-box p {
    font-size: 13px;
  }

  .service-highlight h3 {
    font-size: 18px;
  }

  .service-highlight p {
    font-size: 13px;
  }

  body {
    font-size: 14px;
  }
}
