/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #232F3E;
  background-color: #FFFFFF;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  background: #232F3E;
  padding: 1rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.nav-logo {
  display: flex;
  align-items: center;
}

.logo-text {
  font-size: 2rem;
  font-weight: 800;
  font-family: 'Inter', sans-serif;
  text-transform: lowercase;
  letter-spacing: -0.02em;
}

.logo-media {
  color: #FFFFFF;
}

.logo-farm {
  color: #FF9900;
  margin-left: 0.25rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #FF9900;
}

.nav-cta {
  background: #FF9900 !important;
  color: #232F3E !important;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 600;
}

.nav-cta:hover {
  background: #E47911 !important;
  color: #232F3E !important;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #232F3E 0%, #37475A 100%);
  color: #FFFFFF;
  padding: 120px 0 80px;
  margin-top: 90px;
  text-align: center;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #FFFFFF 0%, #FF9900 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #CCCCCC;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  background: #FF9900;
  color: #232F3E;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 153, 0, 0.3);
}

.btn-primary:hover {
  background: #E47911;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 153, 0, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #FFFFFF;
  padding: 1rem 2rem;
  border: 2px solid #FFFFFF;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #FFFFFF;
  color: #232F3E;
}

/* Services Section */
.services {
  padding: 80px 0;
  background: #F7F9FC;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #232F3E;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #FFFFFF;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 1px solid #E5E5E5;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.service-card.featured {
  border: 2px solid #FF9900;
  position: relative;
}

.service-card.featured::before {
  content: 'FEATURED';
  position: absolute;
  top: -10px;
  right: 20px;
  background: #FF9900;
  color: #FFFFFF;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #232F3E;
}

.service-card p {
  color: #666666;
  line-height: 1.6;
}

/* Additional Services */
.additional-services {
  padding: 80px 0;
  background: #FFFFFF;
}

.additional-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.additional-card {
  background: #F7F9FC;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #FF9900;
}

.additional-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #232F3E;
}

.additional-card p {
  color: #666666;
  font-size: 0.95rem;
}

/* About Section */
.about {
  padding: 80px 0;
  background: #232F3E;
  color: #FFFFFF;
}

.about-content {
  text-align: center;
}

.about h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
}

.about p {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  color: #CCCCCC;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA Section */
.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #FF9900 0%, #E47911 100%);
  color: #FFFFFF;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.btn-cta {
  background: #FFFFFF;
  color: #FF9900;
  padding: 1.25rem 2.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-cta:hover {
  background: #F0F0F0;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Contact Info Section */
.contact-info {
  padding: 60px 0;
  background: #F7F9FC;
  text-align: center;
}

.contact-content h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #232F3E;
}

.contact-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #666666;
}

.email-link {
  font-size: 1.25rem;
  font-weight: 600;
  color: #FF9900;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border: 2px solid #FF9900;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: inline-block;
}

.email-link:hover {
  background: #FF9900;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 153, 0, 0.3);
}

/* Footer */
.footer {
  background: #232F3E;
  color: #FFFFFF;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand h3 {
  color: #FF9900;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  color: #CCCCCC;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
}

.footer-column h4 {
  color: #FF9900;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-column a {
  display: block;
  color: #CCCCCC;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #FF9900;
}

.email-highlight {
  color: #FF9900;
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid #37475A;
  padding-top: 2rem;
  text-align: center;
  color: #CCCCCC;
}

/* Privacy Policy Page */
.privacy-page {
  padding: 120px 0 80px;
  margin-top: 90px;
  background: #FFFFFF;
}

.privacy-header {
  text-align: center;
  margin-bottom: 3rem;
}

.privacy-header h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #232F3E;
  margin-bottom: 1rem;
}

.privacy-header p {
  font-size: 1.1rem;
  color: #666666;
}

.privacy-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-section {
  margin-bottom: 2.5rem;
}

.privacy-section h2 {
  color: #232F3E;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  border-bottom: 2px solid #FF9900;
  padding-bottom: 0.5rem;
}

.privacy-section p {
  color: #666666;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.privacy-section ul {
  color: #666666;
  margin: 1rem 0 1rem 1.5rem;
}

.privacy-section li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.privacy-footer {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #E5E5E5;
}

.back-link {
  color: #FF9900;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: #E47911;
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar {
    padding: 1rem 0;
  }
  
  .nav-links {
    display: none;
  }
  
  .logo-text {
    font-size: 1.5rem;
  }
  
  .hero {
    margin-top: 90px;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .privacy-header h1 {
    font-size: 2.5rem;
  }
  
  .privacy-content {
    padding: 0 10px;
  }
  
  .privacy-page {
    margin-top: 80px;
  }
}
