.elementor-52 .elementor-element.elementor-element-6f1f048b{overflow:hidden;transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;padding:0px 0px 0px 0px;}.elementor-52 .elementor-element.elementor-element-6f1f048b > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-52 .elementor-element.elementor-element-a306e85 > .elementor-element-populated{padding:0px 0px 0px 0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-6f1f048b{padding:48px 0px 0px 0px;}}@media(max-width:767px){.elementor-52 .elementor-element.elementor-element-6f1f048b{padding:32px 0px 0px 0px;}}/* Start custom CSS for html, class: .elementor-element-d87f5b5 */@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

.footer-section {
  background: #1A1A1A;
  font-family: 'Inter', sans-serif;
}

.footer-main {
  padding: 80px 20px 60px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand {
  padding-right: 40px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: #FAF8F5;
  margin-bottom: 8px;
}

.footer-logo span {
  color: #a07b20; /* Updated to #a07b20 */
}

.footer-tagline {
  font-size: 14px;
  color: rgba(250, 248, 245, 0.5);
  margin-bottom: 24px;
}

.footer-description {
  font-size: 14px;
  color: rgba(250, 248, 245, 0.7);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 44px;
  height: 44px;
  background: rgba(250, 248, 245, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250, 248, 245, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #a07b20; /* Updated to #a07b20 */
  color: #FAF8F5;
  transform: translateY(-2px);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.footer-column h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: #FAF8F5;
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(250, 248, 245, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: #a07b20; /* Updated to #a07b20 */
  padding-left: 4px;
}

.footer-links a svg {
  width: 14px;
  height: 14px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer-links a:hover svg {
  opacity: 1;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-icon {
  width: 36px;
  height: 36px;
  background: rgba(160, 123, 32, 0.2); /* 20% opacity of #a07b20 */
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a07b20; /* Updated to #a07b20 */
  flex-shrink: 0;
}

.footer-contact-icon svg {
  width: 16px;
  height: 16px;
}

.footer-contact-text {
  font-size: 14px;
  color: rgba(250, 248, 245, 0.7);
  line-height: 1.5;
}

.footer-contact-text a {
  color: rgba(250, 248, 245, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-text a:hover {
  color: #a07b20; /* Updated to #a07b20 */
}

.footer-bottom {
  border-top: 1px solid rgba(250, 248, 245, 0.1);
  padding: 24px 20px;
}

.footer-bottom-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright {
  font-size: 14px;
  color: rgba(250, 248, 245, 0.5);
}

.footer-backlink {
  color: rgba(250, 248, 245, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-backlink:hover {
  color: #a07b20;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 14px;
  color: rgba(250, 248, 245, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #a07b20; /* Updated to #a07b20 */
}

@media (max-width: 968px) {
  .footer-container { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: span 2; padding-right: 0; }
}

@media (max-width: 640px) {
  .footer-container { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom-container { flex-direction: column; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }
}/* End custom CSS */