/* ===== SECTION STYLING ===== */

/* Round corners on all sections */
.container,
.onepress-section,
.fp-section,
.container-fluid {
  border-radius: 18px;
}

/* Section lift effect on scroll/hover */
.onepress-section,
.container,
.fp-section {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.onepress-section:hover,
.container:hover,
.fp-section:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

/* Alternative: Apply lift effect on scroll (if using intersection observer) */
.onepress-section.in-view {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

/* ===== BUTTON STYLING ===== */

/* All buttons with 30px radius */
button,
.btn,
.button,
a.button,
input[type="button"],
input[type="submit"],
.onepress-btn {
  border-radius: 30px !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Button lift on hover */
button:hover,
.btn:hover,
.button:hover,
a.button:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
.onepress-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Button lift on active/click */
button:active,
.btn:active,
.button:active,
a.button:active,
input[type="button"]:active,
input[type="submit"]:active,
.onepress-btn:active {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

/* Focus state for accessibility */
button:focus,
.btn:focus,
.button:focus,
a.button:focus,
input[type="button"]:focus,
input[type="submit"]:focus,
.onepress-btn:focus {
  outline: 2px solid #00bcd4;
  outline-offset: 2px;
}

/* ===== OPTIONAL: CARD/BOX STYLING ===== */

/* If you have content cards or boxes */
.card,
.feature-box,
.service-item,
.testimonial,
[class*="box"] {
  border-radius: 18px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.card:hover,
.feature-box:hover,
.service-item:hover,
.testimonial:hover,
[class*="box"]:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}
/* AirTech Mike SMS Widget - Completely Isolated */
.floating-text-widget-airtech {
    position: fixed !important;
    bottom: 24px !important;
    right: 24px !important;
    z-index: 9999999 !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

.airtech-text-button {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    background: #be472f !important;
    border: none !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 16px rgba(190, 71, 47, 0.4) !important;
    transition: all 0.3s ease !important;
    padding: 0 !important;
    margin: 0 !important;
    transform: none !important;
}

.airtech-text-button:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 8px 24px rgba(190, 71, 47, 0.6) !important;
}

.airtech-text-button:active {
    transform: scale(0.98) !important;
}

.airtech-text-icon {
    color: white !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.airtech-text-modal {
    position: fixed !important;
    bottom: 100px !important;
    right: 24px !important;
    background: white !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15) !important;
    padding: 20px !important;
    width: 320px !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;
}

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

.airtech-modal-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 16px !important;
    border-bottom: 1px solid #eee !important;
    padding-bottom: 12px !important;
    margin: 0 !important;
}

.airtech-modal-header h3 {
    margin: 0 !important;
    font-size: 16px !important;
    color: #333 !important;
    font-weight: 600 !important;
}

.airtech-close-btn {
    background: none !important;
    border: none !important;
    font-size: 24px !important;
    color: #999 !important;
    cursor: pointer !important;
    padding: 0 !important;
    line-height: 1 !important;
}

.airtech-close-btn:hover {
    color: #333 !important;
}

.airtech-modal-form {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}

.airtech-form-input {
    padding: 10px 12px !important;
    border: 1px solid #ddd !important;
    border-radius: 6px !important;
    font-size: 14px !important;
    font-family: inherit !important;
    width: 100% !important;
    transition: border-color 0.2s ease !important;
    box-sizing: border-box !important;
}

.airtech-form-input:focus {
    outline: none !important;
    border-color: #be472f !important;
    box-shadow: 0 0 0 3px rgba(190, 71, 47, 0.1) !important;
}

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

.airtech-send-btn {
    padding: 12px !important;
    background: #be472f !important;
    color: white !important;
    border: none !important;
    border-radius: 6px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    transform: none !important;
}

.airtech-send-btn:hover {
    background: #a63d21 !important;
    transform: scale(1.02) !important;
}

.airtech-send-btn:active {
    transform: scale(0.98) !important;
}

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

@media (max-width: 480px) {
    .floating-text-widget-airtech {
        bottom: 16px !important;
        right: 16px !important;
    }
    .airtech-text-modal {
        bottom: 90px !important;
        right: 16px !important;
        width: calc(100vw - 32px) !important;
    }
}
