/* ============================================
   GOHAP CONTACT PAGE - COMPLETE CSS
   Professional, responsive styling for contact page
   Compatible with Astra + Spectra Page Builder
   ============================================ */

/* ===================================
   RESET  BASE STYLES
   =================================== */
.gohap-contact-page * {
    box-sizing: border-box;
}

.gohap-contact-page {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1e293b;
}

/* ===================================
   HERO SECTION
   =================================== */
.gohap-contact-hero {
    padding: 80px 20px 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

.gohap-contact-hero__container {
    max-width: 900px;
    margin: 0 auto;
}

.gohap-contact-hero__label {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.gohap-contact-hero__title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
}

.gohap-contact-hero__subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto;
}

/* ===================================
   MAIN CONTACT SECTION
   =================================== */
.gohap-contact-main {
    padding: 80px 20px;
    background: #f8fafc;
}

.gohap-contact-main__container {
    max-width: 1300px;
    margin: 0 auto;
}

.gohap-contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: start;
}

/* ===================================
   CONTACT FORM STYLES
   =================================== */
.gohap-contact-form-wrapper {
    background: #ffffff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.gohap-contact-form-wrapper.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.gohap-contact-form-header {
    margin-bottom: 35px;
}

.gohap-contact-form__title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.gohap-contact-form__subtitle {
    font-size: 1rem;
    color: #64748b;
    margin: 0;
}

/* Form Fields */
.gohap-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gohap-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.gohap-form-group {
    display: flex;
    flex-direction: column;
}

.gohap-form-label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
}

.gohap-form-label .required {
    color: #ef4444;
    margin-left: 2px;
}

.gohap-form-input,
.gohap-form-select,
.gohap-form-textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    color: #1e293b;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.gohap-form-input:focus,
.gohap-form-select:focus,
.gohap-form-textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.gohap-form-input::placeholder,
.gohap-form-textarea::placeholder {
    color: #94a3b8;
}

.gohap-form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.gohap-form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Error States */
.gohap-form-input.error,
.gohap-form-select.error,
.gohap-form-textarea.error {
    border-color: #ef4444;
}

.error-message {
    display: block;
    font-size: 0.875rem;
    color: #ef4444;
    margin-top: 6px;
}

/* Checkbox */
.gohap-form-checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
}

.gohap-form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    flex-shrink: 0;
}

.gohap-checkbox-label {
    font-size: 0.9375rem;
    color: #475569;
    line-height: 1.5;
    cursor: pointer;
}

.gohap-checkbox-label a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.gohap-checkbox-label a:hover {
    text-decoration: underline;
}

/* Character Counter */
.character-counter {
    font-size: 0.875rem;
    color: #64748b;
    text-align: right;
    margin-top: 6px;
}

.character-counter.over-limit {
    color: #ef4444;
}

/* Submit Button */
.gohap-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.gohap-btn--primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.gohap-btn--primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.gohap-btn--primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.gohap-btn--secondary {
    background: transparent;
    color: #667eea;
    border-color: #667eea;
}

.gohap-btn--secondary:hover {
    background: #667eea;
    color: #ffffff;
}

.gohap-btn--large {
    padding: 18px 40px;
    font-size: 1.125rem;
}

.gohap-btn--full {
    width: 100%;
}

/* Button Loader */
.btn-loader {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Form Messages */
.gohap-form-message {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 8px;
    font-size: 0.9375rem;
    line-height: 1.5;
    margin-top: 10px;
}

.gohap-form-message--success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.gohap-form-message--error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.gohap-form-message .message-icon {
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* ===================================
   CONTACT INFO SIDEBAR
   =================================== */
.gohap-contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease 0.2s;
}

.gohap-contact-info-wrapper.animate-in {
    opacity: 1;
    transform: translateX(0);
}

/* Contact Cards */
.gohap-contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gohap-contact-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.gohap-contact-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.gohap-contact-card:hover {
    border-color: #667eea;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.12);
}

.gohap-contact-card--highlight {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    border-color: #10b981;
}

.gohap-contact-card--highlight:hover {
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    border-color: #059669;
}

.gohap-contact-card__icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.gohap-contact-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.gohap-contact-card--highlight .gohap-contact-card__title {
    color: #ffffff;
}

.gohap-contact-card__text {
    font-size: 0.9375rem;
    color: #64748b;
    margin-bottom: 15px;
}

.gohap-contact-card--highlight .gohap-contact-card__text {
    color: rgba(255, 255, 255, 0.9);
}

.gohap-contact-card__link {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #667eea;
    text-decoration: none;
    margin-bottom: 8px;
    transition: all 0.2s ease;
}

.gohap-contact-card__link:last-child {
    margin-bottom: 0;
}

.gohap-contact-card__link:hover {
    color: #5568d3;
    transform: translateX(3px);
}

.gohap-contact-card--highlight .gohap-contact-card__link {
    color: #ffffff;
}

.gohap-contact-card__link--button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: #ffffff;
    color: #10b981;
    border-radius: 8px;
    font-weight: 700;
    margin-top: 10px;
}

.gohap-contact-card__link--button:hover {
    background: #f0fdf4;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Copy Notification */
.copy-notification {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: #1e293b;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    animation: fadeInOut 2s ease;
    pointer-events: none;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0; }
    10%, 90% { opacity: 1; }
}

/* ===================================
   SOCIAL MEDIA SECTION
   =================================== */
.gohap-contact-social {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
}

.gohap-contact-social__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

.gohap-contact-social__links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.gohap-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #f8fafc;
    color: #475569;
    border-radius: 10px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    text-decoration: none;
}

.gohap-social-link:hover {
    background: #667eea;
    color: #ffffff;
    border-color: #667eea;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(102, 126, 234, 0.3);
}

.gohap-social-link:focus-visible {
    outline: 3px solid #3b82f6;
    outline-offset: 2px;
}

/* ===================================
   BUSINESS HOURS SECTION
   =================================== */
.gohap-contact-hours {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
}

.gohap-contact-hours__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

.gohap-contact-hours__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.gohap-hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
}

.gohap-hours-item:last-child {
    border-bottom: none;
}

.gohap-hours-day {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #334155;
}

.gohap-hours-time {
    font-size: 0.9375rem;
    color: #64748b;
}

.gohap-contact-hours__note {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.6;
    padding: 15px;
    background: #f8fafc;
    border-radius: 8px;
    margin: 0;
}

.gohap-contact-hours__note strong {
    color: #1e293b;
}

/* ===================================
   FAQ SECTION
   =================================== */
.gohap-contact-faq {
    padding: 80px 20px;
    background: #ffffff;
}

.gohap-contact-faq__container {
    max-width: 1200px;
    margin: 0 auto;
}

.gohap-contact-faq__header {
    text-align: center;
    margin-bottom: 50px;
}

.gohap-contact-faq__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 15px;
}

.gohap-contact-faq__subtitle {
    font-size: 1.125rem;
    color: #64748b;
}

.gohap-contact-faq__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.gohap-faq-card {
    background: #f8fafc;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.gohap-faq-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.gohap-faq-card:hover {
    border-color: #667eea;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.12);
    transform: translateY(-5px);
}

.gohap-faq-card__question {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.gohap-faq-card__answer {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #475569;
    margin: 0;
}

/* ===================================
   MAP SECTION
   =================================== */
.gohap-contact-map {
    padding: 80px 20px;
    background: #f8fafc;
}

.gohap-contact-map__container {
    max-width: 1200px;
    margin: 0 auto;
}

.gohap-contact-map__title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 40px;
}

.gohap-contact-map__embed {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.gohap-contact-map__embed iframe {
    display: block;
    width: 100%;
    border: none;
}

/* ===================================
   CTA SECTION
   =================================== */
.gohap-contact-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: #ffffff;
    text-align: center;
}

.gohap-contact-cta__container {
    max-width: 800px;
    margin: 0 auto;
}

.gohap-contact-cta__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
}

.gohap-contact-cta__text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Tablets (1024px and below) */
@media (max-width: 1024px) {
    .gohap-contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .gohap-contact-form-wrapper,
    .gohap-contact-info-wrapper {
        transform: none;
    }
    
    .gohap-contact-info-wrapper {
        transition-delay: 0s;
    }
}

/* Tablets (768px and below) */
@media (max-width: 768px) {
    .gohap-contact-hero {
        padding: 60px 20px 50px;
    }
    
    .gohap-contact-hero__title {
        font-size: 2rem;
    }
    
    .gohap-contact-hero__subtitle {
        font-size: 1.0625rem;
    }
    
    .gohap-contact-main {
        padding: 60px 20px;
    }
    
    .gohap-contact-form-wrapper {
        padding: 35px 25px;
    }
    
    .gohap-contact-form__title {
        font-size: 1.75rem;
    }
    
    .gohap-form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gohap-contact-faq {
        padding: 60px 20px;
    }
    
    .gohap-contact-faq__title {
        font-size: 2rem;
    }
    
    .gohap-contact-faq__grid {
        grid-template-columns: 1fr;
    }
    
    .gohap-contact-map {
        padding: 60px 20px;
    }
    
    .gohap-contact-map__title {
        font-size: 1.75rem;
    }
    
    .gohap-contact-map__embed iframe {
        height: 350px;
    }
    
    .gohap-contact-cta {
        padding: 60px 20px;
    }
    
    .gohap-contact-cta__title {
        font-size: 2rem;
    }
    
    .gohap-contact-cta__text {
        font-size: 1rem;
    }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
    .gohap-contact-hero__title {
        font-size: 1.75rem;
    }
    
    .gohap-contact-hero__subtitle {
        font-size: 1rem;
    }
    
    .gohap-contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .gohap-contact-form__title {
        font-size: 1.5rem;
    }
    
    .gohap-contact-form__subtitle {
        font-size: 0.9375rem;
    }
    
    .gohap-form-input,
    .gohap-form-select,
    .gohap-form-textarea {
        padding: 12px 14px;
        font-size: 0.9375rem;
    }
    
    .gohap-btn--large {
        padding: 16px 32px;
        font-size: 1rem;
    }
    
    .gohap-contact-card {
        padding: 25px 20px;
    }
    
    .gohap-contact-card__icon {
        font-size: 2rem;
    }
    
    .gohap-contact-card__title {
        font-size: 1.125rem;
    }
    
    .gohap-contact-social__links {
        justify-content: center;
    }
    
    .gohap-social-link {
        width: 44px;
        height: 44px;
    }
    
    .gohap-faq-card {
        padding: 25px 20px;
    }
    
    .gohap-faq-card__question {
        font-size: 1rem;
    }
    
    .gohap-faq-card__answer {
        font-size: 0.875rem;
    }
    
    .gohap-contact-map__embed iframe {
        height: 300px;
    }
    
    .gohap-contact-cta__title {
        font-size: 1.75rem;
    }
}

/* ===================================
   ANIMATION UTILITIES
   =================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Staggered animation delays */
.gohap-contact-card:nth-child(1) { transition-delay: 0.1s; }
.gohap-contact-card:nth-child(2) { transition-delay: 0.2s; }
.gohap-contact-card:nth-child(3) { transition-delay: 0.3s; }
.gohap-contact-card:nth-child(4) { transition-delay: 0.4s; }

.gohap-faq-card:nth-child(1) { transition-delay: 0.1s; }
.gohap-faq-card:nth-child(2) { transition-delay: 0.2s; }
.gohap-faq-card:nth-child(3) { transition-delay: 0.3s; }
.gohap-faq-card:nth-child(4) { transition-delay: 0.4s; }

/* ===================================
   PRINT STYLES
   =================================== */
@media print {
    .gohap-contact-hero,
    .gohap-contact-cta,
    .gohap-contact-map {
        display: none;
    }
    
    .gohap-contact-form-wrapper,
    .gohap-contact-info-wrapper {
        box-shadow: none;
        border: 1px solid #000;
    }
    
    .gohap-btn {
        display: none;
    }
}

/* ===================================
   ACCESSIBILITY ENHANCEMENTS
   =================================== */

/* Focus visible styles */
.gohap-form-input:focus-visible,
.gohap-form-select:focus-visible,
.gohap-form-textarea:focus-visible,
.gohap-btn:focus-visible,
.gohap-contact-card__link:focus-visible {
    outline: 3px solid #3b82f6;
    outline-offset: 2px;
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .gohap-form-input,
    .gohap-form-select,
    .gohap-form-textarea,
    .gohap-contact-card,
    .gohap-faq-card {
        border-width: 3px;
    }
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
    .gohap-contact-page {
        color: #e2e8f0;
    }
    
    .gohap-contact-main,
    .gohap-contact-map {
        background: #0f172a;
    }
    
    .gohap-contact-faq {
        background: #1e293b;
    }
    
    .gohap-contact-form-wrapper,
    .gohap-contact-card,
    .gohap-contact-social,
    .gohap-contact-hours {
        background: #334155;
        border-color: #475569;
    }
    
    .gohap-contact-form__title,
    .gohap-contact-card__title,
    .gohap-contact-social__title,
    .gohap-contact-hours__title,
    .gohap-contact-faq__title,
    .gohap-contact-map__title,
    .gohap-faq-card__question {
        color: #f1f5f9;
    }
    
    .gohap-contact-form__subtitle,
    .gohap-contact-card__text,
    .gohap-faq-card__answer {
        color: #cbd5e1;
    }
    
    .gohap-form-label {
        color: #e2e8f0;
    }
    
    .gohap-form-input,
    .gohap-form-select,
    .gohap-form-textarea {
        background: #1e293b;
        border-color: #475569;
        color: #e2e8f0;
    }
    
    .gohap-form-input::placeholder,
    .gohap-form-textarea::placeholder {
        color: #64748b;
    }
    
    .gohap-faq-card {
        background: #1e293b;
    }
    
    .gohap-contact-hours__note {
        background: #1e293b;
    }
}

/* ===================================
   LOADING STATES
   =================================== */
.gohap-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.6;
}

.gohap-loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 4px solid #f3f4f6;
    border-top-color: #667eea;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* ===================================
   CUSTOM SCROLLBAR
   =================================== */
.gohap-contact-page::-webkit-scrollbar {
    width: 12px;
}

.gohap-contact-page::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.gohap-contact-page::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 6px;
}

.gohap-contact-page::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* ===================================
   SELECTION STYLES
   =================================== */
.gohap-contact-page ::selection {
    background: #667eea;
    color: #ffffff;
}

.gohap-contact-page ::-moz-selection {
    background: #667eea;
    color: #ffffff;
}

/* ===================================
   UTILITY CLASSES
   =================================== */

/* Text alignment */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

/* Spacing utilities */
.mb-10 { margin-bottom: 10px; }
.mb-15 { margin-bottom: 15px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mb-50 { margin-bottom: 50px; }

.mt-10 { margin-top: 10px; }
.mt-15 { margin-top: 15px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }

.p-10 { padding: 10px; }
.p-15 { padding: 15px; }
.p-20 { padding: 20px; }
.p-30 { padding: 30px; }

/* Display utilities */
.d-none { display: none; }
.d-block { display: block; }
.d-inline-block { display: inline-block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

/* Flex utilities */
.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex-column {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

/* Gap utilities */
.gap-10 { gap: 10px; }
.gap-15 { gap: 15px; }
.gap-20 { gap: 20px; }
.gap-30 { gap: 30px; }

/* Shadow utilities */
.shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.shadow {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.shadow-md {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-lg {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.shadow-xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Border radius utilities */
.rounded-sm { border-radius: 4px; }
.rounded { border-radius: 8px; }
.rounded-md { border-radius: 12px; }
.rounded-lg { border-radius: 16px; }
.rounded-xl { border-radius: 20px; }
.rounded-full { border-radius: 9999px; }

/* Position utilities */
.position-relative { position: relative; }
.position-absolute { position: absolute; }
.position-fixed { position: fixed; }
.position-sticky { position: sticky; }

/* Overflow utilities */
.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }
.overflow-x-auto { overflow-x: auto; }
.overflow-y-auto { overflow-y: auto; }

/* Z-index utilities */
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }
.z-100 { z-index: 100; }
.z-999 { z-index: 999; }

/* ===================================
   BADGE STYLES (for form labels)
   =================================== */
.gohap-badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gohap-badge--new {
    background: #10b981;
    color: #ffffff;
}

.gohap-badge--popular {
    background: #f59e0b;
    color: #ffffff;
}

.gohap-badge--required {
    background: #ef4444;
    color: #ffffff;
}

/* ===================================
   TOOLTIP STYLES
   =================================== */
.gohap-tooltip {
    position: relative;
    display: inline-block;
}

.gohap-tooltip::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%) translateY(-5px);
    padding: 8px 12px;
    background: #1e293b;
    color: #ffffff;
    font-size: 0.875rem;
    white-space: nowrap;
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 100;
}

.gohap-tooltip::after {
    content: "";
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    border: 6px solid transparent;
    border-top-color: #1e293b;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.gohap-tooltip:hover::before,
.gohap-tooltip:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ===================================
   DIVIDER STYLES
   =================================== */
.gohap-divider {
    width: 100%;
    height: 1px;
    background: #e2e8f0;
    margin: 30px 0;
}

.gohap-divider--thick {
    height: 2px;
}

.gohap-divider--gradient {
    background: linear-gradient(90deg, transparent 0%, #667eea 50%, transparent 100%);
}

/* ===================================
   PULSE ANIMATION (for attention)
   =================================== */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.gohap-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* ===================================
   BOUNCE ANIMATION
   =================================== */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.gohap-bounce {
    animation: bounce 1s infinite;
}

/* ===================================
   FLOATING ANIMATION
   =================================== */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.gohap-float {
    animation: float 3s ease-in-out infinite;
}

/* ===================================
   SKELETON LOADING (Optional)
   =================================== */
.gohap-skeleton {
    background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
    background-size: 200% 100%;
    animation: loading 1.5s ease-in-out infinite;
    border-radius: 8px;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.gohap-skeleton--text {
    height: 1em;
    margin-bottom: 0.5em;
}

.gohap-skeleton--heading {
    height: 2em;
    margin-bottom: 1em;
}

.gohap-skeleton--card {
    height: 200px;
}

/* ===================================
   CONTAINER WIDTH ADJUSTMENTS
   =================================== */
@media (min-width: 1400px) {
    .gohap-contact-hero__container,
    .gohap-contact-main__container,
    .gohap-contact-faq__container,
    .gohap-contact-map__container,
    .gohap-contact-cta__container {
        max-width: 1320px;
    }
}

/* ===================================
   SCREEN READER ================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ===================================
   END OF CSS
   =================================== */.wp-block-uagb-container{display:flex;position:relative;box-sizing:border-box;transition-property:box-shadow;transition-duration:0.2s;transition-timing-function:ease}.wp-block-uagb-container .spectra-container-link-overlay{bottom:0;left:0;position:absolute;right:0;top:0;z-index:10}.wp-block-uagb-container.uagb-is-root-container{margin-left:auto;margin-right:auto}.wp-block-uagb-container.alignfull.uagb-is-root-container .uagb-container-inner-blocks-wrap{display:flex;position:relative;box-sizing:border-box;margin-left:auto !important;margin-right:auto !important}.wp-block-uagb-container .wp-block-uagb-blockquote,.wp-block-uagb-container .wp-block-spectra-pro-login,.wp-block-uagb-container .wp-block-spectra-pro-register{margin:unset}.wp-block-uagb-container .uagb-container__video-wrap{height:100%;width:100%;top:0;left:0;position:absolute;overflow:hidden;-webkit-transition:opacity 1s;-o-transition:opacity 1s;transition:opacity 1s}.wp-block-uagb-container .uagb-container__video-wrap video{max-width:100%;width:100%;height:100%;margin:0;line-height:1;border:none;display:inline-block;vertical-align:baseline;-o-object-fit:cover;object-fit:cover;background-size:cover}.wp-block-uagb-container.uagb-layout-grid{display:grid;width:100%}.wp-block-uagb-container.uagb-layout-grid>.uagb-container-inner-blocks-wrap{display:inherit;width:inherit}.wp-block-uagb-container.uagb-layout-grid>.uagb-container-inner-blocks-wrap>.wp-block-uagb-container{max-width:unset !important;width:unset !important}.wp-block-uagb-container.uagb-layout-grid>.wp-block-uagb-container{max-width:unset !important;width:unset !important}.wp-block-uagb-container.uagb-layout-grid.uagb-is-root-container{margin-left:auto;margin-right:auto}.wp-block-uagb-container.uagb-layout-grid.uagb-is-root-container>.wp-block-uagb-container{max-width:unset !important;width:unset !important}.wp-block-uagb-container.uagb-layout-grid.alignwide.uagb-is-root-container{margin-left:auto;margin-right:auto}.wp-block-uagb-container.uagb-layout-grid.alignfull.uagb-is-root-container .uagb-container-inner-blocks-wrap{display:inherit;position:relative;box-sizing:border-box;margin-left:auto !important;margin-right:auto !important}body .wp-block-uagb-container>.uagb-container-inner-blocks-wrap>*:not(.wp-block-uagb-container):not(.wp-block-uagb-column):not(.wp-block-uagb-container):not(.wp-block-uagb-section):not(.uagb-container__shape):not(.uagb-container__video-wrap):not(.wp-block-spectra-pro-register):not(.wp-block-spectra-pro-login):not(.uagb-slider-container):not(.spectra-image-gallery__control-lightbox):not(.wp-block-uagb-info-box),body .wp-block-uagb-container>.uagb-container-inner-blocks-wrap,body .wp-block-uagb-container>*:not(.wp-block-uagb-container):not(.wp-block-uagb-column):not(.wp-block-uagb-container):not(.wp-block-uagb-section):not(.uagb-container__shape):not(.uagb-container__video-wrap):not(.wp-block-spectra-pro-register):not(.wp-block-spectra-pro-login):not(.uagb-slider-container):not(.spectra-container-link-overlay):not(.spectra-image-gallery__control-lightbox):not(.wp-block-uagb-lottie):not(.uagb-faq__outer-wrap){min-width:unset !important;width:100%;position:relative}body .ast-container .wp-block-uagb-container>.uagb-container-inner-blocks-wrap>.wp-block-uagb-container>ul,body .ast-container .wp-block-uagb-container>.uagb-container-inner-blocks-wrap>.wp-block-uagb-container ol,body .ast-container .wp-block-uagb-container>.uagb-container-inner-blocks-wrap>ul,body .ast-container .wp-block-uagb-container>.uagb-container-inner-blocks-wrap ol{max-width:-webkit-fill-available;margin-block-start:0;margin-block-end:0;margin-left:20px}.ast-plain-container .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .uagb-is-root-container.wp-block-uagb-container.alignwide{margin-left:auto;margin-right:auto}.uagb-container__shape{overflow:hidden;position:absolute;left:0;width:100%;line-height:0;direction:ltr}.uagb-container__shape-top{top:-3px}.uagb-container__shape-bottom{bottom:-3px}.uagb-container__shape.uagb-container__invert.uagb-container__shape-bottom,.uagb-container__shape.uagb-container__invert.uagb-container__shape-top{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.uagb-container__shape.uagb-container__shape-flip svg{transform:translateX(-50%) rotateY(180deg)}.uagb-container__shape svg{display:block;width:-webkit-calc(100% + 1.3px);width:calc(100% + 1.3px);position:relative;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.uagb-container__shape .uagb-container__shape-fill{-webkit-transform-origin:center;-ms-transform-origin:center;transform-origin:center;-webkit-transform:rotateY(0deg);transform:rotateY(0deg)}.uagb-container__shape.uagb-container__shape-above-content{z-index:9;pointer-events:none}.nv-single-page-wrap .nv-content-wrap.entry-content .wp-block-uagb-container.alignfull{margin-left:calc(50% - 50vw);margin-right:calc(50% - 50vw)}@media only screen and (max-width: 767px){.wp-block-uagb-container .wp-block-uagb-advanced-heading{width:-webkit-fill-available}}.wp-block-uagb-image--align-none{justify-content:center}
.wp-block-uagb-container.uagb-block-840e4643 .uagb-container__shape-top svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-840e4643 .uagb-container__shape.uagb-container__shape-top .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-840e4643 .uagb-container__shape-bottom svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-840e4643 .uagb-container__shape.uagb-container__shape-bottom .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-840e4643 .uagb-container__video-wrap video{opacity: 1;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-840e4643{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-840e4643 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1200px);max-width: var(--inner-content-custom-width);width: 100%;flex-direction: column;align-items: center;justify-content: center;flex-wrap: nowrap;row-gap: 20px;column-gap: 20px;}.wp-block-uagb-container.uagb-block-840e4643{box-shadow: 0px 0px   #00000070 ;padding-top: 10px;padding-bottom: 10px;padding-left: 10px;padding-right: 10px;margin-top:  !important;margin-bottom:  !important;overflow: visible;order: initial;border-color: inherit;row-gap: 20px;column-gap: 20px;}@media only screen and (max-width: 976px) {.wp-block-uagb-container.uagb-is-root-container .uagb-block-840e4643{width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-840e4643 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1024px);max-width: var(--inner-content-custom-width);width: 100%;}.wp-block-uagb-container.uagb-block-840e4643{padding-top: 10px;padding-bottom: 10px;padding-left: 10px;padding-right: 10px;margin-top:  !important;margin-bottom:  !important;order: initial;}}@media only screen and (max-width: 767px) {.wp-block-uagb-container.uagb-is-root-container .uagb-block-840e4643{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-840e4643 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 767px);max-width: var(--inner-content-custom-width);width: 100%;flex-wrap: wrap;}.wp-block-uagb-container.uagb-block-840e4643{padding-top: 10px;padding-bottom: 10px;padding-left: 10px;padding-right: 10px;margin-top:  !important;margin-bottom:  !important;order: initial;}}.uag-blocks-common-selector{z-index:var(--z-index-desktop) !important}@media (max-width: 976px){.uag-blocks-common-selector{z-index:var(--z-index-tablet) !important}}@media (max-width: 767px){.uag-blocks-common-selector{z-index:var(--z-index-mobile) !important}}
