:root {
  --primary-green: #2d5a27;
  --secondary-green: #4a7c59;
  --light-green: #8fbc8f;
  --accent-green: #90c695;
  --dark-green: #1e3f20;
  --cream: #f8f9fa;
}

* {
  font-family: "Prompt", sans-serif;
}

body {
  background-color: var(--cream);
}

/* Navigation */
.navbar {
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.8rem;
  color: white !important;
  transition: transform 0.3s ease;
}

.navbar-brand:hover {
  transform: scale(1.05);
}

.nav-link {
  color: white !important;
  font-weight: 500;
  transition: all 0.3s ease;
  margin: 0 10px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-green) !important;
  transform: translateY(-2px);
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--light-green), var(--accent-green));
  padding: 4rem 0 2rem 0;
  margin-top: 76px;
  color: white;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><radialGradient id="a" cx="50%" cy="0%" r="50%"><stop offset="0%" stop-color="rgba(255,255,255,0.1)"/><stop offset="100%" stop-color="rgba(255,255,255,0)"/></radialGradient></defs><rect width="100" height="20" fill="url(%23a)"/></svg>')
    repeat-x;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}

.breadcrumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 0.5rem 1rem;
}

.breadcrumb-item a {
  color: white;
  text-decoration: none;
}

.breadcrumb-item.active {
  color: var(--cream);
}

/* Contact Cards */
.contact-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-green), var(--accent-green));
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(74, 124, 89, 0.15);
}

.contact-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--secondary-green),
    var(--accent-green)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  margin-bottom: 1rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.contact-title {
  color: var(--primary-green);
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.contact-info {
  color: #666;
  line-height: 1.6;
}

.contact-info strong {
  color: var(--secondary-green);
}

/* Contact Form */
.contact-form {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-green), var(--accent-green));
}

.form-label {
  color: var(--primary-green);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-control {
  border: 2px solid var(--light-green);
  border-radius: 15px;
  padding: 12px 20px;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}

.form-control:focus {
  border-color: var(--secondary-green);
  box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.1);
  transform: scale(1.02);
}

.btn-submit {
  background: linear-gradient(
    135deg,
    var(--secondary-green),
    var(--accent-green)
  );
  border: none;
  border-radius: 25px;
  padding: 15px 40px;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(74, 124, 89, 0.3);
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
}

/* Map Container */
.map-container {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  position: relative;
}

.map-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-green), var(--accent-green));
  z-index: 10;
}

.map-frame {
  width: 100%;
  height: 400px;
  border: none;
  filter: grayscale(20%);
  transition: filter 0.3s ease;
}

.map-frame:hover {
  filter: grayscale(0%);
}

/* Working Hours */
.working-hours {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.working-hours::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-green), var(--accent-green));
}

.hours-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  transition: all 0.3s ease;
}

.hours-item:hover {
  background: rgba(143, 188, 143, 0.1);
  padding-left: 10px;
}

.hours-item:last-child {
  border-bottom: none;
}

.day {
  color: var(--primary-green);
  font-weight: 600;
}

.time {
  color: var(--secondary-green);
  font-weight: 500;
}

.time.closed {
  color: #e74c3c;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 1rem;
}

.social-link {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--secondary-green),
    var(--accent-green)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 20px rgba(74, 124, 89, 0.3);
  color: white;
}

.social-link.facebook:hover {
  background: #3b5998;
}

.social-link.line:hover {
  background: #00c300;
}

.social-link.instagram:hover {
  background: #e4405f;
}

.social-link.youtube:hover {
  background: #ff0000;
}

/* Section Titles */
.section-title {
  color: var(--primary-green);
  font-weight: 700;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--secondary-green),
    var(--accent-green)
  );
  border-radius: 2px;
}

/* Animations */
.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-card:nth-child(1) {
  animation-delay: 0.1s;
}

.contact-card:nth-child(2) {
  animation-delay: 0.2s;
}

.contact-card:nth-child(3) {
  animation-delay: 0.3s;
}

.contact-card:nth-child(4) {
  animation-delay: 0.4s;
}

/* Footer */
.footer {
  background: var(--dark-green);
  color: white;
  padding: 3rem 0 1rem 0;
}

.footer h5 {
  color: var(--accent-green);
  margin-bottom: 1rem;
}

.footer a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--accent-green);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-header {
    padding: 2rem 0 1rem 0;
  }

  .contact-card,
  .contact-form,
  .working-hours {
    padding: 1.5rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .map-frame {
    height: 300px;
  }
}

/* Loading Animation for Map */
.map-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--secondary-green);
  font-size: 1.2rem;
  z-index: 5;
}

.spinner-border-sm {
  width: 20px;
  height: 20px;
  border-width: 2px;
}
