/* ========================================
   VARIABLES & RESET
   ======================================== */
:root {
  --primary-green: #6b8f71;
  --dark-green: #4a6d4f;
  --sage-green: #a8c5b3;
  --light-sage: #c9e4d4;
  --warm-brown: #a67c52;
  --dark-brown: #8b6842;
  --dark-navy: #2c3e50;
  --light-bg: #f8faf9;
  --white: #ffffff;
  --text-dark: #2d3748;
  --text-light: #4a5568;
  --border-color: #e2e8f0;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

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

/* ========================================
   HEADER
   ======================================== */
.header {
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
}

.logo img {
  height: 60px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.02);
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s ease;
  position: relative;
}

.nav a:not(.cta-button):hover {
  color: var(--primary-green);
}

.nav a:not(.cta-button)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-green);
  transition: width 0.3s ease;
}

.nav a:not(.cta-button):hover::after {
  width: 100%;
}

.cta-button {
  background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
  color: var(--white) !important;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  background: linear-gradient(135deg, var(--sage-green) 0%, var(--light-sage) 100%);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 20px;
  line-height: 1.2;
  animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
  font-size: 22px;
  color: var(--text-light);
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-cta {
  display: inline-block;
  background: var(--warm-brown);
  color: var(--white);
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 18px;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease 0.4s both;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.hero-cta:hover {
  background: var(--dark-brown);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 16px;
}

.underline {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-green), var(--warm-brown));
  margin: 0 auto 20px;
  border-radius: 2px;
}

.section-description {
  font-size: 18px;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
  background: var(--white);
}

.about-content-new {
  max-width: 900px;
  margin: 0 auto;
}

.about-lead {
  font-size: 24px;
  font-weight: 500;
  color: var(--dark-navy);
  line-height: 1.6;
  margin-bottom: 24px;
  text-align: center;
}

.about-description {
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 50px;
  text-align: center;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: var(--light-bg);
  border-radius: 12px;
  border-left: 4px solid var(--primary-green);
  transition: all 0.3s ease;
}

.highlight-item:hover {
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateX(8px);
}

.highlight-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--primary-green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
}

.highlight-content h4 {
  font-size: 18px;
  color: var(--dark-navy);
  margin-bottom: 6px;
  font-weight: 600;
}

.highlight-content p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services-section {
  background: var(--light-bg);
}

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

.service-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  border-top: 4px solid var(--primary-green);
  opacity: 0;
  transform: translateY(20px);
}

.service-card.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--warm-brown);
}

.service-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 22px;
  color: var(--dark-navy);
  margin-bottom: 20px;
  font-weight: 600;
}

.service-card ul {
  list-style: none;
  padding: 0;
}

.service-card li {
  padding: 10px 0;
  padding-left: 24px;
  color: var(--text-light);
  position: relative;
  font-size: 15px;
}

.service-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-green);
  font-weight: bold;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-section {
  background: var(--light-bg);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.success-message {
  background: var(--white);
  padding: 60px 40px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  text-align: center;
  animation: fadeInUp 0.6s ease;
}

.success-message .success-icon {
  font-size: 80px;
  color: var(--primary-green);
  margin-bottom: 24px;
  display: block;
  animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

.success-message h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 36px;
  color: var(--dark-navy);
  margin-bottom: 16px;
}

.success-message p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.6;
}

.show-form-button {
  background: var(--primary-green);
  color: var(--white);
  padding: 12px 32px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.show-form-button:hover {
  background: var(--dark-green);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  transition: all 0.3s ease;
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(107, 143, 113, 0.1);
}

.submit-button {
  width: 100%;
  background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
  color: var(--white);
  padding: 16px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-card {
  background: var(--white);
  padding: 28px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary-green);
}

.info-card h4 {
  font-size: 18px;
  color: var(--dark-navy);
  margin-bottom: 12px;
}

.info-card p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.6;
}

.info-card a {
  color: var(--primary-green);
  text-decoration: none;
  font-weight: 500;
}

.info-card a:hover {
  color: var(--dark-green);
  text-decoration: underline;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--dark-navy);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-logo img {
  height: 80px;
  width: auto;
  margin-bottom: 16px;
  background: var(--white);
  padding: 12px;
  border-radius: 8px;
}

.footer-logo p {
  color: var(--light-sage);
  font-size: 14px;
  font-weight: 500;
}

.footer-links h4,
.footer-services h4 {
  font-size: 16px;
  margin-bottom: 20px;
  color: var(--white);
  font-weight: 600;
}

.footer-links a,
.footer-services a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin-bottom: 12px;
  font-size: 14px;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeInUp 0.6s ease forwards;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 968px) {
  .nav {
    gap: 20px;
  }
  
  .nav a {
    font-size: 14px;
  }
  
  .hero-title {
    font-size: 42px;
  }
  
  .about-lead {
    font-size: 20px;
  }
  
  .about-description {
    font-size: 16px;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .header .container {
    flex-direction: column;
    gap: 16px;
  }
  
  .nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
  
  .hero {
    padding: 80px 0;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .section-header h2 {
    font-size: 32px;
  }
  
  .about-lead {
    font-size: 18px;
    text-align: left;
  }
  
  .about-description {
    font-size: 15px;
    text-align: left;
  }
  
  .highlight-item {
    padding: 20px;
  }
  
  .highlight-content h4 {
    font-size: 16px;
  }
  
  .highlight-content p {
    font-size: 14px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 50px;
  }
  
  .hero-title {
    font-size: 28px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .cta-button {
    padding: 10px 20px;
    font-size: 14px;
  }
  
  .hero-cta {
    padding: 14px 32px;
    font-size: 16px;
  }
}
