/**
 * ABATUR Hotel Booking - Frontend Booking Form Styles
 * Mobile-First Responsive Design
 *
 * @package ABATUR_Hotel_Booking
 * @subpackage Assets/CSS  
 * @since 1.3.0
 */

/* === CSS VARIABLES === */
:root {
    --ahb-primary: #2e1a47;
    --ahb-primary-light: #a61068;
    --ahb-primary-dark: #6a0a41;
    --ahb-secondary: #9678d2;
    --ahb-danger: #dc3545;
    --ahb-warning: #ffc107;
    --ahb-info: #17a2b8;
    
    --ahb-gray-50: #f8f9fa;
    --ahb-gray-100: #e9ecef;
    --ahb-gray-200: #dee2e6;
    --ahb-gray-300: #ced4da;
    --ahb-gray-400: #adb5bd;
    --ahb-gray-500: #6c757d;
    --ahb-gray-600: #495057;
    --ahb-gray-700: #343a40;
    --ahb-gray-800: #212529;
    --ahb-gray-900: #000000;
    
    --ahb-white: #ffffff;
    --ahb-black: #000000;
    
    --ahb-border-radius: 8px;
    --ahb-border-radius-sm: 4px;
    --ahb-border-radius-lg: 12px;
    
    --ahb-shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --ahb-shadow: 0 4px 6px rgba(0,0,0,0.1);
    --ahb-shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    
    --ahb-transition: all 0.3s ease;
    --ahb-transition-fast: all 0.15s ease;
}

/* === BASE STYLES === */
.ahb-booking-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: var(--ahb-gray-700);
}

.ahb-booking-form-container * {
    box-sizing: border-box;
}

/* === FORM HEADER === */
.ahb-form-header {
    background: linear-gradient(135deg, var(--ahb-primary) 0%, var(--ahb-primary-dark) 100%);
    color: var(--ahb-white);
    padding: 24px;
    border-radius: var(--ahb-border-radius) var(--ahb-border-radius) 0 0;
    margin-bottom: 0;
    text-align: center;
}

.ahb-event-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.ahb-badge-icon {
    font-size: 16px;
}

.ahb-form-title {
    margin: 0 0 16px 0;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
}

.ahb-form-description {
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.5;
    opacity: 0.9;
}

.ahb-event-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.ahb-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px;
    border-radius: var(--ahb-border-radius-sm);
}

.ahb-info-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.ahb-info-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ahb-info-content strong {
    font-weight: 600;
}

.ahb-info-content span {
    font-size: 14px;
    opacity: 0.8;
}

.ahb-process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.ahb-step-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

.ahb-step-number {
    background: var(--ahb-white);
    color: var(--ahb-primary);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
}

.ahb-step-arrow {
    opacity: 0.7;
    font-size: 12px;
}

/* === MAIN FORM === */
.ahb-booking-form {
    background: var(--ahb-white);
    border-radius: 0 0 var(--ahb-border-radius) var(--ahb-border-radius);
    box-shadow: var(--ahb-shadow-lg);
    overflow: hidden;
}

/* === PROGRESS INDICATOR === */
.ahb-form-progress {
    padding: 20px 24px;
    border-bottom: 1px solid var(--ahb-gray-200);
    background: var(--ahb-gray-50);
}

.ahb-progress-bar {
    background: var(--ahb-gray-200);
    height: 6px;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 16px;
}

.ahb-progress-fill {
    background: linear-gradient(90deg, var(--ahb-primary) 0%, var(--ahb-primary-light) 100%);
    height: 100%;
    width: 0%;
    transition: width 0.5s ease;
}

.ahb-progress-steps {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
}

.ahb-step {
    font-size: 12px;
    color: var(--ahb-gray-500);
    font-weight: 500;
    text-align: center;
    transition: var(--ahb-transition-fast);
    padding: 4px 8px;
    border-radius: var(--ahb-border-radius-sm);
    flex: 1;
    min-width: 80px;
}

.ahb-step.active {
    color: var(--ahb-primary);
    background: rgba(44, 90, 160, 0.1);
    font-weight: 600;
}

.ahb-step.completed {
    color: var(--ahb-secondary);
    font-weight: 600;
}

/* === FORM SECTIONS === */
.ahb-form-section {
    display: none;
    padding: 32px 24px;
    min-height: 400px;
}

.ahb-form-section.active {
    display: block;
    animation: ahb-fadeInUp 0.4s ease;
}

.ahb-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 24px 0;
    font-size: 22px;
    font-weight: 700;
    color: var(--ahb-gray-800);
    border-bottom: 2px solid var(--ahb-primary);
    padding-bottom: 12px;
}

.ahb-step-number {
    background: var(--ahb-primary);
    color: var(--ahb-white);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.ahb-subsection-title {
    margin: 20px 0 16px 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--ahb-gray-700);
}

/* === FIELD GROUPS === */
.ahb-field-group {
    margin-bottom: 20px;
}

.ahb-field-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.ahb-field-half {
    flex: 1;
    min-width: 280px;
}

.ahb-field-third {
    flex: 1;
    min-width: 200px;
}

/* === FORM LABELS === */
.ahb-field-label {
    display: block;
    font-weight: 600;
    color: var(--ahb-gray-700);
    margin-bottom: 6px;
    font-size: 14px;
    line-height: 1.4;
}

.ahb-required {
    color: var(--ahb-danger);
    margin-left: 2px;
}

/* === FORM INPUTS === */
.ahb-field-input,
.ahb-field-select,
.ahb-field-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--ahb-gray-300);
    border-radius: var(--ahb-border-radius-sm);
    font-size: 16px;
    font-family: inherit;
    background: var(--ahb-white);
    transition: var(--ahb-transition-fast);
    color: var(--ahb-gray-700);
}

.ahb-field-input:focus,
.ahb-field-select:focus,
.ahb-field-textarea:focus {
    outline: none;
    border-color: var(--ahb-primary);
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

.ahb-field-input.ahb-field-error,
.ahb-field-select.ahb-field-error,
.ahb-field-textarea.ahb-field-error {
    border-color: var(--ahb-danger);
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.ahb-field-input.ahb-readonly {
    background: var(--ahb-gray-100);
    color: var(--ahb-gray-600);
    cursor: not-allowed;
}

/* === RADIO BUTTONS === */
.ahb-radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.ahb-radio-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    padding: 12px;
    border: 2px solid var(--ahb-gray-200);
    border-radius: var(--ahb-border-radius-sm);
    transition: var(--ahb-transition-fast);
    background: var(--ahb-white);
}

.ahb-radio-label:hover {
    border-color: var(--ahb-primary);
    background: rgba(44, 90, 160, 0.02);
}

.ahb-radio-label input[type="radio"] {
    margin: 0;
    width: auto;
    flex-shrink: 0;
}

.ahb-radio-label input[type="radio"]:checked + .ahb-radio-custom {
    background: var(--ahb-primary);
    border-color: var(--ahb-primary);
}

/* === CONDITIONAL FIELDS === */
.ahb-conditional-field,
.ahb-conditional-section {
    animation: ahb-slideDown 0.3s ease;
}

.ahb-guests-section {
    background: var(--ahb-gray-50);
    border: 1px solid var(--ahb-gray-200);
    border-radius: var(--ahb-border-radius);
    padding: 20px;
    margin-top: 16px;
}

/* === AVAILABLE DATES INFO === */
.ahb-available-dates-info {
    display: flex;
    gap: 12px;
    background: rgba(23, 162, 184, 0.1);
    border: 1px solid rgba(23, 162, 184, 0.3);
    border-radius: var(--ahb-border-radius);
    padding: 16px;
    margin-bottom: 20px;
}

.ahb-info-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.ahb-dates-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.ahb-available-date {
    background: var(--ahb-info);
    color: var(--ahb-white);
    padding: 4px 8px;
    border-radius: var(--ahb-border-radius-sm);
    font-size: 12px;
    font-weight: 500;
}

.ahb-more-dates {
    background: var(--ahb-gray-500);
    color: var(--ahb-white);
    padding: 4px 8px;
    border-radius: var(--ahb-border-radius-sm);
    font-size: 12px;
    font-style: italic;
}

/* === NIGHTS DISPLAY === */
.ahb-nights-display {
    background: var(--ahb-secondary);
    color: var(--ahb-white);
    padding: 12px 16px;
    border-radius: var(--ahb-border-radius);
    text-align: center;
    margin-top: 16px;
    animation: ahb-bounceIn 0.5s ease;
}

.ahb-nights-number {
    font-size: 24px;
    font-weight: 700;
    margin-right: 8px;
}

/* === HOTEL AND ROOM DETAILS === */
.ahb-hotel-details,
.ahb-room-details {
    background: var(--ahb-gray-50);
    border: 1px solid var(--ahb-gray-200);
    border-radius: var(--ahb-border-radius);
    padding: 16px;
    margin-top: 12px;
    animation: ahb-fadeIn 0.3s ease;
}

.ahb-hotel-info h4,
.ahb-room-info h5 {
    margin: 0 0 8px 0;
    color: var(--ahb-primary);
}

.ahb-room-specs {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 8px;
}

.ahb-room-capacity {
    background: var(--ahb-info);
    color: var(--ahb-white);
    padding: 4px 8px;
    border-radius: var(--ahb-border-radius-sm);
    font-size: 12px;
    font-weight: 500;
}

.ahb-room-price {
    background: var(--ahb-secondary);
    color: var(--ahb-white);
    padding: 4px 8px;
    border-radius: var(--ahb-border-radius-sm);
    font-size: 12px;
    font-weight: 600;
}

/* === RESERVATION SUMMARY === */
.ahb-reservation-summary {
    background: linear-gradient(135deg, var(--ahb-gray-50) 0%, var(--ahb-gray-100) 100%);
    border: 2px solid var(--ahb-primary);
    border-radius: var(--ahb-border-radius);
    padding: 0;
    margin: 24px 0;
    overflow: hidden;
    animation: ahb-slideUp 0.4s ease;
}

.ahb-summary-title {
    background: var(--ahb-primary);
    color: var(--ahb-white);
    margin: 0;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 600;
}

.ahb-summary-content {
    padding: 20px;
}

.ahb-summary-section {
    margin-bottom: 20px;
}

.ahb-summary-section:last-child {
    margin-bottom: 0;
}

.ahb-summary-section h5 {
    margin: 0 0 12px 0;
    color: var(--ahb-gray-700);
    font-weight: 600;
    border-bottom: 1px solid var(--ahb-gray-300);
    padding-bottom: 4px;
}

.ahb-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--ahb-gray-200);
}

.ahb-summary-row:last-child {
    border-bottom: none;
}

.ahb-summary-label {
    font-weight: 500;
    color: var(--ahb-gray-600);
}

.ahb-summary-value {
    font-weight: 600;
    color: var(--ahb-gray-800);
}

.ahb-summary-total {
    background: var(--ahb-primary);
    color: var(--ahb-white);
    margin: 20px -20px -20px;
    padding: 16px 20px;
}

.ahb-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.ahb-total-row:last-child {
    margin-bottom: 0;
}

.ahb-final-total {
    font-size: 18px;
    font-weight: 700;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 8px;
    margin-top: 8px;
}

/* === CAPTCHA === */
.ahb-captcha-section {
    background: var(--ahb-gray-50);
    border: 1px solid var(--ahb-gray-200);
    border-radius: var(--ahb-border-radius);
    padding: 20px;
    margin: 24px 0;
}

.ahb-captcha-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 16px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--ahb-gray-700);
}

.ahb-captcha-container {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.ahb-captcha-question-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ahb-captcha-question {
    font-size: 18px;
    font-weight: 700;
    color: var(--ahb-primary);
    min-width: 100px;
    text-align: center;
    background: var(--ahb-white);
    padding: 12px 16px;
    border: 2px solid var(--ahb-primary);
    border-radius: var(--ahb-border-radius-sm);
}

.ahb-captcha-input {
    max-width: 80px;
    text-align: center;
    font-weight: 700;
    font-size: 18px;
}

.ahb-captcha-refresh {
    background: var(--ahb-gray-500);
    color: var(--ahb-white);
    border: none;
    padding: 8px 12px;
    border-radius: var(--ahb-border-radius-sm);
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    transition: var(--ahb-transition-fast);
    display: flex;
    align-items: center;
    gap: 4px;
}

.ahb-captcha-refresh:hover {
    background: var(--ahb-gray-600);
}

.ahb-captcha-refresh:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* === FORM NAVIGATION === */
.ahb-form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    background: var(--ahb-gray-50);
    border-top: 1px solid var(--ahb-gray-200);
    gap: 16px;
}

.ahb-nav-button {
    background: var(--ahb-white);
    color: var(--ahb-primary);
    border: 2px solid var(--ahb-primary);
    padding: 12px 24px;
    border-radius: var(--ahb-border-radius);
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: var(--ahb-transition-fast);
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 120px;
    justify-content: center;
}

.ahb-nav-button:hover {
    background: var(--ahb-primary);
    color: var(--ahb-white);
}

.ahb-submit-button {
    background: linear-gradient(135deg, var(--ahb-secondary) 0%, #20a83a 100%);
    color: var(--ahb-white);
    border: none;
    padding: 16px 32px;
    border-radius: var(--ahb-border-radius);
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    transition: var(--ahb-transition);
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 200px;
    justify-content: center;
    box-shadow: var(--ahb-shadow);
}

.ahb-submit-button:hover:not(:disabled) {
    background: linear-gradient(135deg, #20a83a 0%, var(--ahb-secondary) 100%);
    transform: translateY(-2px);
    box-shadow: var(--ahb-shadow-lg);
}

.ahb-submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* === FORM MESSAGES === */
.ahb-form-messages {
    margin: 16px 24px;
    padding: 16px;
    border-radius: var(--ahb-border-radius);
    font-weight: 500;
    display: none;
}

.ahb-form-messages.success {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid var(--ahb-secondary);
    color: #155724;
}

.ahb-form-messages.error {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid var(--ahb-danger);
    color: #721c24;
}

/* === FIELD ERRORS === */
.ahb-field-error {
    color: var(--ahb-danger);
    font-size: 12px;
    font-weight: 500;
    margin-top: 4px;
    display: none;
}

.ahb-field-error:not(:empty) {
    display: block;
}

/* === FIELD HELP === */
.ahb-field-help {
    color: var(--ahb-gray-500);
    font-size: 12px;
    margin-top: 4px;
    line-height: 1.3;
}

/* === AUTO-FILL NOTICE === */
.ahb-auto-fill-notice {
    background: rgba(23, 162, 184, 0.1);
    border: 1px solid rgba(23, 162, 184, 0.3);
    border-radius: var(--ahb-border-radius);
    padding: 16px;
    margin: 16px 0;
    display: flex;
    gap: 12px;
    animation: ahb-slideDown 0.3s ease;
}

.ahb-notice-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.ahb-notice-content p {
    margin: 0 0 8px 0;
    color: var(--ahb-info);
    font-weight: 500;
}

.ahb-notice-content p:last-child {
    margin-bottom: 0;
}

/* === CHARACTER COUNT === */
.ahb-character-count {
    text-align: right;
    font-size: 12px;
    color: var(--ahb-gray-500);
    margin-top: 4px;
}

.ahb-character-count.over-limit {
    color: var(--ahb-danger);
    font-weight: 600;
}

/* === LOADING OVERLAY === */
.ahb-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.ahb-loading-spinner {
    background: var(--ahb-white);
    padding: 32px;
    border-radius: var(--ahb-border-radius);
    text-align: center;
    box-shadow: var(--ahb-shadow-lg);
}

.ahb-spinner-icon {
    width: 40px;
    height: 40px;
    border: 4px solid var(--ahb-gray-200);
    border-top: 4px solid var(--ahb-primary);
    border-radius: 50%;
    animation: ahb-spin 1s linear infinite;
    margin: 0 auto 16px;
}

.ahb-loading-text {
    margin: 0;
    color: var(--ahb-gray-700);
    font-weight: 500;
}

/* === CHILDREN AGE FIELDS === */
.ahb-ages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
}

.ahb-age-field {
    min-width: 120px;
}

/* === ANIMATIONS === */
@keyframes ahb-fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes ahb-fadeInUp {
    from { 
        opacity: 0; 
        transform: translateY(20px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

@keyframes ahb-slideDown {
    from { 
        opacity: 0; 
        max-height: 0; 
        transform: translateY(-10px); 
    }
    to { 
        opacity: 1; 
        max-height: 500px; 
        transform: translateY(0); 
    }
}

@keyframes ahb-slideUp {
    from { 
        opacity: 0; 
        transform: translateY(20px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

@keyframes ahb-bounceIn {
    0% { 
        opacity: 0; 
        transform: scale(0.3); 
    }
    50% { 
        opacity: 1; 
        transform: scale(1.05); 
    }
    70% { transform: scale(0.9); }
    100% { 
        opacity: 1; 
        transform: scale(1); 
    }
}

@keyframes ahb-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    .ahb-booking-form-container {
        padding: 20px;
    }
    
    .ahb-form-header {
        padding: 32px;
    }
    
    .ahb-event-info-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .ahb-process-steps {
        flex-wrap: nowrap;
    }
    
    .ahb-radio-group {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .ahb-captcha-container {
        flex-wrap: nowrap;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .ahb-form-title {
        font-size: 32px;
    }
    
    .ahb-form-section {
        padding: 40px 32px;
    }
    
    .ahb-field-row {
        flex-wrap: nowrap;
    }
    
    .ahb-field-half {
        min-width: auto;
    }
    
    .ahb-field-third {
        min-width: auto;
    }
    
    .ahb-progress-steps {
        flex-wrap: nowrap;
    }
    
    .ahb-step {
        min-width: auto;
    }
    
    .ahb-form-navigation {
        padding: 32px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .ahb-booking-form-container {
        padding: 24px;
    }
    
    .ahb-form-header {
        padding: 40px;
    }
    
    .ahb-form-section {
        padding: 48px 40px;
    }
    
    .ahb-event-info-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .ahb-booking-form-container {
        max-width: 900px;
    }
}

/* === PRINT STYLES === */
@media print {
    .ahb-form-navigation,
    .ahb-captcha-section,
    .ahb-loading-overlay {
        display: none !important;
    }
    
    .ahb-booking-form-container {
        box-shadow: none;
        border: 1px solid var(--ahb-gray-300);
    }
    
    .ahb-form-section {
        display: block !important;
        page-break-inside: avoid;
    }
}

/* === ACCESSIBILITY IMPROVEMENTS === */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --ahb-gray-300: #999999;
        --ahb-gray-500: #666666;
        --ahb-gray-700: #333333;
    }
}

/* Focus styles for keyboard navigation */
.ahb-field-input:focus,
.ahb-field-select:focus,
.ahb-field-textarea:focus,
.ahb-nav-button:focus,
.ahb-submit-button:focus,
.ahb-captcha-refresh:focus {
    outline: 3px solid var(--ahb-primary);
    outline-offset: 2px;
}

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