   /* ── FOOTER ── */
      
	 /* ── FOOTER ── */
.footer {
    position: relative;
    overflow: hidden;
    min-height: 500px;
    padding: 120px 5% 30px;
    background: #201f1f;
}

.footer::before {
    content: '';
    position: absolute;
    width: 800px; height: 900px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    top: -400px; left: -250px;
    animation: rotateBlob 40s linear infinite;
}

.footer::after {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    right: -200px; bottom: -200px;
    animation: rotateBlob 35s linear infinite;
}

@keyframes rotateBlob {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
    100% { transform: rotate(330deg) scale(1); }
}

.footer .container { position: relative; z-index: 10; }

/* FIX 1: widened the last column (Review form) so it's no longer slim */
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.8fr;
    gap: 40px;
    padding-top: 30px;
}

.footer-col { position: relative; z-index: 10; }

/* FIX 2: extra bottom padding so the fixed enquiry button never overlaps 
   the Send button, especially on mobile where columns stack */
.footer-col:last-child {
    padding-bottom: 70px;
}

.footer-col h3 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 18px;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    font-size: 16px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0; bottom: -8px;
    width: 40px; height: 3px;
    background: #ff1a1a;
}

.footer ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 8px; }

.footer-col p,
.footer-col li,
.footer-col a { color: #bdbdbd; font-size: 14px; line-height: 1.8; }

.footer-col a {
    text-decoration: none;
    transition: .3s;
    display: inline-block;
}

.footer-col a:hover { color: #ff1a1a; padding-left: 4px; }

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.social-links a {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: #1f1f1f;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .4s;
    color: #bdbdbd;
    font-size: 16px;
}

.social-links a:hover {
    background: #ff1a1a;
    color: #fff;
    transform: translateY(-5px) rotate(360deg);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    margin-top: 50px;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p { color: #666; font-size: 13px; }

/* FIX 3: fixed the ",lable," typo — was matching nothing */
.footer-feedback-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: rgb(193 187 187 / 15%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 0, 0, 0.5);
    border-radius: 10px;
    padding: 20px;
    outline: none;
}

.footer-feedback-form input,
.footer-feedback-form textarea {
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    background: transparent;
    color: #fff;
    font-size: 14px;
    resize: none;
    outline: none;
    transition: all 0.3s ease;
}

.footer-feedback-form input:focus,
.footer-feedback-form textarea:focus {
    border-color: #ff6279;
    box-shadow: 0 0 8px rgba(224,16,47,.2);
}

.footer-feedback-form input::placeholder,
.footer-feedback-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.footer-feedback-form button {
    padding: 6px 12px;
    border: none;
    border-radius: 8px;
    background: red;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
}

.footer-feedback-form button:hover {
    opacity: 0.9;
}

.rating-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.rating-group label {
    font-size: 13px;
    text-align: left;
    color: rgba(255, 255, 255, 0.7);
}

.star-rating {
    display: flex;
    gap: 6px;
    font-size: 1.3rem;
    cursor: pointer;
}

.star-rating i {
    color: rgba(255, 255, 255, 0.35);
    transition: color 0.25s ease, transform 0.15s ease;
}

.star-rating i:hover { transform: scale(1.15); }

.star-rating i.active {
    color: #f4b400;
    text-shadow: 0 0 8px rgba(244, 180, 0, 0.5);
}

.footer-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 15px;
}

@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-col:last-child { padding-bottom: 0; } /* not needed once stacked in 2-col layout above button zone */
}

@media (max-width: 600px) {
    .footer { padding: 110px 5% 30px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-col { text-align: center; }
    .footer-col h4::after { left: 50%; transform: translateX(-50%); }
    .footer-col p, .footer-col li, .footer-col a { text-align: center; }
    .footer-col a:hover { padding-left: 0; }
    .social-links { justify-content: center; }

    .footer-logo {
        display: block;
        margin: 0 auto 15px;
        max-width: 150px;
        height: auto;
    }

    /* FIX 4: on mobile, form stacks last and sits closest to the fixed button — 
       give it clearance again here */
    .footer-col:last-child {
        padding-bottom: 90px;
    }
}

/* reduce motion */
@media (prefers-reduced-motion: reduce) {
    .footer::before, .footer::after { animation: none; }
}

/* ── FLOATING ENQUIRY BUTTON ── */
.enquiry-btn-wrap {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 52px;
    height: 52px;
    z-index: 999;
}

.enquiry-btn-wrap .floating-enquiry-btn {
    position: absolute;
    inset: 0;
    z-index: 3;
    border-radius: 50%;
    border: none;
    background: #ff1a1a;
    color: #fff;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.enquiry-btn-wrap::before,
.enquiry-btn-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #ff1a1a;
    z-index: 1;
    animation: ripple 2s ease-out infinite;
}

.enquiry-btn-wrap::after { animation-delay: 1s; }

@keyframes ripple {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(2.2); opacity: 0; }
}

@media (max-width: 992px) {
    .enquiry-btn-wrap { bottom: 80px; right: 24px; width: 48px; height: 48px; }
    .enquiry-btn-wrap .floating-enquiry-btn { font-size: 20px; }
}

@media (max-width: 600px) {
    .enquiry-btn-wrap { bottom: 75px; right: 16px; width: 44px; height: 44px; }
    .enquiry-btn-wrap .floating-enquiry-btn { font-size: 18px; }
}

@media (max-width: 380px) {
    .enquiry-btn-wrap { bottom: 70px; right: 12px; width: 40px; height: 40px; }
    .enquiry-btn-wrap .floating-enquiry-btn { font-size: 16px; }
} 
	
	
	/*---------------- form success msg ---------------*/
.success-toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #28a745;
  color: #fff;
  padding: 14px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  z-index: 99999;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.success-toast.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.success-toast[hidden] {
  display: none;
}

.success-toast i {
  font-size: 20px;
}
	
	