:root {
  --green-dark: #1a5c2a;
  --green-medium: #2e8b3c;
  --green-light: #4caf50;
  --green-pale: #e8f5e9;
  --yellow-dark: #b8860b;
  --yellow-gold: #d4a017;
  --yellow-light: #ffd700;
  --yellow-bright: #ffeb3b;
  --yellow-pale: #fff8e1;
  --white: #ffffff;
  --black: #1a1a1a;
  --gray: #666;
  --gray-light: #f5f5f5;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--green-dark);
  line-height: 1.6;
  background: var(--white);
}

a {
  color: var(--green-dark);
  text-decoration: none;
}

a:hover {
  color: var(--yellow-gold);
}

/* Freedom Background Pattern - Hummingbird Animation */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(46, 139, 60, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(212, 160, 23, 0.04) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cpath d='M90 35 C110 25 150 40 150 80 C150 120 110 140 90 155 C70 140 30 120 30 80 C30 40 70 25 90 35Z' fill='none' stroke='%232e8b3c' stroke-width='0.6' opacity='0.06'/%3E%3Cpath d='M90 50 C105 42 130 52 130 78 C130 104 105 118 90 128 C75 118 50 104 50 78 C50 52 75 42 90 50Z' fill='none' stroke='%23d4a017' stroke-width='0.5' opacity='0.05'/%3E%3C/svg%3E") repeat;
  pointer-events: none;
  z-index: -1;
  animation: bgDrift 60s linear infinite;
}

@keyframes bgDrift {
  0% { background-position: 0 0, 0 0, 0 0; }
  100% { background-position: 100px 100px, -100px -50px, 180px 180px; }
}

/* Header */
header {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-medium) 100%);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-icon {
  width: 50px;
  height: 50px;
}

.logo-text {
  color: var(--yellow-light);
  font-size: 1.5rem;
  font-weight: 700;
}

.logo-text span {
  color: var(--white);
  font-weight: 300;
  font-size: 0.85rem;
  display: block;
}

/* Navigation */
nav ul {
  list-style: none;
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

nav ul li a {
  color: var(--yellow-pale);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
  background: rgba(255, 255, 255, 0.15);
  color: var(--yellow-light);
}

.btn-login {
  background: var(--yellow-gold) !important;
  color: var(--green-dark) !important;
  font-weight: 600 !important;
}

.btn-login:hover {
  background: var(--yellow-light) !important;
  color: var(--green-dark) !important;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, #0d3b17 50%, var(--green-medium) 100%);
  color: var(--white);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255, 215, 0, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(255, 215, 0, 0.04) 0%, transparent 50%);
  z-index: 0;
}

.hero-bird {
  position: absolute;
  opacity: 0.12;
  z-index: 0;
}

.hero-bird-1 {
  top: 8%;
  left: 3%;
  width: 300px;
  animation: birdFloat1 18s ease-in-out infinite;
}

.hero-bird-2 {
  bottom: 10%;
  right: 5%;
  width: 220px;
  animation: birdFloat2 22s ease-in-out infinite;
  animation-delay: -7s;
}

.hero-bird-3 {
  top: 55%;
  left: 60%;
  width: 180px;
  animation: birdFloat3 15s ease-in-out infinite;
  animation-delay: -12s;
}

@keyframes birdFloat1 {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  25% { transform: translateY(-30px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(5deg) translateX(20px); }
  75% { transform: translateY(-25px) rotate(-3deg); }
}

@keyframes birdFloat2 {
  0%, 100% { transform: translateY(0) rotate(3deg); }
  30% { transform: translateY(-20px) rotate(-2deg) translateX(-15px); }
  60% { transform: translateY(-35px) rotate(5deg); }
}

@keyframes birdFloat3 {
  0%, 100% { transform: translateY(0) scaleX(-1) rotate(0deg); }
  40% { transform: translateY(-25px) scaleX(-1) rotate(-5deg) translateX(10px); }
  80% { transform: translateY(-15px) scaleX(-1) rotate(3deg); }
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3rem;
  color: var(--yellow-light);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 2rem;
  opacity: 0.9;
}

.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  margin: 0.5rem;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--yellow-gold);
  color: var(--green-dark);
}

.btn-primary:hover {
  background: var(--yellow-light);
  color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(212, 160, 23, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--yellow-light);
  border: 2px solid var(--yellow-light);
}

.btn-secondary:hover {
  background: var(--yellow-light);
  color: var(--green-dark);
  transform: translateY(-2px);
}

/* Stats Section */
.stats {
  background: var(--white);
  padding: 3rem 2rem;
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  border-bottom: 3px solid var(--green-pale);
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--yellow-gold);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray);
  margin-top: 0.25rem;
}

/* Section Common */
.section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

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

.section-header h2 {
  font-size: 2.2rem;
  color: var(--green-dark);
  margin-bottom: 1rem;
}

.section-header h2 .highlight {
  color: var(--yellow-gold);
}

.section-header p {
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
}

/* Featured Item */
.featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--green-pale);
  padding: 3rem 2rem;
  border-radius: 20px;
  margin: 2rem auto;
  max-width: 1200px;
}

.featured-image {
  text-align: center;
}

.featured-image svg {
  max-width: 100%;
  height: auto;
}

.featured-content h3 {
  font-size: 1.8rem;
  color: var(--green-dark);
  margin-bottom: 1rem;
}

.featured-content p {
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.featured-content a {
  color: var(--yellow-gold);
  font-weight: 600;
}

.featured-content a:hover {
  color: var(--green-dark);
}

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

.service-card {
  background: var(--white);
  border: 1px solid var(--green-pale);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(46, 139, 60, 0.1);
  border-color: var(--yellow-gold);
}

.service-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
}

.service-card h3 {
  color: var(--green-dark);
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.service-card .btn-link {
  color: var(--yellow-gold);
  font-weight: 600;
}

.service-card .btn-link:hover {
  color: var(--green-dark);
}

/* Why Choose Section */
.why-choose {
  background: linear-gradient(135deg, var(--green-pale), var(--yellow-pale));
}

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

.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.why-icon {
  background: var(--yellow-gold);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-text h4 {
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}

.why-text p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* Secondary Stats */
.stats-secondary {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* Blog/News Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.blog-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--green-pale);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.blog-image {
  height: 200px;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-image svg {
  width: 60px;
  height: 60px;
}

.blog-content {
  padding: 1.5rem;
}

.blog-tag {
  display: inline-block;
  background: var(--yellow-pale);
  color: var(--yellow-gold);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.blog-card h3 {
  color: var(--green-dark);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.blog-card p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.blog-card a {
  color: var(--yellow-gold);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Testimonials */
.testimonials {
  background: var(--green-dark);
  color: var(--white);
  text-align: center;
  padding: 5rem 2rem;
}

.testimonials h2 {
  color: var(--yellow-light);
  margin-bottom: 3rem;
  font-size: 2.2rem;
}

.testimonial {
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 2rem;
  opacity: 0.95;
  line-height: 1.8;
}

.testimonial-author {
  color: var(--yellow-light);
  font-weight: 600;
}

.testimonial-role {
  font-size: 0.85rem;
  opacity: 0.7;
}

/* CTA Section */
.cta {
  text-align: center;
  padding: 5rem 2rem;
  background: linear-gradient(135deg, var(--green-medium), var(--green-dark));
  color: var(--white);
}

.cta h2 {
  font-size: 2rem;
  color: var(--yellow-light);
  margin-bottom: 1rem;
}

.cta p {
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Footer */
footer {
  background: #0d2818;
  color: var(--white);
  padding: 4rem 2rem 2rem;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-about h3 {
  color: var(--yellow-light);
  margin-bottom: 1rem;
}

.footer-about p {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 1rem;
}

.footer-about .contact-item {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-bottom: 0.25rem;
}

.footer-about .contact-item strong {
  color: var(--yellow-light);
  opacity: 1;
}

.footer-col h4 {
  color: var(--yellow-light);
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.footer-col ul li a:hover {
  color: var(--yellow-light);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--yellow-gold);
  color: var(--green-dark);
}

.footer-newsletter input {
  width: 100%;
  padding: 0.75rem;
  border: none;
  border-radius: 8px;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.footer-newsletter .btn {
  width: 100%;
  background: var(--yellow-gold);
  color: var(--green-dark);
  font-size: 0.9rem;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  opacity: 0.6;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.6);
}

.footer-bottom-links a:hover {
  color: var(--yellow-light);
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--green-dark), var(--green-medium));
  color: var(--white);
  text-align: center;
  padding: 4rem 2rem;
}

.page-header h1 {
  font-size: 2.5rem;
  color: var(--yellow-light);
  margin-bottom: 0.5rem;
}

.page-header p {
  opacity: 0.85;
}

/* Page Content */
.page-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.page-content h2 {
  color: var(--green-dark);
  margin-bottom: 1rem;
}

.page-content h2 .highlight {
  color: var(--yellow-gold);
}

.page-content p {
  color: var(--gray);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.page-content ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.page-content ul li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--gray);
}

.page-content ul li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--yellow-gold);
  font-size: 0.7rem;
  top: 0.65rem;
}

/* Contact Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--green-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--green-pale);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--yellow-gold);
}

/* Table */
.table-wrapper {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

table thead {
  background: var(--green-dark);
  color: var(--yellow-light);
}

table th,
table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border: 1px solid var(--green-pale);
}

table tbody tr:nth-child(even) {
  background: var(--green-pale);
}

/* Mobile */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--yellow-light);
  margin: 5px 0;
  border-radius: 3px;
  transition: all 0.3s;
}

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  
  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--green-dark);
    padding: 1rem;
    gap: 0.5rem;
  }
  
  nav ul.open { display: flex; }
  
  .hero h1 { font-size: 2rem; }
  
  .featured { grid-template-columns: 1fr; }
  
  .footer-grid { grid-template-columns: 1fr 1fr; }
  
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stats { gap: 2rem; }
  .stats-secondary { gap: 1.5rem; }
  .header-inner { padding: 0 1rem; }
}
