    /* Logo Size Fix */
    .vs-logo img {
      max-width: 180px !important;
      height: auto !important;
      width: auto !important;
    }
    
    /* Mobile Logo Fix */
    .mobile-logo img {
      max-width: 150px !important;
      height: auto !important;
    }
    
    /* Sidebar Logo Fix */
    .footer-logo img {
      max-width: 160px !important;
      height: auto !important;
    }
    
    /* Responsive Logo Sizes */
    @media (max-width: 991px) {
      .vs-logo img {
        max-width: 160px !important;
      }
    }
    
    @media (max-width: 767px) {
      .vs-logo img {
        max-width: 150px !important;
      }
      .mobile-logo img {
        max-width: 160px !important;
      }
    }
    
    @media (max-width: 480px) {
      .vs-logo img {
        max-width: 140px !important;
      }
      .mobile-logo img {
        max-width: 150px !important;
      }
    }
      /* FAQ Section */
.faq-section {
  padding: 60px 0;
  background: #f9f9f9;
}

.faq-heading {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #ff681a; /* Kashi vibe color */
}

.faq-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

/* FAQ Card */
.faq-card {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.faq-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.faq-title {
  margin: 0;
}

.faq-title a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 17px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  padding: 16px 20px;
  transition: color 0.3s ease;
}

.faq-title a:hover {
  color: #ff681a;
}

/* Plus Minus Icon */
.faq-title a::after {
  content: "+";
  font-size: 20px;
  font-weight: bold;
  color: #ff681a;
  transition: transform 0.3s ease;
}

.faq-title a[aria-expanded="true"]::after {
  content: "-";
  transform: rotate(180deg);
}

/* Content */
.card-collapse {
  padding: 0 20px 15px;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 991px) {
  .faq-section .row {
    flex-direction: column;
  }
  .faq-image {
    margin-bottom: 25px;
  }
}



.floating-buttons {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

/* Common Button Style */
.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

/* Tooltip Style */
.tooltip-text {
    position: absolute;
    left: 75px;
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 10000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Tooltip Arrow */
.tooltip-text::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent rgba(0, 0, 0, 0.9) transparent transparent;
}

/* Show Tooltip on Hover */
.float-btn:hover .tooltip-text {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(0) !important;
}

/* Prevent click on tooltip */
.float-btn .tooltip-text {
    pointer-events: none !important;
}

/* Keep button clickable */
.float-btn {
    pointer-events: auto !important;
}

/* Phone Button - Blue */
.phone-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.phone-btn:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: scale(1.1) rotate(10deg) !important;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.phone-btn:hover .tooltip-text {
    opacity: 1 !important;
    visibility: visible !important;
}

.phone-btn .tooltip-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.phone-btn .tooltip-text::before {
    border-color: transparent #667eea transparent transparent;
}

/* Email Button - Pink */
.email-btn {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.email-btn:hover {
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
    transform: scale(1.1) rotate(-10deg) !important;
    box-shadow: 0 6px 20px rgba(245, 87, 108, 0.5);
}

.email-btn:hover .tooltip-text {
    opacity: 1 !important;
    visibility: visible !important;
}

.email-btn .tooltip-text {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.email-btn .tooltip-text::before {
    border-color: transparent #f093fb transparent transparent;
}

/* WhatsApp Button - Green */
.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
    transform: scale(1.1) rotate(10deg) !important;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn:hover .tooltip-text {
    opacity: 1 !important;
    visibility: visible !important;
}

.whatsapp-btn .tooltip-text {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.whatsapp-btn .tooltip-text::before {
    border-color: transparent #25D366 transparent transparent;
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-btn {
    animation: pulse 2s infinite;
}

/* Responsive */
@media (max-width: 768px) {
    .floating-buttons {
        left: 15px;
        bottom: 15px;
        gap: 12px;
    }
    
    .float-btn {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
    
    .tooltip-text {
        font-size: 13px;
        padding: 6px 12px;
        left: 70px;
    }
}

@media (max-width: 480px) {
    .floating-buttons {
        left: 10px;
        bottom: 10px;
        gap: 10px;
    }
    
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    .tooltip-text {
        font-size: 12px;
        padding: 5px 10px;
        left: 65px;
    }
}


input.wpcf7-form-control.wpcf7-submit.has-spinner {
	    width: 100%;
    padding: 10px;
    background: #ff6600;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}