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

html {
  scroll-behavior: smooth;
  font-size: 20px;
  zoom: 0.8;
  overflow-x: hidden;
}

body {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #343A40;
  background: #FFFFFF;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #2C3E50;
}

h1 {
  font-size: 3.5rem;
  font-weight: 900;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: #495057;
}

a {
  color: #1B5E20;
  text-decoration: none;
  transition: color 0.1s ease;
}
a:hover {
  color: rgb(15.6198347107, 54.3801652893, 18.5123966942);
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

::-moz-selection {
  background: #1B5E20;
  color: #FFFFFF;
}

::selection {
  background: #1B5E20;
  color: #FFFFFF;
}

@media (max-width: 1024px) {
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.5rem;
  }
}
@media (max-width: 640px) {
  html {
    font-size: 14px;
    zoom: 1;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.25rem;
  }
  p {
    font-size: 1rem;
  }
}
.container {
  width: 100%;
  max-width: 1700px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 1024px) {
  .container {
    padding: 0 1.5rem;
  }
}
@media (max-width: 640px) {
  .container {
    padding: 0 1rem;
  }
}

section {
  padding: 8rem 0;
}
@media (max-width: 1024px) {
  section {
    padding: 4rem 0;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.section-header .section-label {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #1B5E20;
  margin-bottom: 1rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem 3rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.1s ease;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: #1B5E20;
  color: #FFFFFF;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.btn-secondary {
  background: #3498DB;
  color: #FFFFFF;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.btn-white {
  background: #FFFFFF;
  color: #1B5E20;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.btn-large {
  padding: 2rem 4rem;
  font-size: 18px;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

@media (max-width: 640px) {
  .btn {
    padding: 1rem 2rem;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    justify-content: center;
  }
  .btn-large {
    padding: 1.5rem 3rem;
    font-size: 1rem;
  }
  .btn.btn-mobile-full {
    width: 100%;
    justify-content: center;
  }
}
.form-group {
  margin-bottom: 2rem;
}
.form-group label {
  display: block;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #2C3E50;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1.5rem;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  border: 2px solid #DEE2E6;
  border-radius: 8px;
  transition: all 0.1s ease;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #1B5E20;
  outline: none;
}
.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  /* Wit met transparantie */
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 1020;
  transition: all 0.1s ease;
}

.navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
}

.navbar-logo {
  display: flex;
  align-items: center;
}
.navbar-logo img {
  display: block;
  height: 44px;
  width: auto;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.navbar-menu li a {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: #495057;
  position: relative;
}
.navbar-menu li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #1B5E20 0%, #27AE60 100%);
  transition: width 0.1s ease;
}
.navbar-menu li a.active, .navbar-menu li a:hover {
  color: #1B5E20;
}
.navbar-menu li a.active::after, .navbar-menu li a:hover::after {
  width: 100%;
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1rem;
  z-index: 1021;
}
.navbar-toggle span {
  width: 25px;
  height: 3px;
  background: #2C3E50;
  border-radius: 2px;
  transition: all 0.1s ease;
}
.navbar-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}
.navbar-toggle.active span:nth-child(2) {
  opacity: 0;
}
.navbar-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}
@media (max-width: 1024px) {
  .navbar-toggle {
    display: flex;
  }
}

/* Nav CTA button */
.btn-nav-cta {
  background: #1B5E20 !important;
  color: #FFFFFF !important;
  border: none;
  cursor: pointer;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.3px;
  transition: all 0.1s ease;
  box-shadow: 0 4px 14px rgba(27, 94, 32, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.btn-nav-cta i {
  font-size: 0.9375rem;
}
.btn-nav-cta .nav-cta-caret {
  font-size: 0.7rem;
  transition: transform 0.1s ease;
}
.btn-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(27, 94, 32, 0.5);
}
@media (max-width: 1280px) {
  .btn-nav-cta span,
  .btn-nav-cta .nav-cta-caret {
    display: none;
  }
  .btn-nav-cta {
    padding: 1rem 1.5rem;
  }
  .btn-nav-cta i {
    font-size: 1.125rem;
  }
}
@media (max-width: 1024px) {
  .btn-nav-cta span {
    display: inline;
  }
  .btn-nav-cta .nav-cta-caret {
    display: inline-block;
    font-size: 0.7rem;
  }
  .btn-nav-cta {
    padding: 1rem 3rem;
  }
  .btn-nav-cta i {
    font-size: 0.9375rem;
  }
}

/* Nav CTA dropdown */
.nav-cta {
  position: relative;
}
.nav-cta.is-open .nav-cta-caret {
  transform: rotate(180deg);
}

.nav-cta-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 220px;
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.1s ease;
  z-index: 1022;
}
.nav-cta-menu a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-radius: 4px;
  color: #2C3E50;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
}
.nav-cta-menu a i {
  width: 20px;
  text-align: center;
  color: #1B5E20;
}
.nav-cta-menu a:hover {
  background: #F8F9FA;
  color: #1B5E20;
}

.nav-cta.is-open .nav-cta-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .nav-cta {
    width: 100%;
  }
  .nav-cta-menu {
    position: static;
    min-width: 0;
    width: 100%;
    box-shadow: none;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height 0.3s ease;
  }
  .nav-cta-menu a {
    justify-content: center;
  }
  .nav-cta.is-open .nav-cta-menu {
    max-height: 240px;
    padding-top: 1rem;
  }
}
@media (max-width: 1280px) {
  .navbar-menu {
    gap: 2rem;
  }
}
@media (max-width: 1024px) {
  .navbar-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: #FFFFFF;
    flex-direction: column;
    padding: 100px 3rem 3rem;
    gap: 2rem;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1020;
  }
  .navbar-menu.active {
    transform: translateX(0);
  }
  .navbar-menu li a {
    font-size: 1.125rem;
  }
  .btn-nav-cta {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 640px) {
  .navbar-content {
    padding: 1rem 0;
  }
  .navbar-logo img {
    height: 36px;
  }
  .navbar-menu {
    width: 100%;
    padding: 80px 2rem 2rem;
  }
}
.footer {
  background: #212529;
  color: #FFFFFF;
  padding: 6rem 0 2rem 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  color: #FFFFFF;
  margin-bottom: 2rem;
}
.footer-section h3 strong,
.footer-section h4 strong {
  color: #1B5E20;
}
.footer-section p {
  color: #CED4DA;
}
.footer-section ul li a {
  color: #CED4DA;
}
.footer-section ul li a:hover {
  color: #1B5E20;
}

.newsletter-form {
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.newsletter-form input[type=email] {
  flex: 1;
  min-width: 0;
  padding: 0.75rem 1rem;
  border: 1px solid #495057;
  border-radius: 8px;
  background: #343A40;
  color: #FFFFFF;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  transition: border-color 0.3s ease;
}
.newsletter-form input[type=email]::-moz-placeholder {
  color: #ADB5BD;
}
.newsletter-form input[type=email]::placeholder {
  color: #ADB5BD;
}
.newsletter-form input[type=email]:focus {
  outline: none;
  border-color: #1B5E20;
}
.newsletter-form button {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  border: none;
  border-radius: 8px;
  background: #1B5E20;
  color: #FFFFFF;
  cursor: pointer;
  transition: background 0.3s ease;
}
.newsletter-form button:hover {
  background: #27AE60;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid #343A40;
  text-align: center;
}
.footer-bottom p {
  color: #ADB5BD;
  margin: 0;
}

@media (max-width: 1280px) {
  .footer {
    padding: 5rem 0 2rem 0;
  }
}
@media (max-width: 1024px) {
  .footer {
    padding: 4rem 0 2rem 0;
  }
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}
@media (max-width: 640px) {
  .footer {
    padding: 3rem 0 2rem 0;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .footer-logo {
    margin-left: auto;
    margin-right: auto;
  }
}
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #1B5E20;
  color: #FFFFFF;
  border: none;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: all 0.1s ease;
  z-index: 1030;
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 640px) {
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 1.125rem;
  }
}
.hero {
  position: relative;
  height: 125vh;
  min-height: 875px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}
.hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #3498DB 0%, #1B5E20 100%);
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero .hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 1;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}
.hero .hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 2rem;
}
.hero .hero-title {
  color: #FFFFFF;
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 2rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}
@media (max-width: 1024px) {
  .hero .hero-title {
    font-size: 3rem;
  }
}
@media (max-width: 640px) {
  .hero .hero-title {
    font-size: 2rem;
  }
}
.hero .hero-subtitle {
  color: #FFFFFF;
  font-size: 1.25rem;
  margin-bottom: 4rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  opacity: 0.95;
}
@media (max-width: 1024px) {
  .hero .hero-subtitle {
    font-size: 1.125rem;
  }
}
@media (max-width: 640px) {
  .hero .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 3rem;
  }
}
.hero .highlight {
  color: #F1C40F;
}
.hero .hero-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero .hero-buttons .btn {
  justify-content: center;
}
@media (max-width: 1280px) {
  .hero .hero-buttons {
    gap: 1.5rem;
  }
  .hero .hero-buttons .btn {
    padding: 1.5rem 2rem;
    font-size: 0.9375rem;
    justify-content: center;
  }
}
@media (max-width: 1024px) {
  .hero .hero-buttons .btn {
    padding: 1rem 2rem;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    justify-content: center;
  }
}
@media (max-width: 640px) {
  .hero .hero-buttons {
    gap: 1rem;
    flex-direction: column;
    align-items: center;
  }
  .hero .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    padding: 1rem 1.5rem;
    font-size: 0.875rem;
    justify-content: center;
  }
  .hero .hero-buttons .btn i {
    font-size: 1rem;
  }
}
@media (max-width: 1024px) {
  .hero {
    min-height: 812px;
    padding-top: 70px;
  }
}
@media (max-width: 640px) {
  .hero {
    min-height: 550px;
    height: auto;
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  z-index: 3;
}
.hero-scroll span {
  display: block;
  margin-bottom: 1rem;
}
@media (max-width: 640px) {
  .hero-scroll {
    bottom: 20px;
    font-size: 0.75rem;
    letter-spacing: 1px;
  }
}

.scroll-arrow {
  width: 30px;
  height: 50px;
  border: 2px solid #FFFFFF;
  border-radius: 20px;
  position: relative;
  margin: 0 auto;
}
.scroll-arrow::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 6px;
  height: 6px;
  background: #FFFFFF;
  border-radius: 50%;
  transform: translateX(-50%);
  animation: scrollDown 2s ease infinite;
}
@media (max-width: 640px) {
  .scroll-arrow {
    width: 24px;
    height: 40px;
  }
  .scroll-arrow::before {
    width: 5px;
    height: 5px;
  }
}

@keyframes scrollDown {
  0% {
    transform: translate(-50%, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    transform: translate(-50%, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.feature-card,
.gallery-card {
  padding: 3rem;
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.1s ease;
  border: 2px solid transparent;
}
.feature-card:hover,
.gallery-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
  border-color: #1B5E20;
}
@media (max-width: 1024px) {
  .feature-card,
  .gallery-card {
    padding: 2rem;
  }
  .feature-card:hover,
  .gallery-card:hover {
    transform: translateY(-5px);
  }
}
@media (max-width: 640px) {
  .feature-card,
  .gallery-card {
    padding: 1.5rem;
  }
}

.feature-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1B5E20 0%, #27AE60 100%);
  color: #FFFFFF;
  font-size: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
@media (max-width: 640px) {
  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
}
@media (max-width: 1280px) {
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
}
@media (max-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.photo-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
@media (max-width: 1280px) {
  .photo-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 640px) {
  .photo-cards-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.photo-card {
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  border: 2px solid transparent;
  overflow: hidden;
  transition: all 0.1s ease;
}
.photo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
  border-color: #1B5E20;
}
.photo-card:hover .photo-card-image img {
  transform: scale(1.08);
}
@media (max-width: 1024px) {
  .photo-card:hover {
    transform: translateY(-5px);
  }
}

.photo-card-image {
  aspect-ratio: 295/405;
  overflow: hidden;
}
.photo-card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}

.photo-card-body {
  padding: 2rem;
}
.photo-card-body h3 {
  margin-bottom: 1rem;
}
.photo-card-body p {
  margin-bottom: 0;
  font-size: 0.9375rem;
  color: #6C757D;
}
@media (max-width: 1024px) {
  .photo-card-body {
    padding: 1.5rem;
  }
}

.features {
  background: #FFFFFF;
  position: relative;
}
.features .container {
  position: relative;
  z-index: 1;
}

.process {
  background: linear-gradient(135deg, #ECF0F1 0%, rgb(227.1909090909, 233.0454545455, 234.5090909091) 100%);
  position: relative;
  overflow: hidden;
}
.process::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 50px, rgba(27, 94, 32, 0.02) 50px, rgba(27, 94, 32, 0.02) 100px);
  z-index: 0;
}
.process .container {
  position: relative;
  z-index: 1;
}

.process--light {
  background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
}
.process--light::before {
  display: none;
}

.process-steps {
  max-width: 900px;
  margin: 0 auto;
}

.process-step {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
  padding: 2rem;
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}
.process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
  border-color: #1B5E20;
}
@media (max-width: 1024px) {
  .process-step {
    gap: 2rem;
    padding: 1.5rem;
  }
  .process-step:hover {
    transform: translateY(-5px);
  }
}
@media (max-width: 640px) {
  .process-step {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }
}

.step-number {
  font-family: "Montserrat", sans-serif;
  font-size: 4rem;
  font-weight: 900;
  color: #1B5E20;
  opacity: 0.3;
}
@media (max-width: 1024px) {
  .step-number {
    font-size: 3.5rem;
  }
}
@media (max-width: 640px) {
  .step-number {
    font-size: 2.5rem;
  }
}

.step-icon {
  font-size: 2.5rem;
  color: #1B5E20;
}
@media (max-width: 1024px) {
  .step-icon {
    font-size: 2rem;
  }
}
@media (max-width: 640px) {
  .step-icon {
    display: none;
  }
}

.page-hero {
  padding: 180px 0 20px;
  position: relative;
  overflow: hidden;
}
.page-hero .container {
  position: relative;
  z-index: 2;
}
.page-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
@media (max-width: 1024px) {
  .page-hero h1 {
    font-size: 3rem;
  }
}
@media (max-width: 640px) {
  .page-hero h1 {
    font-size: 2rem;
  }
}
.page-hero p {
  color: #495057;
  font-size: 18px;
  max-width: 600px;
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .page-hero p {
    font-size: 1.125rem;
  }
}
@media (max-width: 640px) {
  .page-hero p {
    font-size: 1rem;
    max-width: 100%;
  }
}
.page-hero .btn {
  margin-top: 1.5rem;
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
}
.page-hero .breadcrumb {
  color: #6C757D;
  font-size: 14px;
  margin-bottom: 2rem;
}
.page-hero .breadcrumb a {
  color: #495057;
  text-decoration: none;
  transition: color 0.1s ease;
}
.page-hero .breadcrumb a:hover {
  color: #1B5E20;
}
@media (max-width: 640px) {
  .page-hero .breadcrumb {
    font-size: 0.8125rem;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 1024px) {
  .page-hero {
    padding: 140px 0 16px;
  }
}
@media (max-width: 640px) {
  .page-hero {
    padding: 120px 0 12px;
  }
}

.page-hero + section {
  padding-top: 0;
}

.page-hero + .offer-section {
  padding-top: 8rem;
}
@media (max-width: 1024px) {
  .page-hero + .offer-section {
    padding-top: 4rem;
  }
}

.faq-item {
  background: #FFFFFF;
  border-radius: 16px;
  margin-bottom: 2rem;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
@media (max-width: 640px) {
  .faq-item {
    margin-bottom: 1.5rem;
  }
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 3rem;
  background: none;
  border: none;
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  text-align: left;
  color: #2C3E50;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .faq-question {
    padding: 1.5rem 2rem;
    font-size: 1.125rem;
  }
}
@media (max-width: 640px) {
  .faq-question {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
}

.notification {
  position: fixed;
  top: 100px;
  right: -400px;
  max-width: 400px;
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
  padding: 2rem;
  z-index: 1040;
  transition: right 0.3s ease;
  border-left: 4px solid #1B5E20;
}
.notification.show {
  right: 2rem;
}
.notification-success {
  border-left-color: #1B5E20;
}
.notification-success i {
  color: #1B5E20;
}
.notification-error {
  border-left-color: #e74c3c;
}
.notification-error i {
  color: #e74c3c;
}
.notification-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-right: 2rem;
}
.notification-content i {
  font-size: 1.5rem;
}
.notification-content span {
  flex: 1;
  color: #2C3E50;
  line-height: 1.5;
}
.notification-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: #6C757D;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.1s ease;
}
.notification-close:hover {
  color: #2C3E50;
}
@media (max-width: 640px) {
  .notification {
    right: -100%;
    max-width: calc(100% - 3rem);
  }
  .notification.show {
    right: 1.5rem;
  }
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 3rem;
  color: #495057;
}
@media (max-width: 1024px) {
  .faq-answer {
    padding: 0 2rem;
  }
}
@media (max-width: 640px) {
  .faq-answer {
    padding: 0 1.5rem;
  }
}

.faq-item.active .faq-answer {
  padding-top: 1rem;
  padding-bottom: 2rem;
}
@media (max-width: 640px) {
  .faq-item.active .faq-answer {
    padding-top: 0.5rem;
    padding-bottom: 1.5rem;
  }
}

body.menu-open {
  overflow: hidden;
}
@media (min-width: 1025px) {
  body.menu-open {
    overflow: visible;
  }
}

.btn .fa-spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.gallery-item {
  transition: opacity 0.1s ease, transform 0.1s ease;
}
.gallery-item[style*="display: none"] {
  opacity: 0;
  transform: scale(0.95);
}

img[data-src] {
  opacity: 0;
  transition: opacity 0.3s ease;
}
img[data-src]:not([data-src]) {
  opacity: 1;
}

html {
  scroll-behavior: smooth;
}

*:focus-visible {
  outline: 2px solid #1B5E20;
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid #1B5E20;
  outline-offset: 2px;
}

.gallery-preview {
  background: linear-gradient(135deg, #56CCF2 0%, #3498DB 100%);
  position: relative;
}
.gallery-preview .section-header h2,
.gallery-preview .section-header p {
  color: #FFFFFF;
}
.gallery-preview .section-header .section-label {
  color: #F1C40F;
}

.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 1024px) {
  .gallery-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .gallery-preview-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-item {
  position: relative;
  aspect-ratio: 350/400;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  border: 3px solid transparent;
  transition: all 0.1s ease;
}
.gallery-item:hover {
  border-color: #F1C40F;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
}

.gallery-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3rem 3rem 1.5rem;
}
.gallery-overlay h3 {
  color: #FFFFFF;
  margin-bottom: 0;
  font-size: 1.72rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.gallery-overlay .gallery-overlay-specs {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: 0.9375rem;
  color: #E9ECEF;
  opacity: 0.9;
}
@media (max-width: 640px) {
  .gallery-overlay {
    padding: 2rem 2rem 1rem;
  }
  .gallery-overlay h3 {
    font-size: 1.25rem;
  }
  .gallery-overlay .gallery-overlay-specs {
    font-size: 0.8125rem;
  }
}

.gallery-item:hover .gallery-image {
  transform: scale(1.1);
}

.sold-badge {
  position: absolute;
  top: 30px;
  right: -62px;
  z-index: 2;
  width: 240px;
  background: linear-gradient(135deg, #2C3E50 0%, rgb(62.0967741935, 87.5, 112.9032258065) 100%);
  color: #FFFFFF;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  padding: 0.65rem 0;
  transform: rotate(45deg);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
@media (max-width: 640px) {
  .sold-badge {
    top: 22px;
    right: -55px;
    width: 200px;
    font-size: 0.8125rem;
    padding: 0.5rem 0;
  }
}

.gallery-item--sold .gallery-image {
  filter: grayscale(40%);
}

.interest-bar {
  background: #2C3E50;
  padding: 3rem 0;
}
.interest-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.interest-bar-text h3 {
  color: #FFFFFF;
  margin-bottom: 0.25rem;
  font-size: 1.5rem;
}
.interest-bar-text p {
  color: #DEE2E6;
  margin-bottom: 0;
}

.interest-bar-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .interest-bar .container {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 640px) {
  .interest-bar {
    padding: 2rem 0;
  }
  .interest-bar-actions {
    width: 100%;
    justify-content: center;
  }
  .interest-bar-actions .btn {
    flex: 1;
    min-width: 0;
  }
}
.cta-section {
  background: linear-gradient(135deg, #2C3E50 0%, rgb(62.0967741935, 87.5, 112.9032258065) 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(27, 94, 32, 0.1) 0%, transparent 50%);
  animation: rotate 20s linear infinite;
  z-index: 0;
}
.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-content {
  text-align: center;
  position: relative;
}
.cta-content h2 {
  color: #FFFFFF;
}
.cta-content p {
  color: #E9ECEF;
  font-size: 18px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1024px) {
  .cta-content p {
    font-size: 1.125rem;
    max-width: 600px;
  }
}
@media (max-width: 640px) {
  .cta-content h2 {
    font-size: 1.75rem;
  }
  .cta-content p {
    font-size: 1rem;
    max-width: 100%;
  }
}

.page-hero + .contact-methods-section {
  padding-top: 3rem;
}
@media (max-width: 1024px) {
  .page-hero + .contact-methods-section {
    padding-top: 2rem;
  }
}

.contact-methods-section {
  padding-bottom: 0;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 640px) {
  .contact-methods {
    grid-template-columns: 1fr;
  }
}

.contact-method {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem;
  background: #FFFFFF;
  border: 1px solid #E9ECEF;
  border-radius: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.1s ease;
}
.contact-method:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  border-color: #1B5E20;
}
.contact-method .contact-method-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.5rem;
  color: #FFFFFF;
  background: #1B5E20;
  margin-bottom: 1.5rem;
}
.contact-method h3 {
  color: #2C3E50;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.contact-method .contact-method-value {
  color: #1B5E20;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}
.contact-method .contact-method-sub {
  color: #6C757D;
  font-size: 14px;
  margin-top: 0.25rem;
}

.contact-info-wrapper .info-content h4 {
  margin-bottom: 0.25rem;
}
.contact-info-wrapper .info-content p {
  margin: 0;
}
.contact-info-wrapper .info-content a {
  color: #1B5E20;
  font-weight: 600;
}
.contact-info-wrapper .info-content a:hover {
  color: #27AE60;
}

.product-top-section {
  padding: 140px 0 4rem;
}
@media (max-width: 1024px) {
  .product-top-section {
    padding: 120px 0 3rem;
  }
}
@media (max-width: 640px) {
  .product-top-section {
    padding: 100px 0 2rem;
  }
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 1024px) {
  .product-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.pg-viewport {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  cursor: zoom-in;
  background: #212529;
}

.pg-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transition: opacity 0.1s ease;
}
.pg-slide.is-active {
  opacity: 1;
}

.pg-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: #FFFFFF;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.1s ease;
}
.pg-arrow:hover {
  background: rgba(0, 0, 0, 0.75);
}
.pg-arrow.pg-prev {
  left: 1.5rem;
}
.pg-arrow.pg-next {
  right: 1.5rem;
}
@media (max-width: 640px) {
  .pg-arrow {
    width: 38px;
    height: 38px;
  }
}

.pg-zoom-hint {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: #FFFFFF;
  pointer-events: none;
}

.pg-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  padding: 0.35rem 0.85rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: #FFFFFF;
  font-family: "Montserrat", sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  pointer-events: none;
}

.product-summary .product-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #6C757D;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.product-summary .product-back:hover {
  color: #1B5E20;
}
.product-summary h1 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media (max-width: 640px) {
  .product-summary h1 {
    font-size: 1.75rem;
  }
}
.product-summary .offer-price {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.product-summary .product-summary-text {
  color: #495057;
  margin-bottom: 2rem;
}

.product-description-section {
  padding-top: 0;
  padding-bottom: 8rem;
}
@media (max-width: 1024px) {
  .product-description-section {
    padding-bottom: 4rem;
  }
}

.product-description {
  max-width: 900px;
  margin: 0 auto 4rem;
}
.product-description h2 {
  font-size: 2rem;
}
@media (max-width: 640px) {
  .product-description h2 {
    font-size: 1.5rem;
  }
}
.product-description h3 {
  margin-top: 3rem;
}
.product-description p {
  color: #495057;
}

.product-specs-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.product-spec-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.spec-card {
  flex: 0 1 calc((100% - 2rem * 2) / 3);
  min-width: 300px;
  background: #FFFFFF;
  border: 1px solid #E9ECEF;
  border-radius: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}
@media (max-width: 640px) {
  .spec-card {
    flex-basis: 100%;
    min-width: 0;
  }
}
.spec-card .spec-card-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #E9ECEF;
}
.spec-card .spec-card-head i {
  color: #1B5E20;
  font-size: 1.25rem;
}
.spec-card .spec-card-head h4 {
  margin: 0;
  font-size: 1.125rem;
}
.spec-card ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.spec-card ul li {
  position: relative;
  padding-left: 1.75rem;
  color: #495057;
  line-height: 1.5;
}
.spec-card ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0.15rem;
  font-size: 0.8125rem;
  color: #1B5E20;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.92);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.1s ease, visibility 0.1s ease;
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 4px;
  cursor: default;
}

.lightbox-close {
  position: fixed;
  top: 24px;
  right: 28px;
  z-index: 2;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.1s ease;
}
.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lightbox-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.1s ease;
}
.lightbox-arrow:hover {
  background: rgba(255, 255, 255, 0.25);
}
.lightbox-arrow.lightbox-prev {
  left: 28px;
}
.lightbox-arrow.lightbox-next {
  right: 28px;
}
@media (max-width: 640px) {
  .lightbox-arrow {
    width: 44px;
    height: 44px;
    font-size: 1.25rem;
  }
  .lightbox-arrow.lightbox-prev {
    left: 12px;
  }
  .lightbox-arrow.lightbox-next {
    right: 12px;
  }
}

.lightbox-counter {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: #FFFFFF;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 1px;
}

body.lightbox-open {
  overflow: hidden;
}

.design-big-photo {
  width: 100%;
  aspect-ratio: 1280/650;
  overflow: hidden;
  margin-bottom: 4rem;
}
.design-big-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.design-photo-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 4rem;
}
.design-photo-row img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1024px) {
  .design-photo-row {
    gap: 1.5rem;
  }
  .design-photo-row img {
    height: 280px;
  }
}
@media (max-width: 640px) {
  .design-photo-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .design-photo-row img {
    height: 220px;
  }
}

.design-photo-row--two {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 640px) {
  .design-photo-row--two {
    grid-template-columns: 1fr;
  }
}

.design-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 800px;
  margin: 3rem auto;
  text-align: left;
}
.design-list li {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: #2C3E50;
  font-weight: 600;
}
.design-list li i {
  color: #1B5E20;
  font-size: 1.25rem;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .design-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.page-hero--offer {
  padding-bottom: 4rem;
}
@media (max-width: 1024px) {
  .page-hero--offer {
    padding-bottom: 3rem;
  }
}
@media (max-width: 640px) {
  .page-hero--offer {
    padding-bottom: 2rem;
  }
}

.offer-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 1024px) {
  .offer-block {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (min-width: 1025px) {
  .offer-block--reverse .offer-content {
    order: -1;
  }
}

.offer-photo {
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.offer-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.offer-content h3 {
  margin-bottom: 1rem;
}
.offer-content .btn {
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
}

.offer-specs {
  color: #6C757D;
  font-size: 1.0625rem;
  margin-bottom: 2rem;
}

.offer-price {
  font-family: "Montserrat", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #1B5E20;
  margin-bottom: 2rem;
}
@media (max-width: 640px) {
  .offer-price {
    font-size: 1.5rem;
  }
}

.offer-sold-label {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #FFFFFF;
  background: linear-gradient(135deg, #2C3E50 0%, rgb(62.0967741935, 87.5, 112.9032258065) 100%);
  padding: 0.5rem 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group label {
  font-weight: 600;
  color: #2C3E50;
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 1.5rem;
  border: 2px solid #DEE2E6;
  border-radius: 8px;
  font-family: "Raleway", sans-serif;
  transition: border-color 0.1s ease;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #1B5E20;
}

.contact-info-card {
  background: #ECF0F1;
  padding: 3rem;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-item {
  display: flex;
  gap: 1.5rem;
}

.info-icon {
  font-size: 1.5rem;
  color: #1B5E20;
  width: 40px;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .contact-info-card {
    padding: 2rem;
  }
}
@media (max-width: 640px) {
  .contact-grid {
    gap: 2rem;
  }
  .contact-form {
    gap: 1.5rem;
  }
  .contact-info-card {
    padding: 1.5rem;
    gap: 1.5rem;
  }
  .info-icon {
    font-size: 1.25rem;
    width: 35px;
  }
}

/*# sourceMappingURL=app.css.map*/