/* =========================================
   PREMIUM INTERIOR DESIGN FOOTER
   Warm Minimal Beige Theme
========================================= */

.new-footer {
  position: relative;

  background:
    
      
      #212818;


  padding: 85px 0 30px;

  color: #F8F6F1;

  overflow: hidden;
}

/* Elegant luxury texture overlay */

.new-footer::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      120deg,
      rgba(255,255,255,0.02),
      transparent 30%,
      rgba(220,201,163,0.06) 70%,
      transparent
    );

  pointer-events: none;
}

/* Premium top highlight line */

.new-footer::after {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(220,201,163,0.45),
      transparent
    );
}



/* =========================================
   FOOTER CONTENT
========================================= */

.footer-content {
  width: 90%;
  margin: 0 auto;

  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(280px, 1fr));

  gap: 55px;

  position: relative;
  z-index: 2;
}

/* =========================================
   COLUMN STYLING
========================================= */

.footer-col h3 {
  color: #F8F6F1;

  font-size: 1.29rem;
  font-weight: 600;

  margin-bottom: 24px;

  letter-spacing: 0.8px;

  position: relative;
}

/* Elegant underline */

.footer-col h3::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: -10px;

  width: 52px;
  height: 2px;

  border-radius: 10px;

  background:
    linear-gradient(
      90deg,
      #E8D8C4,
      transparent
    );
}

.footer-col p,
.footer-col li,
.footer-col a {
  font-size: 1rem;

  color: #DCC9A3;

  line-height: 1.8;
}

/* =========================================
   LINKS
========================================= */

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 14px;
}

/* Modern minimal links */

.footer-col ul li a {
  text-decoration: none;

  position: relative;

  padding-left: 0;

  transition:
    color 0.3s ease,
    padding-left 0.3s ease;
}

/* Underline animation */

.footer-col ul li a::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -3px;

  width: 0;
  height: 2px;

  border-radius: 10px;

  background:
    linear-gradient(
      90deg,
      #E8D8C4,
      #8B6F47
    );

  transition: width 0.3s ease;
}

/* Hover */

.footer-col ul li a:hover {
  color: #FAFAFA;

  padding-left: 6px;
}

.footer-col ul li a:hover::after {
  width: 65%;
}

/* =========================================
   SOCIAL MEDIA
========================================= */

.sm-title {
  margin-top: 34px;
}

.social-links {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}

/* Premium icon buttons */

.social-links a {
  width: 44px;
  height: 44px;

  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;

  font-size: 1.05rem;

  color: #FAFAFA;

  background:
    rgba(255,255,255,0.04);

  border:
    1px solid rgba(232,216,196,0.08);

  backdrop-filter: blur(8px);

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

/* Hover */

.social-links a:hover {
  transform: translateY(-4px);

  background:
    rgba(232,216,196,0.08);

  border-color:
    rgba(232,216,196,0.18);

  box-shadow:
    0 8px 20px rgba(0,0,0,0.18);
}

/* =========================================
   FORM AREA
========================================= */

.form-col input,
.form-col textarea {
  width: 100%;

  padding: 14px 16px;

  margin-bottom: 16px;

  border-radius: 16px;

  border:
    1px solid rgba(232,216,196,0.12);

  background:
    rgba(255,255,255,0.04);

  color: #FAFAFA;

  font-size: 0.96rem;

  outline: none;

  backdrop-filter: blur(8px);

  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

/* Placeholder */

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

/* Focus */

.form-col input:focus,
.form-col textarea:focus {
  border-color:
    rgba(232,216,196,0.28);

  background:
    rgba(255,255,255,0.06);

  box-shadow:
    0 0 0 3px rgba(232,216,196,0.05);
}

/* Textarea */

.form-col textarea {
  min-height: 140px;
  resize: vertical;
}

/* =========================================
   MAP SECTION
========================================= */

.map-section {
  display: flex;
  justify-content: flex-start;

  margin-top: 18px;
}

/* Wrapper */

.map-wrapper {
  width: 100%;
  max-width: 500px;

  overflow: hidden;

  border-radius: 24px;

  border:
    1px solid rgba(232,216,196,0.08);

  box-shadow:
    0 12px 30px rgba(0,0,0,0.2);

  background:
    rgba(255,255,255,0.03);

  backdrop-filter: blur(10px);
}

/* Actual map */

.map-wrapper iframe {
  width: 100%;
  height: 300px;

  border: none;

  border-radius: 24px;

  filter:
    grayscale(15%)
    contrast(1.02);
}

/* =========================================
   FOOTER BOTTOM
========================================= */

.footer-bottom {
  text-align: center;

  margin-top: 65px;
  padding-top: 24px;

  border-top:
    1px solid rgba(255,255,255,0.08);

  font-size: 0.92rem;

  color: #CFC6BB;

  position: relative;
  z-index: 2;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 768px) {

  .new-footer {
    padding: 70px 0 25px;
  }

  .footer-content {
    width: 92%;
    gap: 45px;

    text-align: center;
  }

  .footer-col h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .social-links {
    justify-content: center;
  }

  .map-section {
    justify-content: center;
  }

  .map-wrapper {
    max-width: 100%;
  }

  .footer-col ul li a:hover {
    padding-left: 0;
  }
}

/* =========================================
   SMALL DEVICES
========================================= */

@media (max-width: 400px) {

  .footer-col h3 {
    font-size: 1.15rem;
  }

  .footer-col p,
  .footer-col li,
  .footer-col a {
    font-size: 0.94rem;
  }

  .social-links a {
    width: 40px;
    height: 40px;
  }

  .map-wrapper iframe {
    height: 240px;
  }

  .footer-bottom {
    font-size: 0.82rem;
  }
}