@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Montserrat:wght@400;500;600;700&family=Playfair+Display:wght@400;700&display=swap');
.strip[data-id="03fd72"] {
  --section-id: "03fd72";
  --storage-url: "https://test-bbebjicp.praweb.cz/_section/03fd72";
  --public-url: "https://test-bbebjicp.praweb.cz/_section/03fd72";
  /* Mobile Toggle */
  /* Mobile menu open state */
}
.strip[data-id="03fd72"] .main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background-color: rgba(255, 253, 240, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(90, 99, 69, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}
.strip[data-id="03fd72"] .header-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  height: 90px;
  transition: height 0.3s ease;
}
.strip[data-id="03fd72"] .logo-zone {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.strip[data-id="03fd72"] .logo-zone:hover {
  transform: scale(1.02);
}
.strip[data-id="03fd72"] .logo-img {
  height: 55px;
  width: 55px;
  object-fit: contain;
  border-radius: 50%;
}
.strip[data-id="03fd72"] .logo-text {
  display: flex;
  flex-direction: column;
}
.strip[data-id="03fd72"] .logo-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #4A5235; /* Darker sage for better contrast */
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.strip[data-id="03fd72"] .logo-subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  color: #5A6345;
  opacity: 0.85;
  margin: 2px 0 0 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.strip[data-id="03fd72"] .nav-zone {
  display: flex;
  gap: 35px;
  flex: 2;
  justify-content: center;
}
.strip[data-id="03fd72"] .nav-link {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #4A5235;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 0;
}
.strip[data-id="03fd72"] .nav-link:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #B38B45; /* Darker gold */
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.strip[data-id="03fd72"] .nav-link:hover {
  color: #B38B45;
}
.strip[data-id="03fd72"] .nav-link:hover:after {
  width: 100%;
}
.strip[data-id="03fd72"] .cta-zone {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
.strip[data-id="03fd72"] .cta-button {
  font-family: "Montserrat", sans-serif;
  background-color: #B38B45;
  color: #FFFFFF;
  padding: 14px 28px;
  border-radius: 50px; /* Rounded pill style */
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(179, 139, 69, 0.2);
}
.strip[data-id="03fd72"] .cta-button:hover {
  background-color: #8E6E36;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(179, 139, 69, 0.3);
}
.strip[data-id="03fd72"] .mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  background: rgba(90, 99, 69, 0.05);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  z-index: 10001;
  transition: background 0.3s ease;
}
.strip[data-id="03fd72"] .mobile-toggle:hover {
  background: rgba(90, 99, 69, 0.1);
}
.strip[data-id="03fd72"] .mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #4A5235;
  transition: 0.3s cubic-bezier(0.68, -0.6, 0.32, 1.6);
  margin: 2.5px 0;
}
@media (max-width: 1100px) {
  .strip[data-id="03fd72"] .header-container {
    height: 80px;
    padding: 0 25px;
  }
  .strip[data-id="03fd72"] .nav-zone {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: #FFFDF0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
  }
  .strip[data-id="03fd72"] .nav-zone.active {
    display: flex;
    opacity: 1;
    pointer-events: all;
  }
  .strip[data-id="03fd72"] .nav-link {
    font-size: 18px;
  }
  .strip[data-id="03fd72"] .mobile-toggle {
    display: flex;
  }
  .strip[data-id="03fd72"] .cta-zone {
    display: none;
  }
}
.strip[data-id="03fd72"] .mobile-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.strip[data-id="03fd72"] .mobile-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}
.strip[data-id="03fd72"] .mobile-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}.strip[data-id="6ca711"] {
  --section-id: "6ca711";
  --storage-url: "https://test-bbebjicp.praweb.cz/_section/6ca711";
  --public-url: "https://test-bbebjicp.praweb.cz/_section/6ca711";
  /* Decorative background circle */
}
.strip[data-id="6ca711"] .hero-section {
  background-color: #f9f7f2;
  background-image: radial-gradient(#e5e1d5 0.8px, transparent 0.8px);
  background-size: 24px 24px;
  padding: 140px 0 100px 0; /* Increased top padding for header breathing room */
  overflow: hidden;
  position: relative;
}
.strip[data-id="6ca711"] .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.strip[data-id="6ca711"] .hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 80px;
}
.strip[data-id="6ca711"] .text-content {
  position: relative;
  z-index: 2;
}
.strip[data-id="6ca711"] .leaf-icon-wrapper {
  color: #87a96b;
  font-size: 32px;
  margin-bottom: 20px;
  display: inline-block;
}
.strip[data-id="6ca711"] .hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(42px, 5.5vw, 68px);
  color: #3a4d3f; /* Even darker sage for maximum readability */
  line-height: 1.1;
  margin: 0 0 32px 0;
  font-weight: 700;
}
.strip[data-id="6ca711"] .hero-description {
  font-family: "Lato", sans-serif;
  font-size: 19px;
  color: #5a6b5d;
  line-height: 1.8;
  margin-bottom: 48px;
  max-width: 560px;
}
.strip[data-id="6ca711"] .hero-description p {
  margin: 0;
}
.strip[data-id="6ca711"] .button-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.strip[data-id="6ca711"] .btn {
  display: inline-block;
  padding: 20px 40px;
  border-radius: 12px;
  text-decoration: none;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-align: center;
  letter-spacing: 0.5px;
}
.strip[data-id="6ca711"] .btn-primary {
  background-color: #a67c37;
  color: #ffffff;
  border: 2px solid #a67c37;
  box-shadow: 0 10px 20px -10px rgba(166, 124, 55, 0.5);
}
.strip[data-id="6ca711"] .btn-primary:hover {
  background-color: #8e682d;
  border-color: #8e682d;
  transform: translateY(-4px);
  box-shadow: 0 15px 25px -10px rgba(166, 124, 55, 0.6);
}
.strip[data-id="6ca711"] .btn-secondary {
  background-color: transparent;
  color: #3a4d3f;
  border: 2px solid #87a96b;
}
.strip[data-id="6ca711"] .btn-secondary:hover {
  background-color: #87a96b;
  color: #ffffff;
  transform: translateY(-4px);
}
.strip[data-id="6ca711"] .image-content {
  width: 100%;
  position: relative;
}
.strip[data-id="6ca711"] .image-wrapper {
  width: 100%;
  position: relative;
  z-index: 1;
}
.strip[data-id="6ca711"] .image-wrapper img,
.strip[data-id="6ca711"] .image-wrapper generated-img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1.2;
  object-fit: cover;
  border-radius: 180px 40px 180px 40px;
  display: block;
  box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
}
.strip[data-id="6ca711"] .image-content::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -40%);
  width: 120%;
  height: 100%;
  background: radial-gradient(circle, rgba(135, 169, 107, 0.1) 0%, transparent 70%);
  z-index: 0;
  border-radius: 50%;
}
@media (max-width: 1024px) {
  .strip[data-id="6ca711"] .hero-grid {
    gap: 50px;
  }
  .strip[data-id="6ca711"] .hero-title {
    font-size: 48px;
  }
}
@media (max-width: 768px) {
  .strip[data-id="6ca711"] .hero-section {
    padding: 80px 0 60px 0;
  }
  .strip[data-id="6ca711"] .hero-grid {
    grid-template-columns: 100%;
    gap: 60px;
    text-align: center;
  }
  .strip[data-id="6ca711"] .image-content {
    order: -1;
  }
  .strip[data-id="6ca711"] .image-wrapper img,
  .strip[data-id="6ca711"] .image-wrapper generated-img {
    aspect-ratio: 1/1;
    border-radius: 120px 30px 120px 30px;
    max-width: 450px;
    margin: 0 auto;
  }
  .strip[data-id="6ca711"] .hero-description {
    margin: 0 auto 40px auto;
  }
  .strip[data-id="6ca711"] .button-group {
    justify-content: center;
  }
}.strip[data-id="3b697d"] {
  --section-id: "3b697d";
  --storage-url: "https://test-bbebjicp.praweb.cz/_section/3b697d";
  --public-url: "https://test-bbebjicp.praweb.cz/_section/3b697d";
}
.strip[data-id="3b697d"] .specialization-section {
  background-color: #FAF9F6;
  background-image: radial-gradient(#e5e3de 1px, transparent 1px);
  background-size: 40px 40px;
  padding: 100px 20px;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
}
.strip[data-id="3b697d"] .specialization-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #D4AF37, transparent);
  opacity: 0.3;
}
.strip[data-id="3b697d"] .container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.strip[data-id="3b697d"] .header-content {
  text-align: center;
  margin-bottom: 70px;
}
.strip[data-id="3b697d"] .section-title {
  font-family: "Playfair Display", serif;
  color: #8A9A5B;
  font-size: 48px;
  margin: 0 0 25px 0;
  line-height: 1.2;
}
.strip[data-id="3b697d"] .section-intro {
  font-family: "Montserrat", sans-serif;
  color: #555555;
  font-size: 18px;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 700px;
}
.strip[data-id="3b697d"] .cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 70px;
}
.strip[data-id="3b697d"] .feature-card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 35px hsla(0, 0%, 0%, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid #eeeeee;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  position: relative;
}
.strip[data-id="3b697d"] .feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid #D4AF37;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 2;
}
.strip[data-id="3b697d"] .feature-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px hsla(0, 0%, 0%, 0.1);
}
.strip[data-id="3b697d"] .feature-card:hover::after {
  opacity: 1;
}
.strip[data-id="3b697d"] .image-wrapper {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}
.strip[data-id="3b697d"] .image-wrapper img,
.strip[data-id="3b697d"] .image-wrapper generated-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: block;
}
.strip[data-id="3b697d"] .feature-card:hover .image-wrapper img,
.strip[data-id="3b697d"] .feature-card:hover .image-wrapper generated-img {
  transform: scale(1.08);
}
.strip[data-id="3b697d"] .card-content {
  padding: 35px 25px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.strip[data-id="3b697d"] .icon-wrapper {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  width: 48px;
  background: #FAF9F6;
  border-radius: 50%;
  transition: background 0.3s ease;
}
.strip[data-id="3b697d"] .feature-card:hover .icon-wrapper {
  background: #fdfaf0;
}
.strip[data-id="3b697d"] .card-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #C18A8A; /* Darkened powder pink for better contrast */
  font-size: 20px;
  text-transform: uppercase;
  margin: 0 0 15px 0;
  letter-spacing: 2px;
}
.strip[data-id="3b697d"] .card-desc {
  font-family: "Montserrat", sans-serif;
  color: #666666;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}
.strip[data-id="3b697d"] .footer-content {
  text-align: center;
}
.strip[data-id="3b697d"] .delivery-info {
  font-family: "Montserrat", sans-serif;
  color: #8A9A5B;
  font-weight: 700;
  font-size: 20px;
  margin: 0;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 10px 25px;
  border-top: 1px solid #e5e3de;
  border-bottom: 1px solid #e5e3de;
}
@media (max-width: 1024px) {
  .strip[data-id="3b697d"] .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .strip[data-id="3b697d"] .specialization-section {
    padding: 60px 0;
  }
  .strip[data-id="3b697d"] .container {
    padding: 0 20px;
  }
  .strip[data-id="3b697d"] .section-title {
    font-size: 36px;
  }
  .strip[data-id="3b697d"] .cards-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding-bottom: 30px;
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .strip[data-id="3b697d"] .cards-grid::-webkit-scrollbar {
    display: none;
  }
  .strip[data-id="3b697d"] .feature-card {
    flex: 0 0 280px;
    scroll-snap-align: center;
  }
}.strip[data-id="3101c7"] {
  --section-id: "3101c7";
  --storage-url: "https://test-bbebjicp.praweb.cz/_section/3101c7";
  --public-url: "https://test-bbebjicp.praweb.cz/_section/3101c7";
}
.strip[data-id="3101c7"] .newsletter-section {
  width: 100%;
  padding: 80px 0;
  background-color: #ffffff;
  font-family: "Montserrat", sans-serif;
}
.strip[data-id="3101c7"] .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.strip[data-id="3101c7"] .newsletter-box {
  max-width: 800px;
  margin: 0 auto;
  background-color: #fdf2f2;
  padding: 60px 40px;
  border-radius: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(125, 147, 125, 0.05);
}
.strip[data-id="3101c7"] .watermark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  pointer-events: none;
  z-index: 1;
}
.strip[data-id="3101c7"] .content-wrapper {
  position: relative;
  z-index: 2;
}
.strip[data-id="3101c7"] .icon-box {
  margin-bottom: 25px;
  font-size: 40px;
  color: #7d937d;
}
.strip[data-id="3101c7"] h2 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  color: #7d937d;
  margin-bottom: 15px;
  line-height: 1.2;
}
.strip[data-id="3101c7"] p {
  color: #7d937d;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 35px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.strip[data-id="3101c7"] .newsletter-form {
  max-width: 500px;
  margin: 0 auto;
}
.strip[data-id="3101c7"] .input-group {
  display: flex;
  gap: 15px;
  align-items: flex-end;
}
.strip[data-id="3101c7"] .input-group input {
  flex: 1;
  background: transparent;
  border: none;
  border-bottom: 2px solid #c5a059;
  padding: 12px 0;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: #7d937d;
  transition: border-bottom 0.3s ease, border-width 0.3s ease;
  outline: none;
}
.strip[data-id="3101c7"] .input-group input::placeholder {
  color: rgba(125, 147, 125, 0.6);
}
.strip[data-id="3101c7"] .input-group input:focus {
  border-bottom: 3px solid #c5a059;
}
.strip[data-id="3101c7"] .input-group button {
  background-color: #7d937d;
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
  white-space: nowrap;
}
.strip[data-id="3101c7"] .input-group button:hover {
  background-color: #6a7d6a;
  transform: translateY(-2px);
}
.strip[data-id="3101c7"] .input-group button:active {
  transform: translateY(0);
}
@media (max-width: 600px) {
  .strip[data-id="3101c7"] .newsletter-box {
    padding: 40px 20px;
  }
  .strip[data-id="3101c7"] .input-group {
    flex-direction: column;
    align-items: stretch;
  }
  .strip[data-id="3101c7"] .input-group button {
    width: 100%;
    margin-top: 10px;
  }
  .strip[data-id="3101c7"] h2 {
    font-size: 28px;
  }
}.strip[data-id="7a8eb8"] {
  --section-id: "7a8eb8";
  --storage-url: "https://test-bbebjicp.praweb.cz/_section/7a8eb8";
  --public-url: "https://test-bbebjicp.praweb.cz/_section/7a8eb8";
  /* Subtle decorative pattern */
}
.strip[data-id="7a8eb8"] .footer-section {
  background-color: #4F7942;
  color: #F5F5DC;
  padding: 100px 0 50px;
  font-family: "Montserrat", sans-serif;
  position: relative;
  overflow: hidden;
}
.strip[data-id="7a8eb8"] .footer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f5f5dc' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.strip[data-id="7a8eb8"] .footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 1;
}
.strip[data-id="7a8eb8"] .footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 80px;
}
.strip[data-id="7a8eb8"] .footer-col h3 {
  color: #D4AF37; /* Slightly more vibrant gold for better contrast */
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
  font-weight: 700;
  position: relative;
}
.strip[data-id="7a8eb8"] .footer-col h3::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #D4AF37;
}
.strip[data-id="7a8eb8"] .contact-info p {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.strip[data-id="7a8eb8"] .footer-col p, .strip[data-id="7a8eb8"] .footer-col a {
  color: #F5F5DC;
  text-decoration: none;
  line-height: 1.6;
  font-size: 15px;
  transition: color 0.3s ease;
}
.strip[data-id="7a8eb8"] .footer-col a:hover {
  color: #D4AF37;
}
.strip[data-id="7a8eb8"] .map-wrapper {
  width: 100%;
  height: 220px;
  border-radius: 15px;
  overflow: hidden;
  filter: grayscale(0.8) sepia(0.1) brightness(0.9);
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.5s ease;
}
.strip[data-id="7a8eb8"] .map-wrapper:hover {
  filter: none;
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-5px);
}
.strip[data-id="7a8eb8"] .map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.strip[data-id="7a8eb8"] .social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.strip[data-id="7a8eb8"] .social-icon {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D4AF37;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.strip[data-id="7a8eb8"] .social-icon:hover {
  background-color: #D4AF37;
  color: #4F7942;
  transform: rotate(15deg) scale(1.1);
  border-color: #D4AF37;
}
.strip[data-id="7a8eb8"] .social-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.strip[data-id="7a8eb8"] .contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.strip[data-id="7a8eb8"] .form-group input,
.strip[data-id="7a8eb8"] .form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(245, 245, 220, 0.05);
  border: 1px solid rgba(245, 245, 220, 0.2);
  border-radius: 8px;
  color: #F5F5DC;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  box-sizing: border-box;
  transition: all 0.3s ease;
}
.strip[data-id="7a8eb8"] .form-group input:focus,
.strip[data-id="7a8eb8"] .form-group textarea:focus {
  outline: none;
  border-color: #D4AF37;
  background: rgba(245, 245, 220, 0.1);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}
.strip[data-id="7a8eb8"] .form-group textarea {
  height: 100px;
  resize: none;
}
.strip[data-id="7a8eb8"] .submit-btn {
  background-color: #FFB7C5;
  color: #1a1a1a;
  border: none;
  padding: 16px;
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 183, 197, 0.2);
}
.strip[data-id="7a8eb8"] .submit-btn:hover {
  background-color: #FFC5D1;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 183, 197, 0.3);
}
.strip[data-id="7a8eb8"] .submit-btn:active {
  transform: translateY(0);
}
.strip[data-id="7a8eb8"] .footer-bottom {
  border-top: 1px solid rgba(245, 245, 220, 0.1);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  opacity: 0.7;
}
.strip[data-id="7a8eb8"] .form-status {
  font-size: 14px;
  margin-top: 10px;
  padding: 10px;
  border-radius: 6px;
  display: none;
}
.strip[data-id="7a8eb8"] .form-status.success {
  background: rgba(144, 238, 144, 0.1);
  color: #90EE90;
  display: block;
}
.strip[data-id="7a8eb8"] .form-status.error {
  background: rgba(255, 183, 197, 0.1);
  color: #FFB7C5;
  display: block;
}
@media (max-width: 1100px) {
  .strip[data-id="7a8eb8"] .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .strip[data-id="7a8eb8"] .footer-section {
    padding: 70px 0 40px;
  }
  .strip[data-id="7a8eb8"] .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}
@media (max-width: 550px) {
  .strip[data-id="7a8eb8"] .footer-grid {
    grid-template-columns: 1fr;
  }
  .strip[data-id="7a8eb8"] .footer-col:last-child {
    order: -1; /* Move form up on mobile if desired, but user asked for end */
  }
  .strip[data-id="7a8eb8"] .footer-col:last-child {
    order: 10;
  }
}