/* iHeRQ Widget - Simple & Clean - Compact Version */
.floating-text-widget-iherq {
    position: fixed !important;
    bottom: 24px !important;
    right: 24px !important;
    z-index: 9999999 !important;
}

.iherq-text-button {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    background: #941971 !important;
    border: 3px solid white !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 20px rgba(148, 25, 113, 0.4) !important;
    transition: all 0.3s ease !important;
    padding: 0 !important;
    margin: 0 !important;
}

.iherq-text-button:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 8px 28px rgba(148, 25, 113, 0.6) !important;
}

.iherq-text-button:active {
    transform: scale(0.95) !important;
}

.iherq-text-modal {
    position: fixed !important;
    bottom: 95px !important;
    right: 24px !important;
    background: white !important;
    border-radius: 16px !important;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2) !important;
    width: 340px !important;
    max-width: calc(100vw - 48px) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(20px) scale(0.9) !important;
    transition: all 0.3s ease !important;
    z-index: 9999998 !important;
}

.iherq-text-modal.open {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) scale(1) !important;
}

.iherq-modal-header {
    background: linear-gradient(135deg, #941971 0%, #6d1354 100%) !important;
    padding: 16px !important;
    position: relative !important;
    text-align: center !important;
    border-radius: 16px 16px 0 0 !important;
}

.iherq-modal-header h3 {
    color: white !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    margin: 0 !important;
    padding-right: 30px !important;
}

.iherq-close-btn {
    position: absolute !important;
    top: 10px !important;
    right: 10px !important;
    background: none !important;
    border: none !important;
    font-size: 26px !important;
    color: white !important;
    cursor: pointer !important;
    padding: 0 !important;
    line-height: 1 !important;
}

.iherq-close-btn:hover {
    opacity: 0.8 !important;
}

.iherq-modal-intro {
    padding: 14px 18px 6px !important;
    text-align: center !important;
}

.iherq-modal-intro p {
    margin: 0 !important;
    font-size: 14px !important;
    color: #666 !important;
    font-weight: 700 !important;
}

.iherq-modal-form {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    padding: 14px 18px !important;
}

.iherq-form-input {
    padding: 10px 12px !important;
    border: 1px solid #ddd !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.iherq-form-input:focus {
    outline: none !important;
    border-color: #941971 !important;
    box-shadow: 0 0 0 3px rgba(148, 25, 113, 0.1) !important;
}

.iherq-form-input.iherq-message {
    min-height: 90px !important;
    resize: vertical !important;
}

.iherq-send-btn {
    padding: 14px 22px !important;
    background: #941971 !important;
    color: white !important;
    border: none !important;
    border-radius: 30px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    margin-top: 6px !important;
}

.iherq-send-btn:hover {
    background: #6d1354 !important;
    transform: translateY(-3px) !important;
}

.iherq-send-btn:active {
    transform: translateY(-1px) !important;
}

.iherq-success-message {
    color: #22c55e !important;
    font-size: 13px !important;
    text-align: center !important;
    display: none !important;
    margin-top: 10px !important;
}

.iherq-modal-footer {
    padding: 14px 18px !important;
    border-top: 1px solid #eee !important;
    text-align: center !important;
    background: #f9f9f9 !important;
    border-radius: 0 0 16px 16px !important;
}

.iherq-modal-footer p {
    margin: 0 0 6px 0 !important;
    font-size: 12px !important;
    color: #333 !important;
}

.iherq-modal-footer p:last-child {
    margin-bottom: 0 !important;
    color: #666 !important;
}

.iherq-modal-footer strong {
    color: #941971 !important;
}

@media (max-width: 480px) {
    .floating-text-widget-iherq {
        bottom: 16px !important;
        right: 16px !important;
    }
    .iherq-text-button {
        width: 55px !important;
        height: 55px !important;
    }
    .iherq-text-modal {
        bottom: 75px !important;
        right: 16px !important;
        width: calc(100vw - 32px) !important;
    }
}


/* ===== YOUR PAGE CSS ===== */

/* Main container styling */
body {
  background-color: #f2f2f2;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  margin: 0;
  padding: 0;
}

/* Common section styling */
section {
  max-width: 1280px;
  margin: 0 auto 20px;
  background-color: #FFFFFF;
  border-radius: 30px;
  box-shadow: 0 8px 10px rgba(0,0,0,0.1);
  padding: 30px 20px;
  transition: all 0.3s ease;
}

/* Hover effect only on desktop */
@media (min-width: 768px) {
  section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 16px rgba(0,0,0,0.15);
  }
}

/* Main title styling */
section h2 {
  text-align: center;
  font-size: 32px;
  color: #000000;
  margin-bottom: 15px;
  line-height: 1.2;
}

/* Paragraph text styling */
section p {
  margin-bottom: 15px;
  font-size: 16px;
}

/* Highlighted call-to-action text */
section strong {
  color: #941971;
  font-weight: 600;
}

/* Services section specific styling */
.section.services {
  padding-top: 20px;
  padding-bottom: 20px;
  margin-top: 0;
  margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  body {
    padding: 10px;
  }
  
  section {
    border-radius: 15px;
    padding: 20px 15px;
    margin: 0 auto 15px;
  }
  
  section h2 {
    font-size: 24px;
  }
  
  section p {
    font-size: 15px;
  }
}

/* Handle extra large screens */
@media (min-width: 1440px) {
  section {
    padding: 40px;
  }
  
  section h2 {
    font-size: 36px;
  }
  
  section p {
    font-size: 17px;
  }
}
