/* ===== GLOBAL STYLES ===== */
:root {
  --primary-color: #2d5016;
  --secondary-color: #4a7c2c;
  --accent-color: #6fa839;
  --light-bg: #f5f5f5;
  --white: #ffffff;
  --dark-text: #333333;
  --light-text: #666666;
  --border-color: #e0e0e0;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--dark-text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 15px;
}

h1 {
  font-size: 3rem;
  line-height: 1.2;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

h3 {
  font-size: 1.5rem;
}

p {
  color: var(--light-text);
  margin-bottom: 15px;
}

.large-text {
  font-size: 1.1rem;
  color: var(--dark-text);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 35px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  text-align: center;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 52%
  );
  color: var(--white);
  box-shadow: 0 6px 20px rgba(45, 80, 22, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(
    135deg,
    var(--secondary-color) 0%,
    var(--primary-color) 100%
  );
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(45, 80, 22, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

/* ===== NAVBAR ===== */
.navbar {
  /* Solid dark green color */
  background: #3d5e28;
  backdrop-filter: none;
  box-shadow: 0 6px 18px rgba(10, 60, 20, 0.25);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* No transparency on scroll - keep solid color */
.navbar.transparent {
  background: #3d5e28;
  box-shadow: 0 6px 18px rgba(10, 60, 20, 0.25);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 75px;
}

.nav-logo {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition);
}

.nav-logo:hover {
  transform: scale(1.05);
}

.logo-icon {
  margin-right: 12px;
  font-size: 2rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.logo-icon-img {
  height: 75px;
  width: auto;
  margin-right: 0px;
  filter: drop-shadow(0 2px 4px rgba(255, 250, 0, 1.2));
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

.nav-link:hover {
  color: var(--white);
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--accent-color),
    rgba(111, 168, 57, 0.5)
  );
  transition: var(--transition);
  border-radius: 2px;
}

.nav-link:hover::after {
  width: 100%;
  box-shadow: 0 0 10px rgba(111, 168, 57, 0.5);
}

.nav-link-btn {
  background: linear-gradient(
    135deg,
    var(--accent-color) 0%,
    var(--primary-color) 100%
  );
  color: var(--white);
  padding: 10px 22px;
  border-radius: 5px;
  border: 2px solid transparent;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(111, 168, 57, 0.3);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link-btn:hover {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--accent-color) 100%
  );
  box-shadow: 0 6px 25px rgba(111, 168, 57, 0.5);
  transform: translateY(-2px);
}

.nav-link-btn:hover::after {
  width: 0;
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%) !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
  background: linear-gradient(135deg, #128c7e 0%, #25d366 100%) !important;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn i {
  font-size: 1.1rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 5px 0;
  transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1a3a0a 0%, #2d5016 100%);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
  animation: zoomIn 15s ease-in-out infinite;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(45, 80, 22, -0.637) 0%,
    rgba(89, 90, 87, 0.4) 50%,
    rgba(66, 68, 64, 0.5) 100%
  );
  z-index: 2;
  backdrop-filter: blur(2px);
}

.hero-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 50%
    );
  z-index: 3;
}

.hero-content {
  max-width: 800px;
  z-index: 4;
  animation: fadeInUp 1.2s ease 0.3s backwards;
  position: relative;
}

.hero h1 {
  color: var(--white);
  font-size: 4rem;
  margin-bottom: 20px;
  font-weight: 800;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  letter-spacing: -1px;
  line-height: 1.1;
}

.hero p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.4rem;
  margin-bottom: 40px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.hero .btn {
  margin: 0 10px;
  animation: slideUp 1s ease 0.6s backwards;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@keyframes zoomIn {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== SECTIONS ===== */
section {
  padding: 60px 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 20px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--accent-color);
}

/* ===== ABOUT SECTION ===== */
.about {
  background-color: var(--light-bg);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

.about-text h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.about-text p {
  margin-bottom: 15px;
  text-align: justify;
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-images img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.why-us {
  margin-top: 50px;
  padding-top: 50px;
  border-top: 2px solid var(--border-color);
}

.why-us h3 {
  text-align: center;
  margin-bottom: 40px;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.why-us-item {
  text-align: center;
  padding: 30px;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.why-us-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.why-us-item i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

/* ===== SERVICES SECTION ===== */
.services {
  background-color: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-img {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  transition: var(--transition);
}

.service-card:hover .service-img {
  transform: scale(1.05);
}

.service-card h3 {
  padding: 20px 20px 10px 20px;
  font-size: 1.3rem;
  color: var(--primary-color);
}

.service-card p {
  padding: 0 20px 15px 20px;
  font-size: 0.95rem;
  color: var(--light-text);
}

.service-link {
  display: inline-block;
  padding: 15px 20px;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.service-link:hover {
  color: var(--accent-color);
}

/* ===== PROJECTS SECTION ===== */
.projects {
  background-color: var(--light-bg);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.project-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  cursor: pointer;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.project-img {
  width: 100%;
  height: 250px;
  background-size: cover;
  background-position: center;
  transition: var(--transition);
}

.project-card:hover .project-img {
  transform: scale(1.05);
}

.project-info {
  padding: 20px;
}

.project-info h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.project-info p {
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.project-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.project-link:hover {
  color: var(--accent-color);
}

/* ===== STEPS SECTION ===== */
.steps {
  background-color: var(--white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.step-item {
  text-align: center;
  padding: 30px;
  position: relative;
}

.step-item::before {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 30px;
  background-color: var(--accent-color);
}

.step-item:last-child::before {
  display: none;
}

.step-item:last-child::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 30px;
  background-color: var(--accent-color);
}

.step-number {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 15px auto;
}

.step-item h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

/* ===== CTA SECTION ===== */
.cta {
  background: linear-gradient(
    135deg,
    rgba(146, 218, 98, 0.425) 0%,
    rgba(74, 124, 44, 0.7) 100%
  );
  background-image: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.479) 0%,
      rgba(31, 31, 31, 0.568) 100%
    ),
    url("https://images.unsplash.com/photo-1605336923008-15e6d30405fa?q=80&w=1169&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
  padding: 80px 20px;
}

.cta h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

/* ===== CONTACT SECTION ===== */
.contact {
  background-color: var(--light-bg);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-form {
  background-color: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-item {
  display: flex;
  gap: 20px;
}

.info-item i {
  font-size: 2rem;
  color: var(--primary-color);
  flex-shrink: 0;
}

.info-item h3 {
  margin-bottom: 8px;
}

.info-item p {
  margin: 0;
}

.info-item a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.info-item a:hover {
  color: var(--accent-color);
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 50px 0 20px 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-section h4 {
  color: var(--white);
  margin-bottom: 15px;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--white);
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--accent-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
}

/* ===== SERVICE DETAILS PAGE ===== */
.service-details {
  padding: 40px 0;
}

.back-link {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 30px;
  transition: var(--transition);
}

.back-link:hover {
  color: var(--accent-color);
}

.details-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
  align-items: start;
}

.details-image {
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.details-info h1 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.service-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.badge {
  display: inline-block;
  padding: 8px 15px;
  background-color: var(--accent-color);
  color: var(--white);
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.service-features,
.service-benefits,
.service-pricing {
  margin: 30px 0;
  padding: 20px;
  background-color: var(--light-bg);
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}

.service-features h3,
.service-benefits h3,
.service-pricing h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.service-features ul,
.service-benefits ul {
  list-style: none;
}

.service-features li,
.service-benefits li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
  color: var(--light-text);
}

.service-features li::before,
.service-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.related-services {
  margin: 60px 0;
  padding: 40px 0;
  border-top: 2px solid var(--border-color);
  border-bottom: 2px solid var(--border-color);
}

.related-services h2 {
  text-align: center;
  margin-bottom: 30px;
}

.details-cta {
  text-align: center;
  padding: 50px 20px;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: var(--white);
  border-radius: 8px;
}

.details-cta h2 {
  color: var(--white);
  margin-bottom: 10px;
}

.details-cta p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 25px;
}

/* ===== PROJECT DETAILS PAGE ===== */
.project-details {
  padding: 40px 0;
}

.project-gallery {
  margin-bottom: 40px;
}

.main-image {
  width: 100%;
  height: 500px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.project-details .details-content {
  grid-template-columns: 1fr;
}

.project-details h1 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.project-meta {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--light-text);
}

.meta-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.project-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.detail-box {
  padding: 20px;
  background-color: var(--light-bg);
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}

.detail-box h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.project-highlights {
  margin: 30px 0;
  padding: 20px;
  background-color: var(--light-bg);
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}

.project-highlights h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.project-highlights ul {
  list-style: none;
}

.project-highlights li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
  color: var(--light-text);
}

.project-highlights li::before {
  content: "★";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.related-projects {
  margin: 60px 0;
  padding: 40px 0;
  border-top: 2px solid var(--border-color);
  border-bottom: 2px solid var(--border-color);
}

.related-projects h2 {
  text-align: center;
  margin-bottom: 30px;
}

.project-cta {
  text-align: center;
  padding: 50px 20px;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: var(--white);
  border-radius: 8px;
}

.project-cta h2 {
  color: var(--white);
  margin-bottom: 10px;
}

.project-cta p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 25px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .hamburger span {
    background-color: var(--white);
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: #3d5e28;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    gap: 0;
  }

  .nav-menu.active {
    left: 0;
    background: linear-gradient(
      180deg,
      rgba(111, 168, 57, 0.6) 0%,
      rgba(74, 124, 44, 0.8) 60%
    );
    backdrop-filter: blur(6px) saturate(120%);
    box-shadow: 0 6px 18px rgba(40, 80, 30, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-menu li {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-link-btn {
    margin: 10px 0;
  }

  .logo-icon-img {
    height: 60px;
    width: auto;
    margin-right: 0px;
    margin-bottom: 8px;
    filter: drop-shadow(0 2px 4px rgba(255, 250, 0, 1.2));
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .hero {
    height: 400px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .about-content,
  .details-content {
    grid-template-columns: 1fr;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .projects-grid,
  .why-us-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  .hero {
    height: 300px;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 0.9rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  section {
    padding: 40px 0;
  }

  .service-meta {
    flex-direction: column;
    gap: 10px;
  }

  .project-meta {
    flex-direction: column;
    gap: 15px;
  }

  .about-images img {
    height: 200px;
  }

  .contact-form {
    padding: 20px;
  }
}

/* ===== SUCCESS MESSAGE MODAL ===== */
.success-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  animation: fadeIn 0.3s ease;
}

.success-modal.show {
  display: flex;
}

.success-modal-content {
  background-color: var(--white);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.4s ease;
}

.success-modal-content i {
  font-size: 4rem;
  color: var(--accent-color);
  margin-bottom: 20px;
  display: block;
}

.success-modal-content h3 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.success-modal-content p {
  color: var(--light-text);
  font-size: 1rem;
  margin-bottom: 30px;
}

.success-modal-content button {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: var(--white);
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.success-modal-content button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 80, 22, 0.3);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
