
  /* ========== Footer ========== */
footer {
    background-color: #333;
    color: #ccc;
    text-align: center;
    padding: 30px 0;
    font-size: 14px;
  }
  
  footer p {
    margin-bottom: 10px;
  }
  
  /* Footer Icons */
  footer a {
    color: #ccc;
    margin: 0 15px;
    font-size: 36px; /* Bigger, luxury feel */
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
  }
  
  footer a:hover {
    color: #c71585; /* Luxury pink-purple hover */
    transform: scale(1.2);
  }


/* 🌸 Contact CTA Section */
.contact-cta {
  text-align: center;
  padding: 5rem 1.5rem;
  background: #fafafa;
}

.contact-cta h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #222;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Elegant button */
.contact-cta .quote-btn {
  display: inline-block;
  margin: 0 auto;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff !important;
  background: linear-gradient(135deg, #c59bc9, #a678ad) !important;
  border-radius: 50px;                /* Softer pill-shape */
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.contact-cta .quote-btn:hover {
  background: linear-gradient(135deg, #a678ad, #8b5f94) !important;
  transform: translateY(-3px);        /* Subtle lift */
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}


/* 🌸 Footer Links */
footer a {
  color: #666;            /* subtle grey */
  font-size: 0.9rem;      /* smaller than body text */
  text-decoration: none;  /* remove underline */
  margin-left: 0.5rem;
}

footer a:hover {
  color: #c59bc9;         /* your brand accent on hover */
  text-decoration: underline;
}
