@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,600;1,400&family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400..900;0,700;1,400..900;1,700&family=Playfair+Display:wght@700&display=swap');
@charset "UTF-8";
.strip[data-id="71e338"] {
  --section-id: "71e338";
  --storage-url: "https://test-an0hklt9.praweb.cz/_section/71e338";
  --public-url: "https://test-an0hklt9.praweb.cz/_section/71e338";
}
.strip[data-id="71e338"] .site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
  font-family: "Montserrat", sans-serif;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.strip[data-id="71e338"] .top-bar {
  background-color: #8A9A5B;
  padding: 10px 0;
  transition: all 0.3s ease;
}
.strip[data-id="71e338"] .site-header.scrolled .top-bar {
  margin-top: -40px; /* Skryje horní lištu při scrollu */
  opacity: 0;
}
.strip[data-id="71e338"] .top-bar .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center; /* Centrování textu */
  align-items: center;
}
.strip[data-id="71e338"] .top-bar-text {
  color: #F9F7F2;
  font-size: 11px;
  margin: 0;
  letter-spacing: 1.2px;
  font-weight: 600;
  text-transform: uppercase;
}
.strip[data-id="71e338"] .main-nav-wrapper {
  background-color: rgba(249, 247, 242, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(197, 160, 89, 0.15);
  transition: all 0.4s ease;
}
.strip[data-id="71e338"] .site-header.scrolled .main-nav-wrapper {
  background-color: rgba(249, 247, 242, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.strip[data-id="71e338"] .container.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  transition: all 0.4s ease;
}
.strip[data-id="71e338"] .site-header.scrolled .container.nav-container {
  height: 70px;
}
.strip[data-id="71e338"] .logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.strip[data-id="71e338"] .logo-container {
  height: 55px;
  width: 55px;
  transition: transform 0.3s ease;
}
.strip[data-id="71e338"] .logo-link:hover .logo-container {
  transform: scale(1.05);
}
.strip[data-id="71e338"] .peony-svg {
  width: 100%;
  height: 100%;
}
.strip[data-id="71e338"] .peony-path {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: draw 2.5s ease forwards;
}
@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
.strip[data-id="71e338"] .desktop-menu {
  display: block;
}
.strip[data-id="71e338"] .nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 35px;
}
.strip[data-id="71e338"] .nav-link {
  color: #8A9A5B;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
}
.strip[data-id="71e338"] .nav-link:hover {
  color: #C5A059;
}
.strip[data-id="71e338"] .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #C5A059;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
}
.strip[data-id="71e338"] .nav-link:hover::after {
  width: 100%;
}
.strip[data-id="71e338"] .header-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}
.strip[data-id="71e338"] .login-button {
  border: 1.5px solid #C5A059;
  color: #C5A059;
  padding: 10px 22px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  border-radius: 50px; /* Kulatější tlačítko */
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.strip[data-id="71e338"] .login-button:hover {
  background-color: #E2B4BD;
  border-color: #E2B4BD;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(226, 180, 189, 0.3);
}
.strip[data-id="71e338"] .hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 16px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.strip[data-id="71e338"] .hamburger-bar {
  width: 100%;
  height: 2px;
  background-color: #8A9A5B;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.strip[data-id="71e338"] .mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #F9F7F2;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%); /* Změna na posun z boku */
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}
.strip[data-id="71e338"] .site-header.mobile-menu-open .mobile-overlay {
  transform: translateX(0);
}
.strip[data-id="71e338"] .mobile-menu-content {
  text-align: center;
  width: 100%;
  padding: 40px;
}
.strip[data-id="71e338"] .mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0 0 50px 0;
}
.strip[data-id="71e338"] .mobile-nav-link {
  display: block;
  font-size: 28px;
  color: #8A9A5B;
  text-decoration: none;
  padding: 20px 0;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 3px;
  transition: color 0.3s ease;
}
.strip[data-id="71e338"] .mobile-nav-link:hover {
  color: #C5A059;
}
.strip[data-id="71e338"] .mobile-login-button {
  display: inline-block;
  border: 2px solid #C5A059;
  color: #C5A059;
  padding: 18px 50px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
@media (max-width: 991px) {
  .strip[data-id="71e338"] .desktop-menu {
    display: none;
  }
  .strip[data-id="71e338"] .hamburger-menu {
    display: flex;
    z-index: 1001;
  }
  .strip[data-id="71e338"] .login-button {
    display: none;
  }
  .strip[data-id="71e338"] .container.nav-container {
    height: 70px;
  }
}
.strip[data-id="71e338"] .site-header.mobile-menu-open .hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.strip[data-id="71e338"] .site-header.mobile-menu-open .hamburger-bar:nth-child(2) {
  opacity: 0;
}
.strip[data-id="71e338"] .site-header.mobile-menu-open .hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}.strip[data-id="721913"] {
  --section-id: "721913";
  --storage-url: "https://test-an0hklt9.praweb.cz/_section/721913";
  --public-url: "https://test-an0hklt9.praweb.cz/_section/721913";
}
.strip[data-id="721913"] .hero-section {
  margin-top: -80px;
  padding-top: 180px;
  padding-bottom: 100px;
  position: relative;
  z-index: 1;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  /* Background image is handled via inline style in PHTML for better asset path resolution */
}
.strip[data-id="721913"] .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.strip[data-id="721913"] .content-wrapper {
  max-width: 800px;
}
.strip[data-id="721913"] h1 {
  font-family: "Playfair Display", serif;
  font-size: 64px;
  color: #F9F7F2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 24px;
  line-height: 1.2;
}
.strip[data-id="721913"] .subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: #F9F7F2;
  margin-bottom: 40px;
  line-height: 1.6;
}
.strip[data-id="721913"] .button-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.strip[data-id="721913"] .btn {
  padding: 16px 32px;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: transform 0.3s ease;
  border-radius: 0px;
  display: inline-block;
}
.strip[data-id="721913"] .btn:hover {
  transform: scale(1.05);
}
.strip[data-id="721913"] .btn-primary {
  background-color: #8A9A5B;
  color: #ffffff;
  border: 2px solid #8A9A5B;
}
.strip[data-id="721913"] .btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}
.strip[data-id="721913"] .scroll-down {
  position: absolute;
  bottom: 30px;
  right: 50px;
  color: #D4AF37;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
@media (max-width: 768px) {
  .strip[data-id="721913"] h1 {
    font-size: 42px;
  }
  .strip[data-id="721913"] .hero-section {
    padding-top: 140px;
  }
  .strip[data-id="721913"] .scroll-down {
    right: 20px;
    bottom: 20px;
  }
}@charset "UTF-8";
.strip[data-id=faa4f4] {
  --section-id: "faa4f4";
  --storage-url: "https://test-an0hklt9.praweb.cz/_section/faa4f4";
  --public-url: "https://test-an0hklt9.praweb.cz/_section/faa4f4";
}
.strip[data-id=faa4f4] section {
  background-color: #F9F7F2;
  width: 100%;
  overflow: hidden;
}
.strip[data-id=faa4f4] .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}
.strip[data-id=faa4f4] .section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}
.strip[data-id=faa4f4] .section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  color: #8A9A5B;
  margin-bottom: 15px;
  margin-top: 0;
  font-weight: 700;
}
.strip[data-id=faa4f4] .section-header::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background-color: #C5A059;
  margin: 20px auto 0;
}
.strip[data-id=faa4f4] .section-header p {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  color: #555555;
  max-width: 700px;
  margin: 25px auto 0;
  line-height: 1.6;
}
.strip[data-id=faa4f4] .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.strip[data-id=faa4f4] .gallery-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
  background-color: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.strip[data-id=faa4f4] .gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.strip[data-id=faa4f4] .image-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}
.strip[data-id=faa4f4] .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
}
.strip[data-id=faa4f4] .hover-frame {
  position: absolute;
  top: 20px;
  right: 20px;
  bottom: 20px;
  left: 20px;
  border: 1px solid #C5A059;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 2;
  pointer-events: none;
  transform: scale(1.05);
}
.strip[data-id=faa4f4] .card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(226, 180, 189, 0.95);
  padding: 35px 30px;
  transform: translateY(101%);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 3;
  box-sizing: border-box;
}
.strip[data-id=faa4f4] .gallery-card:hover .image-wrapper img {
  transform: scale(1.1);
}
.strip[data-id=faa4f4] .gallery-card:hover .hover-frame {
  opacity: 1;
  transform: scale(1);
}
.strip[data-id=faa4f4] .gallery-card:hover .card-overlay {
  transform: translateY(0);
}
.strip[data-id=faa4f4] .category-title {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  color: #4a5431; /* Ztmavená šalvějová pro lepší kontrast na růžovém pozadí */
  margin: 0 0 12px 0;
  font-weight: 600;
}
.strip[data-id=faa4f4] .category-desc {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  color: #333333;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 1100px) {
  .strip[data-id=faa4f4] .gallery-grid {
    gap: 20px;
  }
}
@media (max-width: 992px) {
  .strip[data-id=faa4f4] .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .strip[data-id=faa4f4] .section-header h2 {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .strip[data-id=faa4f4] {
    /* Na mobilu necháme overlay částečně viditelný nebo změníme interakci */
  }
  .strip[data-id=faa4f4] .container {
    padding: 60px 20px;
  }
  .strip[data-id=faa4f4] .section-header h2 {
    font-size: 32px;
  }
  .strip[data-id=faa4f4] .gallery-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }
  .strip[data-id=faa4f4] .card-overlay {
    transform: translateY(0);
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    position: relative;
  }
  .strip[data-id=faa4f4] .gallery-card {
    aspect-ratio: auto;
    height: auto;
  }
  .strip[data-id=faa4f4] .image-wrapper {
    aspect-ratio: 4/3;
  }
  .strip[data-id=faa4f4] .hover-frame {
    display: none;
  }
}.strip[data-id=f00db9] {
  --section-id: "f00db9";
  --storage-url: "https://test-an0hklt9.praweb.cz/_section/f00db9";
  --public-url: "https://test-an0hklt9.praweb.cz/_section/f00db9";
}
.strip[data-id=f00db9] .why-choose-us {
  background-color: rgba(226, 180, 189, 0.08);
  padding: 80px 0;
  font-family: "Montserrat", sans-serif;
}
.strip[data-id=f00db9] .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.strip[data-id=f00db9] .section-header {
  text-align: center;
  margin-bottom: 60px;
}
.strip[data-id=f00db9] .title {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  font-weight: 700;
  color: #5D6D3E; /* Darker sage for contrast */
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}
.strip[data-id=f00db9] .title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: #C5A059;
}
.strip[data-id=f00db9] .lead {
  font-size: 18px;
  color: #4A4A4A;
  max-width: 700px;
  margin: 20px auto 0;
  line-height: 1.6;
}
.strip[data-id=f00db9] .features-grid {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 30px;
}
.strip[data-id=f00db9] .feature-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px 20px;
  background: transparent;
  border-radius: 15px;
  transition: all 0.3s ease;
}
.strip[data-id=f00db9] .feature-card:hover {
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transform: translateY(-5px);
}
.strip[data-id=f00db9] .icon-container {
  margin-bottom: 25px;
}
.strip[data-id=f00db9] .icon-circle {
  width: 90px;
  height: 90px;
  background-color: #8A9A5B;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(138, 154, 91, 0.2);
  transition: transform 0.3s ease;
}
.strip[data-id=f00db9] .icon-circle i {
  font-size: 36px;
  color: #FFFFFF; /* High contrast white */
}
.strip[data-id=f00db9] .feature-title {
  font-size: 20px;
  font-weight: 700;
  color: #5D6D3E;
  margin-bottom: 15px;
  line-height: 1.4;
}
.strip[data-id=f00db9] .feature-text {
  font-size: 16px;
  color: #4A4A4A;
  line-height: 1.6;
  margin: 0;
}
.strip[data-id=f00db9] .vertical-divider {
  width: 1px;
  background: linear-gradient(to bottom, transparent, #C5A059, transparent);
  opacity: 0.4;
  margin: 40px 0;
}
@media (max-width: 1024px) {
  .strip[data-id=f00db9] .title {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .strip[data-id=f00db9] .why-choose-us {
    padding: 60px 0;
  }
  .strip[data-id=f00db9] .features-grid {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .strip[data-id=f00db9] .vertical-divider {
    display: none;
  }
  .strip[data-id=f00db9] .feature-card {
    max-width: 400px;
    background: rgba(255, 255, 255, 0.3);
  }
  .strip[data-id=f00db9] .section-header {
    margin-bottom: 40px;
  }
}@charset "UTF-8";
.strip[data-id="3b05e8"] {
  --section-id: "3b05e8";
  --storage-url: "https://test-an0hklt9.praweb.cz/_section/3b05e8";
  --public-url: "https://test-an0hklt9.praweb.cz/_section/3b05e8";
}
.strip[data-id="3b05e8"] .newsletter-section {
  background-color: #8A9A5B;
  background-blend-mode: multiply;
  background-size: cover;
  background-position: center;
  padding: 80px 20px 120px 20px;
  position: relative;
}
.strip[data-id="3b05e8"] .newsletter-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.strip[data-id="3b05e8"] .newsletter-headline {
  font-family: "Playfair Display", serif;
  font-size: clamp(24px, 5vw, 36px);
  color: #F9F7F2;
  margin-bottom: 50px;
  font-weight: 700;
  line-height: 1.3;
  max-width: 800px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.strip[data-id="3b05e8"] .newsletter-card {
  background-color: #FFFFFF;
  padding: 60px 40px;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  max-width: 750px;
  width: 100%;
  position: relative;
  z-index: 2;
  margin-bottom: -60px; /* Jemnější přesah */
}
.strip[data-id="3b05e8"] .newsletter-icon-wrapper {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
  color: #8A9A5B;
}
.strip[data-id="3b05e8"] .newsletter-icon-main {
  font-size: 45px;
}
.strip[data-id="3b05e8"] .newsletter-icon-badge {
  position: absolute;
  font-size: 22px;
  top: -8px;
  right: -15px;
  background: #FFFFFF;
  padding: 2px;
  border-radius: 50%;
}
.strip[data-id="3b05e8"] .newsletter-subtext {
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  color: #555555;
  margin-bottom: 35px;
  line-height: 1.6;
}
.strip[data-id="3b05e8"] .newsletter-form {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}
.strip[data-id="3b05e8"] .newsletter-input-group {
  flex: 1;
  min-width: 280px;
}
.strip[data-id="3b05e8"] .newsletter-input {
  width: 100%;
  border: none;
  border-bottom: 2px solid #C5A059;
  padding: 12px 5px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  background: #F9F7F2;
  outline: none;
  color: #333;
  transition: border-color 0.3s ease, background-color 0.3s ease;
  border-radius: 4px 4px 0 0;
}
.strip[data-id="3b05e8"] .newsletter-input:focus {
  border-bottom-color: #8A9A5B;
  background-color: #F1EFE9;
}
.strip[data-id="3b05e8"] .newsletter-input::placeholder {
  color: #999;
}
.strip[data-id="3b05e8"] .newsletter-button {
  background-color: #E2B4BD;
  color: #FFFFFF;
  border: none;
  padding: 15px 35px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 4px 10px rgba(226, 180, 189, 0.3);
}
.strip[data-id="3b05e8"] .newsletter-button:hover {
  background-color: #C5A059;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(197, 160, 89, 0.4);
}
.strip[data-id="3b05e8"] .newsletter-button:active {
  transform: translateY(0);
}
@media (max-width: 768px) {
  .strip[data-id="3b05e8"] .newsletter-section {
    padding: 60px 20px 80px 20px;
  }
  .strip[data-id="3b05e8"] .newsletter-card {
    padding: 40px 25px;
    margin-bottom: -40px;
  }
  .strip[data-id="3b05e8"] .newsletter-form {
    flex-direction: column;
  }
  .strip[data-id="3b05e8"] .newsletter-input-group {
    min-width: 100%;
  }
  .strip[data-id="3b05e8"] .newsletter-button {
    width: 100%;
  }
}.strip[data-id=dc6082] {
  --section-id: "dc6082";
  --storage-url: "https://test-an0hklt9.praweb.cz/_section/dc6082";
  --public-url: "https://test-an0hklt9.praweb.cz/_section/dc6082";
  /* Decorative element */
  /* Form Success Message */
}
.strip[data-id=dc6082] .luxury-footer {
  background-color: #6B7A46;
  padding: 100px 0 0 0;
  color: #F9F7F2;
  font-family: "Montserrat", sans-serif;
  position: relative;
  overflow: hidden;
}
.strip[data-id=dc6082] .luxury-footer::before {
  content: "\f06c"; /* leaf icon */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: -20px;
  right: 5%;
  font-size: 150px;
  color: rgba(197, 160, 89, 0.05);
  transform: rotate(15deg);
  pointer-events: none;
}
.strip[data-id=dc6082] .footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.strip[data-id=dc6082] .footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
  margin-bottom: 80px;
}
.strip[data-id=dc6082] .footer-col {
  flex: 1;
  min-width: 300px;
}
.strip[data-id=dc6082] .footer-title {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  color: #C5A059;
  margin-bottom: 35px;
  font-weight: 700;
  line-height: 1.3;
}
.strip[data-id=dc6082] .footer-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background-color: #C5A059;
  margin-top: 15px;
}
.strip[data-id=dc6082] .input-group {
  margin-bottom: 25px;
  position: relative;
}
.strip[data-id=dc6082] .luxury-contact-form input,
.strip[data-id=dc6082] .luxury-contact-form textarea {
  width: 100%;
  background: rgba(249, 247, 242, 0.05);
  border: 1px solid rgba(249, 247, 242, 0.3);
  padding: 15px 20px;
  color: #F9F7F2;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  box-sizing: border-box;
  transition: all 0.3s ease;
  border-radius: 0;
}
.strip[data-id=dc6082] .luxury-contact-form input:focus,
.strip[data-id=dc6082] .luxury-contact-form textarea:focus {
  outline: none;
  border-color: #C5A059;
  background: rgba(249, 247, 242, 0.1);
}
.strip[data-id=dc6082] .footer-submit-btn {
  background-color: #C5A059;
  color: #F9F7F2;
  border: 1px solid #C5A059;
  padding: 18px 45px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.strip[data-id=dc6082] .footer-submit-btn:hover {
  background-color: transparent;
  color: #C5A059;
}
.strip[data-id=dc6082] .footer-submit-btn i {
  font-size: 12px;
  transition: transform 0.3s ease;
}
.strip[data-id=dc6082] .footer-submit-btn:hover i {
  transform: translateX(5px);
}
.strip[data-id=dc6082] .contact-details {
  margin-bottom: 40px;
}
.strip[data-id=dc6082] .info-item {
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.strip[data-id=dc6082] .info-item i {
  color: #C5A059;
  font-size: 18px;
  margin-top: 3px;
  width: 20px;
  text-align: center;
}
.strip[data-id=dc6082] .info-item strong {
  color: #C5A059;
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}
.strip[data-id=dc6082] .map-wrapper {
  margin: 30px 0;
  height: 280px;
  border: 1px solid rgba(197, 160, 89, 0.5);
  overflow: hidden;
  filter: grayscale(80%) contrast(1.1) brightness(0.9) sepia(20%);
  transition: filter 0.5s ease;
}
.strip[data-id=dc6082] .map-wrapper:hover {
  filter: grayscale(0%) contrast(1) brightness(1) sepia(0%);
}
.strip[data-id=dc6082] .map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.strip[data-id=dc6082] .socials-wrapper {
  margin-top: 40px;
}
.strip[data-id=dc6082] .socials-label {
  font-size: 14px;
  margin-bottom: 20px;
  color: #C5A059;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.strip[data-id=dc6082] .social-icons {
  display: flex;
  gap: 15px;
}
.strip[data-id=dc6082] .icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border: 1px solid rgba(197, 160, 89, 0.5);
  border-radius: 50%;
  color: #F9F7F2;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 18px;
}
.strip[data-id=dc6082] .icon-circle:hover {
  background-color: #C5A059;
  border-color: #C5A059;
  color: #6B7A46;
  transform: translateY(-3px);
}
.strip[data-id=dc6082] .footer-copyright {
  border-top: 1px solid rgba(197, 160, 89, 0.3);
  padding: 40px 0;
  text-align: center;
}
.strip[data-id=dc6082] .footer-copyright p {
  font-size: 13px;
  color: rgba(249, 247, 242, 0.5);
  letter-spacing: 1px;
}
.strip[data-id=dc6082] .form-success-msg {
  display: none;
  background: rgba(197, 160, 89, 0.1);
  border: 1px solid #C5A059;
  padding: 20px;
  text-align: center;
  margin-top: 20px;
  color: #F9F7F2;
}
@media (max-width: 992px) {
  .strip[data-id=dc6082] .footer-row {
    gap: 50px;
  }
}
@media (max-width: 768px) {
  .strip[data-id=dc6082] .footer-row {
    flex-direction: column;
    gap: 60px;
  }
  .strip[data-id=dc6082] .luxury-footer {
    padding: 80px 0 0 0;
  }
  .strip[data-id=dc6082] .footer-submit-btn {
    width: 100%;
    justify-content: center;
  }
  .strip[data-id=dc6082] .footer-title {
    font-size: 24px;
  }
}