/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Fix for TrustIndex widget positioning */
#trustindex-container,
.trustindex-container,
[class*="trustindex"],
[id*="trustindex"] {
  position: static !important;
  transform: none !important;
  left: auto !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  z-index: auto !important;
}

:root {
  --gradient-color-1: #8e8e93;
  --gradient-color-2: #1b4332;
  --gradient-color-3: #40916c;
  --gradient-color-4: #f1f3f4;
  --gradient-angle: -45deg;
  --animation-speed: 15s;
  --background-size: 400%;
}

body {
  font-family: "Montserrat", "Inter", sans-serif;
  background: linear-gradient(
    var(--gradient-angle),
    var(--gradient-color-1),
    var(--gradient-color-2),
    var(--gradient-color-3),
    var(--gradient-color-4)
  );
  background-size: var(--background-size) var(--background-size);
  animation: gradient var(--animation-speed) ease infinite;
  min-height: 100vh;
  color: white;
  line-height: 1.6;
  transition: all 1s ease;
}

/* Gradient Animation */
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Button Gradient Animation */
@keyframes buttonGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Fade Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  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: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Animation Classes */
.animate-on-scroll {
  animation: fadeInUp 0.8s ease-out;
}

.animate-slide-left {
  animation: fadeInLeft 0.8s ease-out;
}

.animate-slide-right {
  animation: fadeInRight 0.8s ease-out;
}

.animate-scale {
  animation: scaleIn 0.8s ease-out;
}

/* Typography */
.heading-text {
  font-family: "Luckiest Guy", "Paytone One", cursive;
  letter-spacing: 0.02em;
}

.professional-text {
  font-family: "Inter", sans-serif;
  letter-spacing: 0.01em;
}

.brand-text {
  font-family: "Croissant One", cursive;
}

/* Glass Button Styles */
.glass-button {
  position: relative;
  padding: 12px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  min-width: fit-content;
  overflow: hidden;
}

.glass-button:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.glass-button.primary {
  background: linear-gradient(-45deg, #40916c, #52b788, #74c69d, #95d5b2);
  background-size: 400% 400%;
  animation: buttonGradient 10s ease infinite;
  border-color: rgba(64, 145, 108, 0.3);
}

.glass-button.secondary {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.glass-button.w-full {
  width: 100%;
}

.button-content {
  display: flex;
  align-items: center;
  gap: 8px;
}

.button-icon {
  width: 16px;
  height: 16px;
}

/* Navigation Styles */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-family: "Raleway", "Nunito Sans", sans-serif;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.logo-icon {
  position: relative;
}

.logo-svg {
  color: #4f46e5;
  width: 32px;
  height: 32px;
}

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

.brand-text {
  font-size: 20px;
  font-weight: 700;
  color: #374151;
  font-family: "Raleway", sans-serif;
  letter-spacing: -0.5px;
}

.shine-effect {
  position: relative;
  overflow: hidden;
}

.shine-effect::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 70%
  );
  transition: left 0.6s ease;
}

.shine-effect:hover::before {
  left: 100%;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  position: relative;
  padding: 8px 16px;
  color: #374151;
  font-weight: 600;
  transition: all 0.3s ease;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-family: "Raleway", sans-serif;
  letter-spacing: 0.3px;
}

.nav-link:hover,
.nav-link.active {
  color: #059669;
}

.nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #40916c 0%, #2f7d32 100%);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 1px;
}

.nav-link:hover::before,
.nav-link.active::before {
  width: 80%;
}

/* Dropdown Styles */
.dropdown-container {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}

.dropdown-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.dropdown-container.active .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
  width: 224px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 8px 0;
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.dropdown-container.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 12px 16px;
  color: #374151;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 14px;
}

.dropdown-item:hover {
  color: #059669;
  background: rgba(5, 150, 105, 0.1);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 6px;
}

.hamburger-line {
  display: block;
  height: 2px;
  width: 24px;
  background: #374151;
  transition: all 0.3s ease;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
  display: block;
}

.mobile-menu-content {
  padding: 16px 0;
}

.mobile-nav-link {
  display: block;
  width: 100%;
  text-align: left;
  padding: 12px 24px;
  color: #374151;
  background: none;
  border: none;
  transition: all 0.2s ease;
  font-size: 16px;
  cursor: pointer;
}

.mobile-nav-link:hover {
  color: #059669;
  background: rgba(5, 150, 105, 0.1);
}

.mobile-cta {
  padding: 16px 24px 0;
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 40;
}

.mobile-overlay.active {
  display: block;
}

/* Main Content */
.main-content {
  padding-top: 80px;
}

/* Hero Section */
.hero-section {
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 16px 80px;
  position: relative;
}

.hero-content {
  max-width: 1024px;
  width: 100%;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 7rem);
  font-weight: bold;
  color: white;
  margin-bottom: 24px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  line-height: 1.1;
  animation: scaleIn 0.8s ease-out;
}

.hero-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 3vw, 1.25rem);
  margin-bottom: 32px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.highlight {
  color: #6ee7b7;
  font-weight: 600;
}

.hero-background {
  position: relative;
  animation: fadeInUp 0.8s ease-out 0.4s both;
  margin-bottom: 32px;
  text-align: center;
  padding: 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-background-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.contact-form-overlay {
  position: relative;
  z-index: 2;
  max-width: 448px;
  width: 90%;
  margin: 0 auto;
}

.hero-caption {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-top: 16px;
  font-style: italic;
}

.hero-subtext {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  margin-bottom: 32px;
  line-height: 1.6;
  animation: fadeInLeft 0.8s ease-out 0.6s both;
}

.hero-cta {
  animation: fadeInUp 0.8s ease-out 0.8s both;
  margin-bottom: 32px;
}

.hero-quote {
  color: #6ee7b7;
  font-size: clamp(1.1rem, 3vw, 1.25rem);
  font-weight: 500;
  font-style: italic;
  animation: fadeInRight 0.8s ease-out 1s both;
}

/* Hero Address Section */
.hero-address-section {
  padding: 20px 16px 40px;
  animation: scaleIn 0.8s ease-out;
  margin-top: -20px;
}

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

.address-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: white;
}

.address-image {
  order: 2;
}

.address-img {
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 400px;
}

.address-content {
  order: 1;
  color: white;
}

.address-title {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: bold;
  margin-bottom: 24px;
  line-height: 1.2;
}

.address-form {
  margin-bottom: 24px;
}

.address-input-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.address-input {
  flex: 1;
  padding: 12px 16px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 16px;
}

.address-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.address-input:focus {
  outline: none;
  border-color: #40916c;
  box-shadow: 0 0 0 3px rgba(64, 145, 108, 0.2);
}

.address-subtext {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
}

.rating-display {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.rating-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border-radius: 8px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stars {
  color: #fde047;
  font-size: 14px;
}

.rating-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-title {
  font-weight: 600;
  color: white;
  margin-bottom: 8px;
}

.testimonial-stat {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stat-icon {
  font-size: 24px;
}

.stat-text {
  color: rgba(255, 255, 255, 0.8);
}

/* Services Section */
.services-section {
  padding: 80px 16px;
  margin-top: 40px;
}

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

.section-title {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 300;
  color: white;
  text-align: center;
  margin-bottom: 16px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  animation: fadeInLeft 0.8s ease-out;
}

.section-description {
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  margin-bottom: 64px;
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
  line-height: 1.6;
  animation: fadeInRight 0.8s ease-out;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  animation: fadeInUp 0.8s ease-out;
  max-width: 800px;
  margin: 0 auto;
}

.benefit-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border-radius: 12px;
  padding: 20px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 140px;
}

.benefit-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
  width: 40px;
  height: 40px;
  color: #6ee7b7;
  margin-bottom: 12px;
  flex-shrink: 0;
}

.benefit-content {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  font-size: 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.benefit-content strong {
  color: #6ee7b7;
  font-weight: 600;
  margin-bottom: 4px;
  display: block;
}

/* Process Section */
.process-section {
  padding: 80px 16px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(5px);
}

.process-container {
  max-width: 1024px;
  margin: 0 auto;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.process-step {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: fadeInUp 0.8s ease-out;
}

.step-title {
  font-size: 20px;
  font-weight: bold;
  color: #6ee7b7;
  margin-bottom: 12px;
}

.step-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.process-cta {
  text-align: center;
  margin-top: 48px;
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.contact-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  margin-bottom: 24px;
  line-height: 1.6;
}

.phone-link {
  color: #6ee7b7;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.phone-link:hover {
  color: #a7f3d0;
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 16px;
  margin-top: 40px;
  position: relative;
  overflow: visible;
  z-index: 1;
}

.testimonials-section * {
  position: static !important;
}

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

.testimonials-header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.testimonials-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.testimonial-icon {
  width: 64px;
  height: auto;
  object-fit: contain;
}

.professional-photo {
  border-radius: 50%;
  border: 3px solid #40916c;
  box-shadow: 0 4px 20px rgba(64, 145, 108, 0.3);
}

.trustindex-section {
  padding: 40px 16px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(5px);
}

.trustindex-widget {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  position: static;
  z-index: 1;
  overflow: visible;
  padding: 20px;
}

.trustindex-widget script,
.trustindex-widget iframe,
.trustindex-widget > div {
  position: static !important;
  transform: none !important;
  margin: 0 auto !important;
}

.trustindex-secure-widget {
  max-width: 1000px;
  margin: 20px auto 0;
  text-align: center;
  position: static;
  z-index: 1;
  overflow: visible;
  padding: 20px;
}

.trustindex-secure-widget script,
.trustindex-secure-widget iframe,
.trustindex-secure-widget > div {
  position: static !important;
  transform: none !important;
  margin: 0 auto !important;
}

.testimonial-card {
  position: relative;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  font-family: "Lora", serif;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: -35px;
  right: -35px;
  bottom: -35px;
  left: -35px;
  background: inherit;
  filter: blur(20px);
  z-index: -1;
}

.testimonial-rating {
  text-align: center;
  margin-bottom: 16px;
}

.rating-img {
  width: 80px;
  height: auto;
  margin: 0 auto;
  display: block;
}

.testimonial-text {
  color: white;
  font-style: italic;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.testimonial-footer {
  padding-top: 16px;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.9);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  background: #059669;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}

.author-info {
  flex: 1;
}

.author-name {
  font-size: 18px;
  font-style: normal;
}

.author-location {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

/* About Owner Section */
.about-owner-section {
  padding: 80px 16px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.about-owner-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-owner-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: center;
}

.owner-photo-container {
  text-align: center;
}

.owner-photo {
  width: 280px;
  height: 280px;
  border-radius: 20px;
  object-fit: cover;
  border: 4px solid #40916c;
  box-shadow: 0 20px 60px rgba(64, 145, 108, 0.3);
  margin: 0 auto 24px;
  display: block;
}

.owner-credentials {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.credential-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border-radius: 12px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 14px;
  font-weight: 500;
}

.credential-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.owner-content {
  color: white;
}

.owner-name {
  font-size: 32px;
  font-weight: 700;
  color: #6ee7b7;
  margin-bottom: 8px;
  font-family: "Raleway", sans-serif;
}

.owner-title {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  font-weight: 500;
}

.owner-story {
  margin-bottom: 40px;
}

.owner-story p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 16px;
}

.owner-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  color: #6ee7b7;
}

.stat-icon-img {
  width: 24px;
  height: 24px;
  color: #6ee7b7;
  flex-shrink: 0;
}

.stat-content {
  flex: 1;
}

.stat-number {
  font-size: 24px;
  font-weight: 700;
  color: #6ee7b7;
  line-height: 1;
  font-family: "Raleway", sans-serif;
}

.stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.owner-cta {
  margin-top: 32px;
}

.owner-cta .glass-button {
  font-size: 16px;
  padding: 16px 32px;
}

.owner-cta .button-icon {
  width: 20px;
  height: 20px;
}

/* Location Section */
.location-section {
  padding: 80px 16px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(5px);
}

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

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.location-content {
  color: white;
  animation: fadeInLeft 0.8s ease-out;
}

.location-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 16px;
}

.location-description {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  line-height: 1.6;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border-radius: 8px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-icon {
  width: 32px;
  height: 32px;
}

.contact-detail {
  color: white;
}

.map-container {
  animation: fadeInRight 0.8s ease-out;
}

.map-container > div {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border-radius: 12px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Phone CTA Button */
.phone-cta {
  font-size: 14px;
  white-space: nowrap;
}

.phone-cta .button-content {
  display: flex;
  align-items: center;
  gap: 6px;
}

.phone-cta .button-icon {
  width: 16px;
  height: 16px;
}

/* Contact Section */
.contact-section {
  padding: 80px 16px;
}

.contact-header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form-container {
  position: relative;
  z-index: 2;
  max-width: 448px;
  margin: 0 auto 64px;
}

.contact-form-overlay {
  position: relative;
  z-index: 2;
  max-width: 448px;
  margin: 0 auto 64px;
}

.form-background {
  position: relative;
}

.background-shape {
  position: absolute;
  width: 192px;
  height: 192px;
  border-radius: 50%;
  opacity: 0.3;
  filter: blur(60px);
}

.shape-1 {
  top: -80px;
  left: -80px;
  background: linear-gradient(135deg, #40916c, #52b788);
}

.shape-2 {
  bottom: -80px;
  right: -80px;
  background: linear-gradient(135deg, #8e8e93, #6b7280);
}

.contact-form {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.2);
}

.form-content * {
  font-family: "Inter", sans-serif;
  color: white;
  letter-spacing: 0.5px;
}

.form-title {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 24px;
}

.form-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-bottom: 24px;
}

.form-label {
  display: block;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.form-label:first-of-type {
  margin-top: 0;
}

.form-input,
.form-select,
.form-textarea {
  display: block;
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 12px 16px;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 300;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
  color: white;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(64, 145, 108, 0.6);
  box-shadow: 0 0 20px rgba(64, 145, 108, 0.3);
  outline: none;
}

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

.form-select {
  color: #374151;
}

.form-submit {
  width: 100%;
  margin-top: 32px;
}

.trust-indicators {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  opacity: 0.8;
}

.trust-badge {
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.detail-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.detail-title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-disclaimer {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  margin-top: 16px;
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 448px;
  margin: 0 auto;
}

.contact-info-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-detail {
  color: white;
}

.detail-title {
  font-weight: 600;
  margin-bottom: 8px;
}

.detail-text {
  color: rgba(255, 255, 255, 0.8);
}

.contact-cta {
  margin-top: 32px;
  text-align: center;
}

.contact-cta .glass-button {
  font-size: 16px;
  padding: 16px 32px;
}

.contact-cta .button-icon {
  width: 20px;
  height: 20px;
}

/* Footer Section */
.footer-section {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 16px;
  margin-top: 80px;
}

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

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.footer-brand-text {
  font-size: 18px;
  font-weight: 600;
  color: white;
  font-family: "Raleway", sans-serif;
}

.footer-text {
  color: rgba(255, 255, 255, 0.7);
}

.footer-text p {
  margin: 4px 0;
  font-size: 14px;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(16px);
  color: white;
  padding: 24px;
  z-index: 50;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.cookie-banner.hidden {
  transform: translateY(100%);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.cookie-text {
  flex: 1;
}

.cookie-title {
  font-weight: 600;
  margin-bottom: 8px;
}

.cookie-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 40;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.back-to-top-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.back-to-top:hover .back-to-top-icon {
  transform: translateY(-2px);
}

/* Notification */
.notification {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  color: white;
  padding: 16px 32px;
  border-radius: 12px;
  z-index: 50;
  pointer-events: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.notification.visible {
  opacity: 1;
  visibility: visible;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .address-input-group {
    flex-direction: column;
  }

  .location-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-owner-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .owner-photo {
    width: 200px;
    height: 200px;
  }

  .owner-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero-section {
    padding: 20px 16px 60px;
  }

  .hero-background {
    min-height: 400px;
  }

  .hero-background-img {
    max-width: 100%;
  }

  .contact-form-overlay {
    width: 95%;
  }

  .phone-cta span {
    font-size: 12px;
  }

  .footer-content {
    gap: 16px;
  }

  .footer-logo {
    flex-direction: column;
    gap: 8px;
  }

  .cookie-content {
    flex-direction: column;
    gap: 16px;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}

@media (min-width: 640px) {
  .address-input-group {
    flex-direction: row;
  }

  .cookie-content {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .location-grid {
    grid-template-columns: 1fr 1fr;
  }
}
