/* ============================================================================
   TOURISM FORM CSS - Bootstrap 5 Compatible
   Responsive Mobile-First Design
   ============================================================================ */

/* ============================================================================
   1. CSS VARIABLES & THEME
   ============================================================================ */
:root {
    /* Primary Colors */
    --tf-primary: #3b82f6;
    --tf-primary-dark: #2563eb;
    --tf-primary-light: #60a5fa;
    --tf-primary-rgb: 59, 130, 246;
    
    /* Secondary Colors */
    --tf-secondary: #64748b;
    --tf-secondary-dark: #475569;
    --tf-secondary-light: #94a3b8;
    
    /* Success, Warning, Danger */
    --tf-success: #10b981;
    --tf-success-light: #d1fae5;
    --tf-warning: #f59e0b;
    --tf-warning-light: #fef3c7;
    --tf-danger: #ef4444;
    --tf-danger-light: #fee2e2;
    --tf-info: #06b6d4;
    --tf-info-light: #cffafe;
    
    /* Neutral Colors */
    --tf-white: #ffffff;
    --tf-black: #000000;
    --tf-gray-50: #f8fafc;
    --tf-gray-100: #f1f5f9;
    --tf-gray-200: #e2e8f0;
    --tf-gray-300: #cbd5e1;
    --tf-gray-400: #94a3b8;
    --tf-gray-500: #64748b;
    --tf-gray-600: #475569;
    --tf-gray-700: #334155;
    --tf-gray-800: #1e293b;
    --tf-gray-900: #0f172a;
    
    /* Spacing */
    --tf-spacing-xs: 0.25rem;
    --tf-spacing-sm: 0.5rem;
    --tf-spacing-md: 1rem;
    --tf-spacing-lg: 1.5rem;
    --tf-spacing-xl: 2rem;
    --tf-spacing-2xl: 3rem;
    
    /* Border Radius */
    --tf-radius-sm: 0.375rem;
    --tf-radius-md: 0.5rem;
    --tf-radius-lg: 0.75rem;
    --tf-radius-xl: 1rem;
    --tf-radius-full: 9999px;
    
    /* Shadows */
    --tf-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --tf-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --tf-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --tf-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Typography */
    --tf-font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --tf-font-mono: 'Fira Code', 'Courier New', monospace;
    
    /* Font Sizes */
    --tf-text-xs: 0.75rem;
    --tf-text-sm: 0.875rem;
    --tf-text-base: 1rem;
    --tf-text-lg: 1.125rem;
    --tf-text-xl: 1.25rem;
    --tf-text-2xl: 1.5rem;
    --tf-text-3xl: 1.875rem;
    
    /* Transitions */
    --tf-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --tf-transition-fast: all 0.15s ease-in-out;
}

/* ============================================================================
   2. RESET & BASE STYLES
   ============================================================================ */
.tf-form-wrapper * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.tf-form-wrapper {
    font-family: var(--tf-font-sans);
    color: var(--tf-gray-800);
    background: var(--tf-gray-50);
    min-height: 100vh;
    padding: var(--tf-spacing-md);
    line-height: 1.6;
}

/* ============================================================================
   3. FORM CONTAINER
   ============================================================================ */
.tf-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--tf-white);
    border-radius: var(--tf-radius-xl);
    box-shadow: var(--tf-shadow-lg);
    padding: var(--tf-spacing-xl);
    position: relative;
    overflow: hidden;
}

.tf-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--tf-primary), var(--tf-info), var(--tf-success));
    z-index: 1;
}

/* ============================================================================
   4. FORM HEADER
   ============================================================================ */
.tf-header {
    text-align: center;
    margin-bottom: var(--tf-spacing-xl);
    padding-bottom: var(--tf-spacing-lg);
    border-bottom: 2px solid var(--tf-gray-100);
}

.tf-title {
    font-size: var(--tf-text-2xl);
    font-weight: 700;
    color: var(--tf-gray-900);
    margin-bottom: var(--tf-spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--tf-spacing-sm);
}

.tf-title i {
    color: var(--tf-primary);
    font-size: var(--tf-text-3xl);
}

.tf-subtitle {
    font-size: var(--tf-text-sm);
    color: var(--tf-gray-500);
    margin: 0;
}

/* ============================================================================
   5. FORM GROUPS
   ============================================================================ */
.tf-form-group {
    margin-bottom: var(--tf-spacing-lg);
    position: relative;
}

.tf-form-group:last-child {
    margin-bottom: 0;
}

/* ============================================================================
   6. FORM LABELS
   ============================================================================ */
.tf-label {
    display: block;
    font-weight: 600;
    font-size: var(--tf-text-sm);
    color: var(--tf-gray-700);
    margin-bottom: var(--tf-spacing-sm);
    transition: var(--tf-transition-fast);
}

.tf-label-required::after {
    content: ' *';
    color: var(--tf-danger);
    font-weight: 700;
}

.tf-label i {
    margin-right: var(--tf-spacing-xs);
    color: var(--tf-primary);
}

/* ============================================================================
   7. FORM CONTROLS (Input, Textarea, Select)
   ============================================================================ */
.tf-input,
.tf-textarea,
.tf-select {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: var(--tf-text-base);
    font-family: var(--tf-font-sans);
    color: var(--tf-gray-800);
    background: var(--tf-gray-50);
    border: 2px solid var(--tf-gray-200);
    border-radius: var(--tf-radius-md);
    transition: var(--tf-transition);
    outline: none;
    appearance: none;
}

.tf-input:focus,
.tf-textarea:focus,
.tf-select:focus {
    background: var(--tf-white);
    border-color: var(--tf-primary);
    box-shadow: 0 0 0 4px rgba(var(--tf-primary-rgb), 0.1);
    transform: translateY(-1px);
}

.tf-input::placeholder,
.tf-textarea::placeholder {
    color: var(--tf-gray-400);
}

.tf-textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.6;
}

/* Select Custom Arrow */
.tf-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1.25rem;
    padding-right: 2.5rem;
}

/* Input with Icon */
.tf-input-group {
    position: relative;
}

.tf-input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--tf-gray-400);
    pointer-events: none;
}

.tf-input-with-icon {
    padding-left: 2.75rem;
}

/* ============================================================================
   8. FORM ROW LAYOUT (2-Column Grid)
   ============================================================================ */
.tf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--tf-spacing-lg);
    margin-bottom: var(--tf-spacing-lg);
}

.tf-row-3 {
    grid-template-columns: repeat(3, 1fr);
}

.tf-col-span-2 {
    grid-column: span 2;
}

/* ============================================================================
   9. FILE INPUT
   ============================================================================ */
.tf-file-input {
    display: block;
    width: 100%;
    padding: 1rem;
    font-size: var(--tf-text-sm);
    color: var(--tf-gray-600);
    background: var(--tf-gray-50);
    border: 2px dashed var(--tf-gray-300);
    border-radius: var(--tf-radius-md);
    cursor: pointer;
    transition: var(--tf-transition);
}

.tf-file-input:hover {
    border-color: var(--tf-primary);
    background: var(--tf-primary-light);
    background: rgba(var(--tf-primary-rgb), 0.05);
}

.tf-file-input:focus {
    outline: none;
    border-color: var(--tf-primary);
    box-shadow: 0 0 0 4px rgba(var(--tf-primary-rgb), 0.1);
}

/* File Input Label */
.tf-file-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--tf-spacing-lg);
    text-align: center;
    gap: var(--tf-spacing-sm);
}

.tf-file-label i {
    font-size: var(--tf-text-3xl);
    color: var(--tf-gray-400);
}

.tf-file-text {
    font-size: var(--tf-text-sm);
    color: var(--tf-gray-600);
}

.tf-file-hint {
    font-size: var(--tf-text-xs);
    color: var(--tf-gray-400);
}

/* ============================================================================
   10. IMAGE PREVIEW
   ============================================================================ */
.tf-image-preview {
    margin-top: var(--tf-spacing-md);
    border-radius: var(--tf-radius-md);
    overflow: hidden;
    border: 2px solid var(--tf-gray-200);
    max-width: 100%;
    position: relative;
}

.tf-image-preview img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.tf-image-preview-label {
    font-size: var(--tf-text-xs);
    font-weight: 600;
    color: var(--tf-gray-600);
    margin-bottom: var(--tf-spacing-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================================================
   11. CHECKBOX & RADIO
   ============================================================================ */
.tf-checkbox-wrapper,
.tf-radio-wrapper {
    display: flex;
    align-items: center;
    gap: var(--tf-spacing-sm);
    margin-bottom: var(--tf-spacing-sm);
    cursor: pointer;
}

.tf-checkbox,
.tf-radio {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid var(--tf-gray-300);
    border-radius: var(--tf-radius-sm);
    cursor: pointer;
    transition: var(--tf-transition-fast);
    accent-color: var(--tf-primary);
}

.tf-radio {
    border-radius: var(--tf-radius-full);
}

.tf-checkbox:checked,
.tf-radio:checked {
    background: var(--tf-primary);
    border-color: var(--tf-primary);
}

.tf-checkbox:focus,
.tf-radio:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(var(--tf-primary-rgb), 0.1);
}

.tf-checkbox-label {
    font-size: var(--tf-text-sm);
    color: var(--tf-gray-700);
    cursor: pointer;
}

/* Checkbox Group */
.tf-checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: var(--tf-spacing-md);
}

/* ============================================================================
   12. HELP TEXT
   ============================================================================ */
.tf-help-text {
    display: block;
    font-size: var(--tf-text-xs);
    color: var(--tf-gray-500);
    margin-top: var(--tf-spacing-xs);
    line-height: 1.5;
}

.tf-help-text i {
    margin-right: var(--tf-spacing-xs);
    color: var(--tf-info);
}

/* ============================================================================
   13. VALIDATION STATES
   ============================================================================ */
/* Error State */
.tf-form-group.has-error .tf-input,
.tf-form-group.has-error .tf-textarea,
.tf-form-group.has-error .tf-select {
    border-color: var(--tf-danger);
    background: var(--tf-danger-light);
}

.tf-form-group.has-error .tf-label {
    color: var(--tf-danger);
}

.tf-error-message {
    display: block;
    font-size: var(--tf-text-xs);
    color: var(--tf-danger);
    margin-top: var(--tf-spacing-xs);
    padding: var(--tf-spacing-xs) var(--tf-spacing-sm);
    background: var(--tf-danger-light);
    border-left: 3px solid var(--tf-danger);
    border-radius: var(--tf-radius-sm);
}

.tf-error-message i {
    margin-right: var(--tf-spacing-xs);
}

/* Success State */
.tf-form-group.has-success .tf-input,
.tf-form-group.has-success .tf-textarea,
.tf-form-group.has-success .tf-select {
    border-color: var(--tf-success);
    background: var(--tf-success-light);
}

.tf-success-message {
    display: block;
    font-size: var(--tf-text-xs);
    color: var(--tf-success);
    margin-top: var(--tf-spacing-xs);
    padding: var(--tf-spacing-xs) var(--tf-spacing-sm);
    background: var(--tf-success-light);
    border-left: 3px solid var(--tf-success);
    border-radius: var(--tf-radius-sm);
}

/* ============================================================================
   14. BUTTONS
   ============================================================================ */
.tf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--tf-spacing-sm);
    padding: 0.75rem 1.5rem;
    font-size: var(--tf-text-base);
    font-weight: 600;
    font-family: var(--tf-font-sans);
    text-decoration: none;
    border: none;
    border-radius: var(--tf-radius-md);
    cursor: pointer;
    transition: var(--tf-transition);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.tf-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

/* Primary Button */
.tf-btn-primary {
    background: linear-gradient(135deg, var(--tf-primary), var(--tf-primary-dark));
    color: var(--tf-white);
    box-shadow: var(--tf-shadow-md);
}

.tf-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--tf-shadow-lg);
}

.tf-btn-primary:active {
    transform: translateY(0);
}

/* Secondary Button */
.tf-btn-secondary {
    background: var(--tf-white);
    color: var(--tf-gray-700);
    border: 2px solid var(--tf-gray-300);
}

.tf-btn-secondary:hover {
    background: var(--tf-gray-50);
    border-color: var(--tf-gray-400);
    transform: translateY(-1px);
}

/* Outline Button */
.tf-btn-outline {
    background: transparent;
    color: var(--tf-primary);
    border: 2px solid var(--tf-primary);
}

.tf-btn-outline:hover {
    background: var(--tf-primary);
    color: var(--tf-white);
}

/* Success Button */
.tf-btn-success {
    background: var(--tf-success);
    color: var(--tf-white);
}

.tf-btn-success:hover {
    background: #059669;
    transform: translateY(-1px);
}

/* Danger Button */
.tf-btn-danger {
    background: var(--tf-danger);
    color: var(--tf-white);
}

.tf-btn-danger:hover {
    background: #dc2626;
    transform: translateY(-1px);
}

/* Button Sizes */
.tf-btn-sm {
    padding: 0.5rem 1rem;
    font-size: var(--tf-text-sm);
}

.tf-btn-lg {
    padding: 1rem 2rem;
    font-size: var(--tf-text-lg);
}

/* Button Block (Full Width) */
.tf-btn-block {
    width: 100%;
}

/* Loading Button */
.tf-btn.is-loading {
    pointer-events: none;
    opacity: 0.7;
}

.tf-btn-spinner {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: tf-spin 0.6s linear infinite;
}

@keyframes tf-spin {
    to { transform: rotate(360deg); }
}

/* ============================================================================
   15. BUTTON GROUP / FORM ACTIONS
   ============================================================================ */
.tf-form-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: var(--tf-spacing-md);
    margin-top: var(--tf-spacing-xl);
    padding-top: var(--tf-spacing-xl);
    border-top: 2px solid var(--tf-gray-100);
}

.tf-form-actions-center {
    justify-content: center;
}

.tf-form-actions-between {
    justify-content: space-between;
}

/* ============================================================================
   16. ALERT MESSAGES
   ============================================================================ */
.tf-alert {
    padding: var(--tf-spacing-md);
    border-radius: var(--tf-radius-md);
    margin-bottom: var(--tf-spacing-lg);
    display: flex;
    align-items: flex-start;
    gap: var(--tf-spacing-sm);
    font-size: var(--tf-text-sm);
    line-height: 1.6;
    border-left: 4px solid;
}

.tf-alert i {
    font-size: var(--tf-text-lg);
    flex-shrink: 0;
}

.tf-alert-success {
    background: var(--tf-success-light);
    color: #065f46;
    border-color: var(--tf-success);
}

.tf-alert-warning {
    background: var(--tf-warning-light);
    color: #92400e;
    border-color: var(--tf-warning);
}

.tf-alert-danger {
    background: var(--tf-danger-light);
    color: #991b1b;
    border-color: var(--tf-danger);
}

.tf-alert-info {
    background: var(--tf-info-light);
    color: #164e63;
    border-color: var(--tf-info);
}

/* Alert Close Button */
.tf-alert-close {
    margin-left: auto;
    background: none;
    border: none;
    font-size: var(--tf-text-xl);
    color: inherit;
    opacity: 0.6;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.tf-alert-close:hover {
    opacity: 1;
}

/* ============================================================================
   17. CARD SECTIONS
   ============================================================================ */
.tf-card-section {
    margin-bottom: var(--tf-spacing-xl);
    padding-bottom: var(--tf-spacing-xl);
    border-bottom: 1px solid var(--tf-gray-200);
}

.tf-card-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.tf-section-title {
    font-size: var(--tf-text-lg);
    font-weight: 700;
    color: var(--tf-gray-800);
    margin-bottom: var(--tf-spacing-lg);
    display: flex;
    align-items: center;
    gap: var(--tf-spacing-sm);
}

.tf-section-title i {
    color: var(--tf-primary);
}

.tf-section-subtitle {
    font-size: var(--tf-text-sm);
    color: var(--tf-gray-600);
    margin-top: var(--tf-spacing-xs);
}

/* ============================================================================
   18. BADGES & TAGS
   ============================================================================ */
.tf-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    font-size: var(--tf-text-xs);
    font-weight: 600;
    border-radius: var(--tf-radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tf-badge-primary {
    background: rgba(var(--tf-primary-rgb), 0.1);
    color: var(--tf-primary-dark);
}

.tf-badge-success {
    background: var(--tf-success-light);
    color: #065f46;
}

.tf-badge-warning {
    background: var(--tf-warning-light);
    color: #92400e;
}

.tf-badge-danger {
    background: var(--tf-danger-light);
    color: #991b1b;
}

/* ============================================================================
   19. TOOLTIP
   ============================================================================ */
.tf-tooltip {
    position: relative;
    display: inline-block;
}

.tf-tooltip-text {
    visibility: hidden;
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--tf-gray-900);
    color: var(--tf-white);
    text-align: center;
    padding: var(--tf-spacing-sm) var(--tf-spacing-md);
    border-radius: var(--tf-radius-md);
    font-size: var(--tf-text-xs);
    white-space: nowrap;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s;
}

.tf-tooltip:hover .tf-tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* ============================================================================
   20. LOADING STATES
   ============================================================================ */
.tf-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.tf-spinner {
    width: 3rem;
    height: 3rem;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: tf-spin 0.8s linear infinite;
}

/* ============================================================================
   21. RESPONSIVE DESIGN - MOBILE (<768px)
   ============================================================================ */
@media (max-width: 767px) {
    .tf-form-wrapper {
        padding: var(--tf-spacing-sm);
    }
    
    .tf-container {
        padding: var(--tf-spacing-lg);
        border-radius: var(--tf-radius-lg);
    }
    
    .tf-title {
        font-size: var(--tf-text-xl);
    }
    
    .tf-title i {
        font-size: var(--tf-text-2xl);
    }
    
    .tf-subtitle {
        font-size: var(--tf-text-xs);
    }
    
    .tf-row,
    .tf-row-3 {
        grid-template-columns: 1fr !important;
        gap: var(--tf-spacing-md);
    }
    
    .tf-col-span-2 {
        grid-column: span 1;
    }
    
    .tf-input,
    .tf-textarea,
    .tf-select {
        padding: 0.625rem 0.875rem;
        font-size: var(--tf-text-sm);
    }
    
    .tf-btn {
        padding: 0.625rem 1.25rem;
        font-size: var(--tf-text-sm);
    }
    
    .tf-btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: var(--tf-text-base);
    }
    
    .tf-form-actions {
        flex-direction: column-reverse;
        gap: var(--tf-spacing-sm);
    }
    
    .tf-form-actions .tf-btn {
        width: 100%;
    }
    
    .tf-section-title {
        font-size: var(--tf-text-base);
    }
    
    .tf-card-section {
        margin-bottom: var(--tf-spacing-lg);
        padding-bottom: var(--tf-spacing-lg);
    }
    
    .tf-checkbox-group {
        flex-direction: column;
        gap: var(--tf-spacing-sm);
    }
}

/* ============================================================================
   22. RESPONSIVE DESIGN - SMALL MOBILE (<480px)
   ============================================================================ */
@media (max-width: 479px) {
    .tf-form-wrapper {
        padding: 0.375rem;
    }
    
    .tf-container {
        padding: var(--tf-spacing-md);
    }
    
    .tf-header {
        margin-bottom: var(--tf-spacing-lg);
    }
    
    .tf-title {
        font-size: var(--tf-text-lg);
        flex-direction: column;
    }
    
    .tf-form-group {
        margin-bottom: var(--tf-spacing-md);
    }
    
    .tf-input,
    .tf-textarea,
    .tf-select {
        padding: 0.5rem 0.75rem;
    }
    
    .tf-btn {
        padding: 0.5rem 1rem;
    }
}

/* ============================================================================
   23. RESPONSIVE DESIGN - TABLET (768px - 1024px)
   ============================================================================ */
@media (min-width: 768px) and (max-width: 1024px) {
    .tf-container {
        max-width: 720px;
        padding: var(--tf-spacing-xl);
    }
    
    .tf-row-3 {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================================================================
   24. RESPONSIVE DESIGN - DESKTOP (>1024px)
   ============================================================================ */
@media (min-width: 1025px) {
    .tf-container {
        max-width: 900px;
    }
    
    .tf-form-wrapper {
        padding: var(--tf-spacing-xl);
    }
}

/* ============================================================================
   25. PRINT STYLES
   ============================================================================ */
@media print {
    .tf-form-actions,
    .tf-btn,
    .tf-alert-close {
        display: none !important;
    }
    
    .tf-container {
        box-shadow: none;
        border: 1px solid var(--tf-gray-300);
    }
}

/* ============================================================================
   26. ACCESSIBILITY
   ============================================================================ */
.tf-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;
}

/* Focus Visible Styles */
.tf-input:focus-visible,
.tf-textarea:focus-visible,
.tf-select:focus-visible,
.tf-btn:focus-visible,
.tf-checkbox:focus-visible,
.tf-radio:focus-visible {
    outline: 3px solid var(--tf-primary);
    outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================================================
   27. UTILITY CLASSES
   ============================================================================ */
.tf-text-center { text-align: center; }
.tf-text-left { text-align: left; }
.tf-text-right { text-align: right; }

.tf-mb-0 { margin-bottom: 0 !important; }
.tf-mb-1 { margin-bottom: var(--tf-spacing-xs) !important; }
.tf-mb-2 { margin-bottom: var(--tf-spacing-sm) !important; }
.tf-mb-3 { margin-bottom: var(--tf-spacing-md) !important; }
.tf-mb-4 { margin-bottom: var(--tf-spacing-lg) !important; }
.tf-mb-5 { margin-bottom: var(--tf-spacing-xl) !important; }

.tf-mt-0 { margin-top: 0 !important; }
.tf-mt-1 { margin-top: var(--tf-spacing-xs) !important; }
.tf-mt-2 { margin-top: var(--tf-spacing-sm) !important; }
.tf-mt-3 { margin-top: var(--tf-spacing-md) !important; }
.tf-mt-4 { margin-top: var(--tf-spacing-lg) !important; }
.tf-mt-5 { margin-top: var(--tf-spacing-xl) !important; }

.tf-d-none { display: none !important; }
.tf-d-block { display: block !important; }
.tf-d-flex { display: flex !important; }
.tf-d-grid { display: grid !important; }

.tf-w-full { width: 100% !important; }
.tf-h-full { height: 100% !important; }

/* ============================================================================
   END OF TOURISM FORM CSS
   ============================================================================ */

