/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #4CAF50;
  --secondary-color: #2E7D32;
  --accent-color: #81C784;
  --text-color: #2C3E50;
  --light-gray: #f5f5f5;
  --white: #ffffff;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

body {
  font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-gray);
}

/* Header and Navigation */
.header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo i {
  color: var(--secondary-color);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links li a {
  color: var(--text-color);
  text-decoration: none;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
  font-weight: 500;
  position: relative;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-links li a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #2c3e50;
  margin: 2px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 0 1rem;
}

.hero-content {
  max-width: 800px;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: var(--primary-color);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--shadow);
}

.cta-button:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
}

/* Articles Section */
.articles {
  padding: 8rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.section-header p {
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.article-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.article-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.article-content {
  padding: 2rem;
}

.article-category {
  color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.article-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.4;
  color: var(--text-color);
}

.article-content p {
  color: #666;
  margin-bottom: 1.5rem;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.read-more:hover {
  color: var(--secondary-color);
  gap: 0.8rem;
}

/* About Section */
.about {
  background-color: var(--white);
  padding: 8rem 5%;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-content p {
  font-size: 1.1rem;
  color: #666;
}

/* Contact Section */
.contact {
  padding: 8rem 5%;
  max-width: 700px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e1e1e1;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  outline: none;
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background-color: var(--secondary-color);
}

/* Footer */
.footer {
  background-color: var(--text-color);
  color: var(--white);
  padding: 5rem 5% 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-section {
  padding: 0 1rem;
}

.footer-section h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--accent-color);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-section a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-section a:hover {
  opacity: 1;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  font-size: 1.5rem;
}

.footer-bottom {
  text-align: center;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  opacity: 0.8;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .menu-toggle {
      display: flex;
  }

  .nav-links {
      display: none;
      width: 100%;
      position: absolute;
      top: 100%;
      left: 0;
      background: var(--white);
      padding: 1rem 0;
      box-shadow: var(--shadow);
  }

  .nav-links.active {
      display: flex;
      flex-direction: column;
      gap: 0;
  }

  .nav-links li {
      margin: 0;
      text-align: center;
  }

  .nav-links li a {
      display: block;
      padding: 1rem;
  }

  .hero-content h1 {
      font-size: 2.5rem;
  }

  .article-grid {
      grid-template-columns: 1fr;
  }

  .footer-content {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
  }

  .footer-section {
      padding: 0;
      text-align: left;
  }

  .footer-section:last-child {
      grid-column: 1 / -1;
      text-align: center;
      margin-top: 1rem;
  }

  .social-links {
      justify-content: center;
  }

  .footer-bottom {
      margin-top: 3rem;
  }
}

@media screen and (max-width: 480px) {
  .hero-content h1 {
      font-size: 2rem;
  }

  .section-header h2 {
      font-size: 2rem;
  }

  .footer-content {
      grid-template-columns: 1fr;
      gap: 2rem;
      text-align: center;
  }

  .footer-section {
      padding: 0;
      margin-bottom: 1rem;
  }

  .footer-section:not(:last-child) {
      border-bottom: 1px solid rgba(255,255,255,0.1);
      padding-bottom: 1.5rem;
  }

  .footer-section ul {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
  }

  .footer-section ul li {
      margin-bottom: 0.5rem;
      margin-right: 1rem;
  }

  .social-links {
      justify-content: center;
      margin-top: 1rem;
  }

  .social-links a {
      font-size: 1.8rem;
      margin: 0 0.8rem;
  }

  .footer-bottom {
      margin-top: 2rem;
      padding-top: 1.5rem;
  }
}

/* Services Section */
.services {
  padding: 80px 5%;
  background-color: #f8f9fa;
}

.services .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.service-category {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.service-category:hover {
  transform: translateY(-5px);
}

.category-header {
  text-align: center;
  margin-bottom: 30px;
}

.category-header i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.category-header h2 {
  font-size: 1.5rem;
  color: var(--text-color);
  margin-bottom: 10px;
}

.service-list {
  display: grid;
  gap: 20px;
}

.service-item {
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 20px;
}

.service-item h3 {
  font-size: 1.2rem;
  color: var(--text-color);
  margin-bottom: 10px;
}

.service-item p {
  color: #666;
  margin-bottom: 15px;
}

.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: #666;
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.service-features li::before {
  content: "✓";
  color: var(--primary-color);
  position: absolute;
  left: 0;
}

.book-service {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  text-decoration: none;
  margin-top: 15px;
  transition: background-color 0.3s ease;
}

.book-service:hover {
  background-color: var(--primary-dark);
}

/* Booking Information */
.booking-info {
  background: #fff;
  border-radius: 15px;
  padding: 40px;
  box-shadow: var(--shadow);
  margin: 0 auto;
  max-width: 1200px;
}

.booking-info h2 {
  text-align: center;
  margin-bottom: 30px;
  color: var(--text-color);
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.hours h3,
.locations h3,
.booking-policy h3 {
  color: var(--text-color);
  margin-bottom: 20px;
}

.hours-list {
  display: grid;
  gap: 10px;
}

.hour-item {
  display: flex;
  justify-content: space-between;
  color: #666;
}

.locations-list {
  display: grid;
  gap: 20px;
}

.location-item {
  padding: 15px;
  background: #f8f9fa;
  border-radius: 10px;
}

.location-item h4 {
  color: var(--text-color);
  margin-bottom: 10px;
}

.location-item p {
  color: #666;
  margin-bottom: 5px;
}

.cancellation-policy {
  color: #666;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .booking-grid {
      grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 480px) {
  .service-category {
      padding: 20px;
  }

  .booking-info {
      padding: 20px;
  }
} 