/* No inline styles - SEO optimization */

/* Remove spinner from number inputs */
.no-spinner {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Hide loading overlay */
.loading-hidden {
    display: none !important;
}

/* Custom form styles */
.form-no-appearance {
    -webkit-appearance: none;
    appearance: none;
}

/* Responsive iframe container */
.responsive-iframe-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Error page styles */
.error-container {
    max-width: 600px;
}

/* Background styles */
.bg-dark-overlay {
    background-color: rgba(0, 0, 0, 0.7);
}

.bg-light-gray {
    background-color: #f8f9fa;
}

/* Utility classes */
.min-h-100 {
    min-height: 100px;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Loading states */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Service highlight box */
.service-highlight-box {
    background-color: #0a2342;
    padding: 40px;
    border-radius: 10px;
    color: white;
    text-align: center;
}

.service-highlight-title {
    color: #ff9d00;
    margin-bottom: 20px;
}

.service-highlight-text {
    margin-bottom: 25px;
}

/* Trust badges */
.trust-badges-container {
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* Zodiac background */
.zodiac-bg-overlay {
    height: 12rem;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}