* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

:root {
  --primary-green: #268e55;
  --primary-hover: #1e7545;
  --text-dark: #111;
  --text-light: #f5f5f5;
  --text-gray: #a1a1a1;
}

body {
  background-color: #fff;
  color: var(--text-dark);
  overflow-x: hidden;
}

.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(60, 60, 60, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 18px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 90%;
}

.logo {
  width: fit-content;
}

.logo img {
  width: auto;
  height: 32px;
  object-fit: contain;
}

.btn {
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, background-color 0.2s;
}

.btn-primary-small {
  background-color: var(--primary-green);
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
}

.btn-primary-small:hover {
  background-color: var(--primary-hover);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 110vh;
  width: 100%;

  background-image: url("./img1.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  padding-bottom: 80px;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
  z-index: 1;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text {
  color: white;
}

.social-proof {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 24px;
}

.avatars {
  display: flex;
}

.avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -10px;
}

.avatars img:first-child {
  margin-left: 0;
}

.rating {
  font-size: 0.9rem;
}

.rating .stars {
  color: #f59e0b;
  letter-spacing: 2px;
  font-size: 0.8rem;
}

h1 {
  font-size: 4rem;
  line-height: 1.1;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 40px;
  max-width: 500px;
}

.location-card {
  text-decoration: none;
  background: white;
  color: black;
  padding: 12px 20px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.icon-box {
  background: var(--primary-green);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.loc-text {
  display: flex;
  flex-direction: column;
}

.loc-text span {
  font-size: 0.85rem;
  color: #666;
}

.form-box {
  background: #e6e6e6;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  position: relative;
}

.form-box h2 {
  font-size: 1.5rem;
  margin-bottom: 24px;
  color: #000;
}

.input-group {
  margin-bottom: 16px;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  outline: none;
  background: white;
  color: #333;
  transition: box-shadow 0.3s;
}

.input-group input:focus,
.input-group textarea:focus {
  box-shadow: 0 0 0 2px var(--primary-green);
}

.input-group textarea {
  resize: none;
}

.btn-submit {
  width: 100%;
  background-color: var(--primary-green);
  color: white;
  padding: 16px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 8px;
}

.btn-submit:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
}

/* --- Footer --- */
footer {
  background: white;
  padding: 80px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
}

.footer-col p {
  color: #666;
  margin: 20px 0;
  font-size: 0.9rem;
  max-width: 250px;
}

.social-links a {
  color: var(--primary-green);
  margin-right: 15px;
  font-size: 1.1rem;
  transition: opacity 0.2s;
}

.social-links a:hover {
  opacity: 0.7;
}

.footer-col h3 {
  font-size: 1rem;
  margin-bottom: 20px;
}

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

.footer-col ul li a {
  text-decoration: none;
  color: #666;
  font-size: 0.9rem;
}

.fade-in-down {
  animation: fadeInDown 1s ease forwards;
}

.fade-in-left {
  animation: fadeInLeft 1s ease forwards;
  opacity: 0;
  animation-delay: 0.3s;
}

.fade-in-right {
  animation: fadeInRight 1s ease forwards;
  opacity: 0;
  animation-delay: 0.5s;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  h1 {
    font-size: 2.5rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 32px;
  }

  .hero-form {
    margin-top: 20px;
  }

  .footer-content {
    flex-direction: column;
    gap: 40px;
  }
}

.page-header {
  position: relative;
  height: 400px;
  width: 100%;
  background-image: url("./img2.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-header h1 {
  position: relative;
  z-index: 2;
  color: white;
  font-size: 3.5rem;
  font-weight: 600;
}

.section-white {
  padding: 100px 0;
  background: white;
}

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-details h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.desc-text {
  color: #555;
  line-height: 1.6;
  margin-bottom: 40px;
  font-size: 1rem;
}

.contact-icons-row {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.contact-text {
  display: flex;
  flex-direction: column;
}

.contact-text strong {
  font-size: 1rem;
  margin-bottom: 4px;
}

.contact-text span {
  font-size: 0.85rem;
  color: #777;
}

.contact-image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.section-gray {
  background-color: #f9f9f9;
  padding: 100px 0;
  border-radius: 20px 20px 0 0;
}

.form-container-center {
  max-width: 800px;
  margin: 0 auto;
}

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

.subtitle-gray {
  color: #666;
  margin-top: 15px;
  margin-bottom: 50px;
  line-height: 1.6;
}

.clean-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.clean-form input,
.clean-form textarea {
  width: 100%;
  padding: 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: white;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s;
}

.clean-form input:focus,
.clean-form textarea:focus {
  border-color: var(--primary-green);
}

.clean-form .btn-submit {
  margin-top: 10px;
  border-radius: 8px;
  padding: 18px;
  font-size: 1rem;
  cursor: pointer;
}

@media (max-width: 960px) {
  .contact-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-icons-row {
    flex-direction: column;
    gap: 20px;
  }

  .page-header h1 {
    font-size: 2.5rem;
  }
}
