:root {
  --primary-green: #2d5a27;
  --accent-gold: #c5a059;
  --white: #ffffff;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
}

/* --- NAVIGATION --- */
.main-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  padding: 20px 0;
}

/* Glassmorphism effect applied via JS on scroll */
.header-scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
}

.header-scrolled .logo {
  color: var(--primary-green);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
  transition: var(--transition);
}

.header-scrolled .nav-links a {
  color: #333;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-gold);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  transition: var(--transition);
}

.header-scrolled .hamburger {
  color: var(--primary-green);
}

.hamburger:hover {
  color: var(--accent-gold);
}

/* --- BUTTON STYLING --- */
.btn-primary {
  background-color: var(--primary-green);
  color: var(--white);
  border: 2px solid var(--primary-green);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(45, 90, 39, 0.3);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--white);
  transform: translateY(-3px);
}

.header-scrolled .btn-primary:hover {
  color: var(--primary-green);
}

.btn-secondary {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  margin-left: 15px;
  transition: var(--transition);
}

.btn-secondary:hover {
  background-color: var(--white);
  color: var(--primary-green);
}

.btn-text {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  padding: 12px 20px;
  border-radius: 50px;
  border: 2px solid transparent;
}

.btn-text:hover {
  color: var(--accent-gold);
  border-color: var(--accent-gold);
}

.header-scrolled .btn-text {
  color: var(--primary-green);
}

.header-scrolled .btn-text:hover {
  color: var(--accent-gold);
}

/* --- HERO SECTION --- */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.3)
  );
  z-index: -1;
}

.hero-content h1 {
  font-size: 4rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.sub-title {
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

/* Service Grid */
.services {
  padding: 80px 10%;
}
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.service-card {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 15px;
  transition: transform 0.3s;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
  background: var(--light-bg);
}
.service-card i {
  font-size: 2rem;
  color: var(--primary-green);
  margin-bottom: 15px;
}

/* Feedback */
.feedback {
  padding: 60px 10%;
  background: var(--white);
  text-align: center;
}
.feedback-grid {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}
.feedback-item img {
  width: 100%;
  border-radius: 20px;
  height: 200px;
  object-fit: cover;
}

.btn-green {
  background: var(--primary-green);
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    padding-left: 30px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    z-index: 1001;
  }

  .nav-links.mobile-open li {
    margin: 10px 0;
  }

  .nav-links.mobile-open a {
    color: #333;
  }

  .nav-cta.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 360px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    gap: 10px;
  }

  .nav-cta.mobile-open a,
  .nav-cta.mobile-open button {
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .sub-title {
    font-size: 0.8rem;
    letter-spacing: 2px;
  }

  .hero-btns {
    flex-direction: column;
    gap: 15px;
  }
}

/* Feature Section */
.feature-section {
  background: #0b1626;
  padding: 0px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  margin-bottom: 0;
}

.feature-container {
  max-width: 1200px;
  max-height: 450px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
}

.feature-content {
  flex: 1;
  background: #0b1626;
  padding: 40px 60px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-icon {
  margin-bottom: 20px;
}

.feature-icon i {
  font-size: 4rem;
  color: cyan;
  filter: drop-shadow(0 0 10px cyan);
}

.feature-content h2 {
  font-size: 2.2rem;
  line-height: 1.1;
  font-weight: bold;
  text-transform: uppercase;
  font-family: sans-serif;
  margin-bottom: 30px;
}

.feature-content ul {
  list-style: none;
  padding: 0;
}

.feature-content li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}

.feature-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: cyan;
  border-radius: 50%;
}

.feature-image {
  flex: 1;
}

.feature-image img {
  height: 100%;

  width: 100%;
  margin-bottom: 0;

  object-fit: cover;
}

@media (max-width: 768px) {
  .feature-container {
    flex-direction: column;
  }

  .feature-content {
    padding: 40px 20px;
  }

  .feature-image {
    min-height: 300px;
  }
}

/* About Section */
.about-section {
  background: #f9f9f9;
  padding: 80px 0;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 0 20px;
}

.about-content {
  flex: 1;
}

.about-content h2 {
  color: var(--primary-green);
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.about-content p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 30px;
}

.stat h3 {
  color: var(--accent-gold);
  font-size: 2.5rem;
  margin: 0;
  font-weight: 700;
}

.stat p {
  color: #666;
  margin: 5px 0 0;
  font-weight: 500;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    gap: 40px;
  }

  .about-content h2 {
    font-size: 2rem;
  }

  .about-stats {
    flex-direction: column;
    gap: 20px;
  }

  .stat {
    text-align: center;
  }
}

/* --- FOOTER --- */
.main-footer {
  background: #0a0f1a;
  color: var(--white);
  padding: 60px 0 20px;
  font-family: "Poppins", sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 0 20px;
}

.footer-column h3,
.footer-column h4 {
  color: var(--accent-gold);
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-logo h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 15px;
}

.footer-logo h3 span {
  color: var(--accent-gold);
}

.footer-logo p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  color: var(--white);
  font-size: 18px;
  transition: var(--transition);
}

.social-links a:hover {
  color: var(--accent-gold);
  transform: translateY(-3px);
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  transition: var(--transition);
}

.footer-column ul li a:hover {
  color: var(--accent-gold);
}

.contact-info li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: #ccc;
}

.contact-info i {
  color: var(--accent-gold);
  margin-right: 10px;
  width: 20px;
}

.contact-info a {
  color: #ccc;
  text-decoration: none;
}

.contact-info a:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  border-top: 1px solid #333;
  padding: 20px 0;
  text-align: center;
  margin-top: 40px;
}

.footer-bottom p {
  color: #999;
  font-size: 14px;
}

/* Services Section */
.services-section {
  padding: 80px 0;
  background: #f9f9f9;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary-green);
  margin-bottom: 10px;
  font-weight: 600;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--white);
  border-radius: 15px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card h3 {
  padding: 20px 20px 10px;
  font-size: 1.3rem;
  color: var(--primary-green);
  font-weight: 600;
}

.service-card p {
  padding: 0 20px 20px;
  color: #666;
  line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-size: 4rem;
  color: var(--accent-gold);
  position: absolute;
  top: 10px;
  left: 20px;
  opacity: 0.3;
}

.testimonial-content p {
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 20px;
  padding-left: 30px;
}

.stars {
  color: var(--accent-gold);
  margin-bottom: 20px;
  padding-left: 30px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  padding-left: 30px;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.testimonial-author h4 {
  color: var(--primary-green);
  margin: 0;
  font-size: 1.1rem;
}

.testimonial-author span {
  color: #666;
  font-size: 0.9rem;
}

/* Testimonials Responsive */
@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 20px;
  }

  .testimonial-content p,
  .stars,
  .testimonial-author {
    padding-left: 0;
  }

  .testimonial-card::before {
    display: none;
  }
}

/* CTA Section */
.cta-section {
  position: relative;
  background-image: url("https://images.unsplash.com/photo-1555396273-367ea4eb4db5?auto=format&fit=crop&q=80&w=1920");
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  color: var(--white);
  text-align: center;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(45, 90, 39, 0.8),
    rgba(45, 90, 39, 0.9)
  );
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.cta-buttons .btn-secondary {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.cta-buttons .btn-secondary:hover {
  background: var(--white);
  color: var(--primary-green);
}

@media (max-width: 768px) {
  .cta-section {
    padding: 80px 0;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .cta-content p {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

/* Services Responsive */
@media (max-width: 768px) {
  .services-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Footer Responsive */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .main-footer {
    padding: 40px 20px 20px;
  }

  .footer-column {
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .contact-info li {
    display: block;
    text-align: center;
    margin-bottom: 15px;
  }

  .contact-info i {
    margin-right: 10px;
  }
}
