html {
  scroll-behavior: smooth;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
  padding: 0;
}

.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #ff9966;
  color: #000000;
  font-size: 24px;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s, visibility 0.3s;
  opacity: 0;
  visibility: hidden;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

body {
  background: #121212;
  color: #e0e0e0;
  font-family: "Roboto", sans-serif;
}

.header_div {
  background: #1a1a1a;
  padding: 20px 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

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

.logo img {
  width: 90px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  text-decoration: none;
  font-size: 1.2rem;
  color: #ffffff;
  padding: 10px 15px;
  border-radius: 8px;
  transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
}

nav ul li a:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
}

section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: #181818;
}

iframe {
  width: 90%;
  max-width: 1200px;
  height: 80vh;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease-in-out;
}

iframe:hover {
  transform: scale(1.02);
}

.cookies-section {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #222;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 350px;
  height: auto;
  min-height: 50px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 999999 !important;
  overflow: hidden;
  white-space: nowrap;
}

.cookies-div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.cookies-div p {
  font-size: 1rem;
  color: #ffffff;
  margin: 0;
  white-space: nowrap;
}

#acceptButton {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: none;
  padding: 6px 12px;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease-in-out;
}

#acceptButton:hover {
  background: rgba(255, 255, 255, 0.4);
}

.footer {
  background: #1a1a1a;
  padding: 60px 20px;
  text-align: center;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.5);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-logo img {
  width: 80px;
}

.footer-contact,
.footer-hours {
  text-align: left;
}

.footer h3 {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 10px;
}

.footer p {
  font-size: 1.1rem;
  color: #b3b3b3;
}

.footer-links {
  margin-top: 20px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-links li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 1.1rem;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.3s ease-in-out;
}

.footer-links li a:hover {
  background: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
  margin-top: 30px;
  font-size: 1rem;
  color: #b3b3b3;
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
  }

  iframe {
    width: 95%;
    height: 70vh;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-links ul {
    flex-direction: column;
    gap: 10px;
  }
}

.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url("../assets/images/services-planting-design.jpg") center/cover
    no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
  animation: fadeIn 1.5s ease-in-out;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-content p {
  font-size: 1.4rem;
  margin-bottom: 20px;
  opacity: 0.8;
}

.hero-button {
  display: inline-block;
  padding: 12px 25px;
  font-size: 1.2rem;
  color: #fff;
  background: linear-gradient(135deg, #ff4e50, #ff9966);
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 153, 102, 0.6);
}

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

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1.2rem;
  }

  .hero-button {
    font-size: 1rem;
    padding: 10px 20px;
  }
}

.about-section {
  width: 100%;
  background: #181818;
  color: #fff;
  padding: 100px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-container {
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.about-text {
  flex: 1;
  animation: fadeIn 1.5s ease-in-out;
}

.about-text h2 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  opacity: 0.8;
  margin-bottom: 15px;
}

.about-images {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  width: 100%;
}

.about-images img {
  width: 90%;
  height: 300px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.about-images img:hover {
  transform: scale(1.05);
}

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

@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text h2 {
    font-size: 2.5rem;
  }

  .about-text p {
    font-size: 1.1rem;
  }

  .about-images {
    flex-direction: column;
    align-items: center;
  }

  .about-images img {
    width: 100%;
    max-width: 300px;
    height: auto;
  }
}

.service-section {
  width: 100%;
  background: #121212;
  color: #fff;
  padding: 100px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-container {
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.service-text {
  flex: 1;
  animation: fadeIn 1.5s ease-in-out;
}

.service-text h2 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.service-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  opacity: 0.8;
  margin-bottom: 20px;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.feature img {
  width: 50px;
  height: 50px;
}

.feature h3 {
  font-size: 1.4rem;
  margin-bottom: 5px;
}

.feature p {
  font-size: 1rem;
  opacity: 0.8;
}

.service-images {
  flex: 1;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.service-images img {
  width: 250px;
  height: 300px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.service-images img:hover {
  transform: scale(1.05);
}

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

@media (max-width: 768px) {
  .service-container {
    flex-direction: column;
    text-align: center;
  }

  .service-text h2 {
    font-size: 2.5rem;
  }

  .service-text p {
    font-size: 1.1rem;
  }

  .service-features {
    flex-direction: column;
    align-items: center;
  }

  .feature {
    flex-direction: column;
    text-align: center;
  }

  .service-images {
    flex-direction: column;
    align-items: center;
  }

  .service-images img {
    width: 100%;
    max-width: 300px;
    height: auto;
  }
}

.gallery-section {
  width: 100%;
  background: #121212;
  color: #fff;
  padding: 100px 20px;
  text-align: center;
}

.gallery-section h2 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 40px;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-container img {
  width: 90%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-container img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

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

@media (max-width: 768px) {
  .gallery-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-section h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .gallery-container {
    grid-template-columns: 1fr;
  }
}

.contact-section {
  width: 100%;
  background: #121212;
  color: #fff;
  padding: 100px 20px;
  text-align: center;
}

.contact-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
  animation: fadeIn 1.5s ease-in-out;
}

.contact-container h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.contact-container p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.8;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  font-size: 1.1rem;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  transition: background 0.3s ease-in-out;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.3);
}

.submit-btn {
  width: 100%;
  padding: 12px;
  font-size: 1.2rem;
  color: #fff;
  background: linear-gradient(135deg, #ff4e50, #ff9966);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 153, 102, 0.6);
}

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

@media (max-width: 480px) {
  .contact-container {
    width: 90%;
  }
}
