/* ===============================
   CONTACT PAGE STYLES
   Yamini Makeovers
================================= */


/* Section spacing */
.contact-section {
  background: #fafafa;
  padding: 60px 0;
}


/* ===============================
   Cards
================================= */
.contact-section .card {
  border: none;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  height: 100%;
  border: #be1e9b 2px dashed;
}

.contact-section h2 {
  font-weight: 700;
  margin-bottom: 20px;
}


/* ===============================
   Form Styling
================================= */
.form-control,
.form-select {
  height: 48px;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  padding: 10px 14px;
  font-size: 15px;
  transition: 0.3s;
}

textarea.form-control {
  height: auto;
}

.form-control:focus,
.form-select:focus {
  border-color: #ff4f81;
  box-shadow: 0 0 0 0.15rem rgba(255, 79, 129, 0.25);
}


/* Labels */
.form-label {
  font-weight: 600;
  margin-bottom: 6px;
}


/* ===============================
   Pink Button Theme
================================= */
.btn-pink {
  background: linear-gradient(135deg, #ff4f81, #ff6fa5);
  border: none;
  color: #fff;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 10px;
  transition: 0.3s;
}

.btn-pink:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 79, 129, 0.35);
  color: #fff;
}


/* ===============================
   Contact Details
================================= */
.contact-section p {
  color: #555;
  line-height: 1.7;
  text-align: justify;
}

.contact-section ul li {
  font-size: 15px;
  margin-bottom: 10px;
}

.text-pink {
  color: #ff4f81;
}


/* ===============================
   Social Icons
================================= */
.contact-section .fab {
  transition: 0.3s;
}

.contact-section .fab:hover {
  color: #ff4f81;
  transform: scale(1.2);
}


/* ===============================
   Hero Section
================================= */
.hero-section {
  position: relative;
}

.hero-section h1 {
  letter-spacing: 1px;
}

.hero-overlay {
  backdrop-filter: blur(2px);
}


/* ===============================
   Map Section
================================= */
.map-section iframe {
  display: block;
  width: 100%;
  border: 0;
}


/* ===============================
   Responsive
================================= */
@media (max-width: 992px) {
  .contact-section {
    padding: 40px 15px;
  }
}

@media (max-width: 768px) {
  .contact-section .card {
    padding: 20px;
  }

  .hero-section {
    height: 300px !important;
  }

  .hero-section h1 {
    font-size: 28px;
  }

  .hero-section p {
    font-size: 14px;
  }
}

@media (max-width: 456px) {
  .btn-pink {
    width: 100%;
  }
}
.contact-info i {
  font-size: 18px;
  width: 24px;
}

.social-link {
  font-size: 22px;
  color: #333;
  transition: 0.3s;
}

.social-link:hover {
  color: #ff4081;
  transform: translateY(-2px);
}

















/* =========================================
   FLOAT ACTIONS WRAPPER (all buttons together)
========================================= */

.float-actions {
  position: fixed;
  right: 18px;
  bottom: 25px;
  z-index: 9999;

  display: flex;
  flex-direction: column;
  gap: 12px;
}


/* =========================================
   BASE BUTTON STYLE
========================================= */

.float-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 20px;
  color: #fff;

  border: none;
  cursor: pointer;
  text-decoration: none;

  box-shadow: 0 10px 28px rgba(0,0,0,0.18);
  transition: all 0.3s ease;
}


/* Hover lift */
.float-btn:hover {
  transform: translateY(-4px) scale(1.08);
}


/* =========================================
   WhatsApp
========================================= */

.whatsapp {
  background: linear-gradient(135deg, #25D366, #1ebe5d);
}


/* =========================================
   Instagram (feminine gradient)
========================================= */

.instagram {
  background: linear-gradient(135deg,
    #f58529,
    #dd2a7b,
    #8134af,
    #515bd4
  );
}


/* =========================================
   Back To Top (brand color)
========================================= */

.top-btn {
  background: linear-gradient(135deg, #c98a96, #e9aab3);
}


/* =========================================
   MOBILE SIZE
========================================= */

@media (max-width: 768px) {

  .float-btn {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

}
/* =========================================
   TOOLTIP STYLE (Luxury Feminine)
========================================= */

.float-btn {
  position: relative;
}


/* tooltip bubble */
.float-btn::after {
  content: attr(data-tooltip);

  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);

  background: linear-gradient(135deg, #c98a96, #e9aab3);
  color: #fff;

  padding: 6px 12px;
  font-size: 12px;
  font-weight: 500;

  border-radius: 20px;
  white-space: nowrap;

  opacity: 0;
  pointer-events: none;

  box-shadow: 0 6px 18px rgba(201,138,150,0.35);

  transition: all 0.3s ease;
}


/* small arrow */
.float-btn::before {
  content: "";
  position: absolute;

  right: 52px;
  top: 50%;
  transform: translateY(-50%);

  border: 6px solid transparent;
  border-left-color: #e9aab3;

  opacity: 0;
  transition: 0.3s ease;
}


/* show on hover */
.float-btn:hover::after,
.float-btn:hover::before {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}


/* =========================================
   MOBILE (always hidden for space)
========================================= */

@media (max-width: 768px) {
  .float-btn::after,
  .float-btn::before {
    display: none;
  }
}


