/*----------------------------//
 * Mobile Menu CSS
 * ________________________________*/
.font-inter { font-family: 'Inter', sans-serif; }
        .font-bebas { font-family: 'Bebas Neue', cursive; }
        .gradient-text {
            color: #f97316;
        }
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes slideInRight {
            from { opacity: 0; transform: translateX(30px); }
            to { opacity: 1; transform: translateX(0); }
        }
        .animate-float { animation: float 3s ease-in-out infinite; }
        .animate-fadeInUp { animation: fadeInUp 1s ease-out; }
        .animate-slideInRight { animation: slideInRight 1s ease-out; }
        .delay-1000 { animation-delay: 1s; }
        
        /* Refined Animated Text Styles */
        .animated-word {
            position: relative;
            display: inline-block;
            color: #f97316;
            font-weight: 700;
            transform: scale(1);
            transition: all 0.4s ease-in-out;
        }
        
        /* Subtle glow effect - same as passion style */
        .passion-glow {
            animation: passionGlow 3s ease-in-out infinite;
        }
        
        @keyframes passionGlow {
            0%, 100% { 
                opacity: 1;
                transform: scale(1);
            }
            50% { 
                opacity: 0.9;
                transform: scale(1.02);
            }
        }
        
        /* Simple fade transition for word changes */
        .word-fade {
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
        }
        
        .word-fade.active {
            opacity: 1;
        }

/* Completely Disable All Browser Autocomplete and Autofill */
#fluentform_3,
.fluentform_wrapper_3,
.ff-form-3 {
    autocomplete: off !important;
}

#fluentform_3 .ff-el-form-control,
.fluentform_wrapper_3 .ff-el-form-control,
.ff-form-3 .ff-el-form-control,
#fluentform_3 input,
.fluentform_wrapper_3 input,
.ff-form-3 input,
#fluentform_3 select,
.fluentform_wrapper_3 select,
.ff-form-3 select,
#fluentform_3 textarea,
.fluentform_wrapper_3 textarea,
.ff-form-3 textarea {
    autocomplete: off !important;
    autocomplete: nope !important;
    autocomplete: new-password !important;
}

/* Hide All Browser Suggestion Dropdowns */
#fluentform_3 input::-webkit-contacts-auto-fill-button,
.fluentform_wrapper_3 input::-webkit-contacts-auto-fill-button,
.ff-form-3 input::-webkit-contacts-auto-fill-button,
#fluentform_3 input::-webkit-credentials-auto-fill-button,
.fluentform_wrapper_3 input::-webkit-credentials-auto-fill-button,
.ff-form-3 input::-webkit-credentials-auto-fill-button {
    visibility: hidden !important;
    display: none !important;
    pointer-events: none !important;
    height: 0 !important;
    width: 0 !important;
    margin: 0 !important;
}

/* Remove Browser Autofill Background Colors */
#fluentform_3 input:-webkit-autofill,
.fluentform_wrapper_3 input:-webkit-autofill,
.ff-form-3 input:-webkit-autofill,
#fluentform_3 input:-webkit-autofill:hover,
.fluentform_wrapper_3 input:-webkit-autofill:hover,
.ff-form-3 input:-webkit-autofill:hover,
#fluentform_3 input:-webkit-autofill:focus,
.fluentform_wrapper_3 input:-webkit-autofill:focus,
.ff-form-3 input:-webkit-autofill:focus,
#fluentform_3 input:-webkit-autofill:active,
.fluentform_wrapper_3 input:-webkit-autofill:active,
.ff-form-3 input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
    -webkit-text-fill-color: #1f2937 !important;
    background-color: white !important;
    background-image: none !important;
    transition: background-color 5000s ease-in-out 0s !important;
}

/* Disable Specific Field Autocomplete */
#fluentform_3 input[type="email"],
.fluentform_wrapper_3 input[type="email"],
.ff-form-3 input[type="email"] {
    autocomplete: new-email !important;
}

#fluentform_3 input[type="tel"],
.fluentform_wrapper_3 input[type="tel"],
.ff-form-3 input[type="tel"] {
    autocomplete: new-tel !important;
}

#fluentform_3 input[name*="name"],
.fluentform_wrapper_3 input[name*="name"],
.ff-form-3 input[name*="name"] {
    autocomplete: new-name !important;
}

/* Additional Browser Behavior Disable */
#fluentform_3 *,
.fluentform_wrapper_3 *,
.ff-form-3 * {
    -webkit-autocomplete: off !important;
    -moz-autocomplete: off !important;
    -ms-autocomplete: off !important;
    -o-autocomplete: off !important;
}

/*-----------------------------------
ONLY HIDE PAYMENT AMOUNT - SIMPLE & CLEAN
------------------------------------*/

/* Hide Total Payment Amount field - JavaScript method is better */

/*-----------------------------------
CLEAN PREMIUM YOUTH IPL REGISTRATION CSS - FORM ID #3
Fixed Input Boxes Design
------------------------------------*/

/* Base Typography - Same as Homepage */
.font-inter { font-family: 'Inter', sans-serif; }
.font-bebas { font-family: 'Bebas Neue', cursive; }

/* Simple Gradient Text - Same as Homepage */
.gradient-text {
    color: #f97316;
}

/* Simple Animations - Same as Homepage */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}
.animate-float { animation: float 3s ease-in-out infinite; }

/*-----------------------------------
FIXED INPUT BOX STYLING - FORM ID #3
------------------------------------*/

/* Main Form Container - Clean & Simple */
#fluentform_3,
.fluentform_wrapper_3 .fluentform,
.ff-form-3 {
    background: white;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    max-width: none;
    margin: 0;
}

/* Form Groups - Consistent Spacing */
#fluentform_3 .ff-el-group,
.fluentform_wrapper_3 .ff-el-group,
.ff-form-3 .ff-el-group {
    margin-bottom: 1.5rem;
}

/* Fixed Input Fields - Consistent Size & Style */
#fluentform_3 .ff-el-form-control,
.fluentform_wrapper_3 .ff-el-form-control,
.ff-form-3 .ff-el-form-control,
#fluentform_3 input[type="text"],
#fluentform_3 input[type="email"],
#fluentform_3 input[type="tel"],
#fluentform_3 input[type="number"],
#fluentform_3 input[type="date"],
.fluentform_wrapper_3 input[type="text"],
.fluentform_wrapper_3 input[type="email"],
.fluentform_wrapper_3 input[type="tel"],
.fluentform_wrapper_3 input[type="number"],
.fluentform_wrapper_3 input[type="date"],
.ff-form-3 input[type="text"],
.ff-form-3 input[type="email"],
.ff-form-3 input[type="tel"],
.ff-form-3 input[type="number"],
.ff-form-3 input[type="date"],
#fluentform_3 select,
.fluentform_wrapper_3 select,
.ff-form-3 select,
#fluentform_3 textarea,
.fluentform_wrapper_3 textarea,
.ff-form-3 textarea {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    height: 56px !important;
    padding: 16px 20px !important;
    border: 2px solid #e5e7eb !important;
    border-radius: 12px !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    font-family: 'Inter', sans-serif !important;
    background: white !important;
    color: #1f2937 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    box-sizing: border-box !important;
}

/* Form Input Container - Full Width */
#fluentform_3 .ff-el-input--content,
.fluentform_wrapper_3 .ff-el-input--content,
.ff-form-3 .ff-el-input--content,
#fluentform_3 .ff-el-input--content input,
.fluentform_wrapper_3 .ff-el-input--content input,
.ff-form-3 .ff-el-input--content input {
    width: 100% !important;
    max-width: 100% !important;
}

/* Ensure Form Groups Take Full Width */
#fluentform_3 .ff-el-group,
.fluentform_wrapper_3 .ff-el-group,
.ff-form-3 .ff-el-group {
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 1.5rem;
}

/* Form Input Label Container */
#fluentform_3 .ff-el-input--label,
.fluentform_wrapper_3 .ff-el-input--label,
.ff-form-3 .ff-el-input--label {
    width: 100% !important;
    max-width: 100% !important;
}

/* Input Focus - Enhanced Orange Border */
#fluentform_3 .ff-el-form-control:focus,
.fluentform_wrapper_3 .ff-el-form-control:focus,
.ff-form-3 .ff-el-form-control:focus {
    outline: none !important;
    border-color: #f97316 !important;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1), 0 2px 8px rgba(0, 0, 0, 0.15) !important;
    background: white !important;
}

/* Input Hover - Subtle Enhancement */
#fluentform_3 .ff-el-form-control:hover,
.fluentform_wrapper_3 .ff-el-form-control:hover,
.ff-form-3 .ff-el-form-control:hover {
    border-color: #fb923c !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12) !important;
}

/* Fixed Labels - Consistent Typography */
#fluentform_3 label,
.fluentform_wrapper_3 label,
.ff-form-3 label {
    font-weight: 600 !important;
    color: #374151 !important;
    margin-bottom: 8px !important;
    display: block !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 15px !important;
    line-height: 1.4 !important;
}

/* Required Field Indicator */
#fluentform_3 .ff-el-is-required.asterisk-right label:after,
.fluentform_wrapper_3 .ff-el-is-required.asterisk-right label:after,
.ff-form-3 .ff-el-is-required.asterisk-right label:after {
    content: " *";
    color: #ef4444;
    font-weight: 700;
}

/* Fixed Select Dropdown */
#fluentform_3 select.ff-el-form-control,
.fluentform_wrapper_3 select.ff-el-form-control,
.ff-form-3 select.ff-el-form-control {
    height: 56px !important;
    appearance: none !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e") !important;
    background-position: right 16px center !important;
    background-repeat: no-repeat !important;
    background-size: 16px !important;
    padding-right: 48px !important;
    cursor: pointer !important;
}

/* Fixed Textarea */
#fluentform_3 textarea.ff-el-form-control,
.fluentform_wrapper_3 textarea.ff-el-form-control,
.ff-form-3 textarea.ff-el-form-control {
    height: auto !important;
    min-height: 120px !important;
    resize: vertical !important;
    line-height: 1.6 !important;
}

/*-----------------------------------
3-COLUMN CHECKBOX LAYOUT - ENHANCED
------------------------------------*/

/* Target checkbox containers and create 3-column grid */
#fluentform_3 .ff-el-input--content:has(.ff-el-form-check-input[type="checkbox"]),
.fluentform_wrapper_3 .ff-el-input--content:has(.ff-el-form-check-input[type="checkbox"]),
.ff-form-3 .ff-el-input--content:has(.ff-el-form-check-input[type="checkbox"]),
#fluentform_3 .ff-el-group[data-type="checkbox"] .ff-el-input--content,
.fluentform_wrapper_3 .ff-el-group[data-type="checkbox"] .ff-el-input--content,
.ff-form-3 .ff-el-group[data-type="checkbox"] .ff-el-input--content {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 16px 20px !important;
    margin-top: 12px !important;
}

/* Fallback targeting for checkbox containers */
#fluentform_3 .ff-el-input--content[data-name*="player"],
.fluentform_wrapper_3 .ff-el-input--content[data-name*="player"],
.ff-form-3 .ff-el-input--content[data-name*="player"],
#fluentform_3 .ff-el-input--content[data-name*="details"],
.fluentform_wrapper_3 .ff-el-input--content[data-name*="details"],
.ff-form-3 .ff-el-input--content[data-name*="details"] {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 16px 20px !important;
    margin-top: 12px !important;
}

/* Alternative targeting - generic checkbox groups */
#fluentform_3 .ff-el-input--content > .ff-el-form-check:first-child ~ .ff-el-form-check,
.fluentform_wrapper_3 .ff-el-input--content > .ff-el-form-check:first-child ~ .ff-el-form-check,
.ff-form-3 .ff-el-input--content > .ff-el-form-check:first-child ~ .ff-el-form-check {
    display: contents !important;
}

#fluentform_3 .ff-el-input--content:has(.ff-el-form-check:nth-child(4)),
.fluentform_wrapper_3 .ff-el-input--content:has(.ff-el-form-check:nth-child(4)),
.ff-form-3 .ff-el-input--content:has(.ff-el-form-check:nth-child(4)) {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 16px 20px !important;
    margin-top: 12px !important;
}

/* Ensure checkboxes maintain proper spacing */
#fluentform_3 .ff-el-form-check,
.fluentform_wrapper_3 .ff-el-form-check,
.ff-form-3 .ff-el-form-check {
    margin-bottom: 0 !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
}

/* FIXED Radio Buttons - Modern Design */
#fluentform_3 .ff-el-form-check-input[type="radio"],
.fluentform_wrapper_3 .ff-el-form-check-input[type="radio"],
.ff-form-3 .ff-el-form-check-input[type="radio"] {
    width: 20px !important;
    height: 20px !important;
    border: 2px solid #d1d5db !important;
    border-radius: 50% !important;
    margin-right: 12px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    background: white !important;
    position: relative !important;
    vertical-align: middle !important;
    flex-shrink: 0 !important;
}

#fluentform_3 .ff-el-form-check-input[type="radio"]:checked,
.fluentform_wrapper_3 .ff-el-form-check-input[type="radio"]:checked,
.ff-form-3 .ff-el-form-check-input[type="radio"]:checked {
    background-color: #f97316 !important;
    border-color: #f97316 !important;
}

#fluentform_3 .ff-el-form-check-input[type="radio"]:checked::after,
.fluentform_wrapper_3 .ff-el-form-check-input[type="radio"]:checked::after,
.ff-form-3 .ff-el-form-check-input[type="radio"]:checked::after {
    content: '' !important;
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    background: white !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
}

/* FIXED Checkboxes - Modern Design with Grid Support */
#fluentform_3 .ff-el-form-check-input[type="checkbox"],
.fluentform_wrapper_3 .ff-el-form-check-input[type="checkbox"],
.ff-form-3 .ff-el-form-check-input[type="checkbox"] {
    width: 20px !important;
    height: 20px !important;
    border: 2px solid #d1d5db !important;
    border-radius: 6px !important;
    margin-right: 8px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    background: white !important;
    position: relative !important;
    vertical-align: middle !important;
    flex-shrink: 0 !important;
}

#fluentform_3 .ff-el-form-check-input[type="checkbox"]:checked,
.fluentform_wrapper_3 .ff-el-form-check-input[type="checkbox"]:checked,
.ff-form-3 .ff-el-form-check-input[type="checkbox"]:checked {
    background-color: #f97316 !important;
    border-color: #f97316 !important;
}

#fluentform_3 .ff-el-form-check-input[type="checkbox"]:checked::after,
.fluentform_wrapper_3 .ff-el-form-check-input[type="checkbox"]:checked::after,
.ff-form-3 .ff-el-form-check-input[type="checkbox"]:checked::after {
    content: '✓' !important;
    color: white !important;
    font-size: 12px !important;
    font-weight: bold !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    line-height: 1 !important;
}

/* Enhanced Checkbox Labels for Grid Layout */
#fluentform_3 .ff-el-form-check-label,
.fluentform_wrapper_3 .ff-el-form-check-label,
.ff-form-3 .ff-el-form-check-label {
    display: flex !important;
    align-items: center !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    color: #374151 !important;
    cursor: pointer !important;
    margin-bottom: 0 !important;
    padding: 8px 12px !important;
    border-radius: 8px !important;
    transition: all 0.2s ease !important;
    min-width: 0 !important;
    word-wrap: break-word !important;
    line-height: 1.3 !important;
}

/* Enhanced hover effect for checkbox labels */
#fluentform_3 .ff-el-form-check-label:hover,
.fluentform_wrapper_3 .ff-el-form-check-label:hover,
.ff-form-3 .ff-el-form-check-label:hover {
    background-color: #f9fafb !important;
    border-radius: 8px !important;
}

/* Mobile Number Field - Enhanced Targeting */
#fluentform_3 input[type="tel"].ff-el-form-control,
.fluentform_wrapper_3 input[type="tel"].ff-el-form-control,
.ff-form-3 input[type="tel"].ff-el-form-control,
#fluentform_3 .ff-el-form-control[placeholder*="Mobile"],
.fluentform_wrapper_3 .ff-el-form-control[placeholder*="Mobile"], 
.ff-form-3 .ff-el-form-control[placeholder*="Mobile"],
#fluentform_3 .ff-el-form-control[placeholder*="mobile"],
.fluentform_wrapper_3 .ff-el-form-control[placeholder*="mobile"],
.ff-form-3 .ff-el-form-control[placeholder*="mobile"],
#fluentform_3 .ff-el-form-control[placeholder*="Number"],
.fluentform_wrapper_3 .ff-el-form-control[placeholder*="Number"],
.ff-form-3 .ff-el-form-control[placeholder*="Number"],
#fluentform_3 .ff-el-form-control[name*="mobile"],
.fluentform_wrapper_3 .ff-el-form-control[name*="mobile"],
.ff-form-3 .ff-el-form-control[name*="mobile"],
#fluentform_3 .ff-el-form-control[name*="phone"],
.fluentform_wrapper_3 .ff-el-form-control[name*="phone"],
.ff-form-3 .ff-el-form-control[name*="phone"] {
    padding-left: 70px !important;
    text-indent: 15px !important;
}

/* Additional targeting for phone fields with country selector */
#fluentform_3 .ff-el-input--content input[type="tel"],
.fluentform_wrapper_3 .ff-el-input--content input[type="tel"],
.ff-form-3 .ff-el-input--content input[type="tel"],
#fluentform_3 .iti__tel-input,
.fluentform_wrapper_3 .iti__tel-input,
.ff-form-3 .iti__tel-input {
    padding-left: 70px !important;
    text-indent: 15px !important;
}

/* Target fields that have flags or country codes */
#fluentform_3 .ff-el-form-control[style*="padding-left"],
.fluentform_wrapper_3 .ff-el-form-control[style*="padding-left"],
.ff-form-3 .ff-el-form-control[style*="padding-left"] {
    padding-left: 70px !important;
    text-indent: 15px !important;
}

/* Specific targeting for international telephone input */
.iti--allow-dropdown input[type="tel"] {
    padding-left: 70px !important;
    text-indent: 15px !important;
}

/* COMPLETELY FIXED Submit Button - No Overlapping */
#fluentform_3 .ff_submit_btn_wrapper,
.fluentform_wrapper_3 .ff_submit_btn_wrapper,
.ff-form-3 .ff_submit_btn_wrapper {
    margin-top: 3rem;
    text-align: center;
    position: relative;
}

/* Hide Original Button Text Completely */
#fluentform_3 .ff-btn-submit,
.fluentform_wrapper_3 .ff-btn-submit,
.ff-form-3 .ff-btn-submit {
    background: #f97316 !important;
    color: transparent !important;
    padding: 18px 48px !important;
    border: none !important;
    border-radius: 50px !important;
    font-size: 0 !important;
    font-weight: 700 !important;
    font-family: 'Bebas Neue', cursive !important;
    letter-spacing: 1.5px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    min-width: 280px !important;
    height: 60px !important;
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.25) !important;
    position: relative !important;
    overflow: hidden !important;
    text-indent: -9999px !important;
}

/* Add Custom Button Text Without Overlap */
#fluentform_3 .ff-btn-submit::before,
.fluentform_wrapper_3 .ff-btn-submit::before,
.ff-form-3 .ff-btn-submit::before {
    content: "SUBMIT REGISTRATION" !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    font-family: 'Bebas Neue', cursive !important;
    letter-spacing: 1.2px !important;
    text-transform: uppercase !important;
    text-indent: 0 !important;
    line-height: 1 !important;
}

#fluentform_3 .ff-btn-submit:hover,
.fluentform_wrapper_3 .ff-btn-submit:hover,
.ff-form-3 .ff-btn-submit:hover {
    background: #ea580c !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4) !important;
}

#fluentform_3 .ff-btn-submit:hover::before,
.fluentform_wrapper_3 .ff-btn-submit:hover::before,
.ff-form-3 .ff-btn-submit:hover::before {
    color: white !important;
}

#fluentform_3 .ff-btn-submit:active,
.fluentform_wrapper_3 .ff-btn-submit:active,
.ff-form-3 .ff-btn-submit:active {
    transform: translateY(0) !important;
}

/* Clean Section Titles */
#fluentform_3 .ff-el-section-title,
.fluentform_wrapper_3 .ff-el-section-title,
.ff-form-3 .ff-el-section-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 24px;
    color: #1f2937;
    margin: 3rem 0 1rem 0;
    border-bottom: 2px solid #f97316;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    padding-bottom: 8px;
}

/* Simple Error Messages */
#fluentform_3 .error,
.fluentform_wrapper_3 .error,
.ff-form-3 .error {
    color: #ef4444;
    font-size: 14px;
    margin-top: 6px;
    font-weight: 500;
}

/* Simple Success Messages */
#fluentform_3 .ff-message-success,
.fluentform_wrapper_3 .ff-message-success,
.ff-form-3 .ff-message-success {
    background: #10b981;
    color: white;
    padding: 16px 20px;
    border-radius: 12px;
    margin: 2rem 0;
    font-weight: 600;
    border: none;
}

/* Clean Multi-step (if applicable) */
#fluentform_3 .ff-step-container,
.fluentform_wrapper_3 .ff-step-container,
.ff-form-3 .ff-step-container {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

#fluentform_3 .ff-step-titles,
.fluentform_wrapper_3 .ff-step-titles,
.ff-form-3 .ff-step-titles {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    gap: 1rem;
}

#fluentform_3 .ff-step-title,
.fluentform_wrapper_3 .ff-step-title,
.ff-form-3 .ff-step-title {
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    background: white;
    border: 2px solid #e5e7eb;
    color: #6b7280;
}

#fluentform_3 .ff-step-title.ff-step-active,
.fluentform_wrapper_3 .ff-step-title.ff-step-active,
.ff-form-3 .ff-step-title.ff-step-active {
    background: #f97316;
    color: white;
    border-color: #f97316;
}

/* Clean Form Row Layout */
#fluentform_3 .ff-el-form-row,
.fluentform_wrapper_3 .ff-el-form-row,
.ff-form-3 .ff-el-form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Simple Placeholder */
#fluentform_3 .ff-el-form-control::placeholder,
.fluentform_wrapper_3 .ff-el-form-control::placeholder,
.ff-form-3 .ff-el-form-control::placeholder {
    color: #9ca3af !important;
    font-weight: 400 !important;
    font-size: 16px !important;
}

/* Clean Help Text */
#fluentform_3 .ff-el-help,
.fluentform_wrapper_3 .ff-el-help,
.ff-form-3 .ff-el-help {
    font-size: 13px;
    color: #6b7280;
    margin-top: 6px;
    line-height: 1.4;
}

/* Remove All Complex Backgrounds and Effects */
#fluentform_3::before,
.fluentform_wrapper_3 .fluentform::before,
.ff-form-3::before {
    display: none;
}

/*-----------------------------------
MOBILE RESPONSIVENESS - ENHANCED
------------------------------------*/

/* Tablet Responsiveness - 2 columns for checkboxes */
@media (max-width: 768px) {
    /* Checkbox layout - 2 columns on tablets */
    #fluentform_3 .ff-el-input--content:has(.ff-el-form-check-input[type="checkbox"]),
    .fluentform_wrapper_3 .ff-el-input--content:has(.ff-el-form-check-input[type="checkbox"]),
    .ff-form-3 .ff-el-input--content:has(.ff-el-form-check-input[type="checkbox"]),
    #fluentform_3 .ff-el-group[data-type="checkbox"] .ff-el-input--content,
    .fluentform_wrapper_3 .ff-el-group[data-type="checkbox"] .ff-el-input--content,
    .ff-form-3 .ff-el-group[data-type="checkbox"] .ff-el-input--content,
    #fluentform_3 .ff-el-input--content[data-name*="player"],
    .fluentform_wrapper_3 .ff-el-input--content[data-name*="player"],
    .ff-form-3 .ff-el-input--content[data-name*="player"],
    #fluentform_3 .ff-el-input--content[data-name*="details"],
    .fluentform_wrapper_3 .ff-el-input--content[data-name*="details"],
    .ff-form-3 .ff-el-input--content[data-name*="details"],
    #fluentform_3 .ff-el-input--content:has(.ff-el-form-check:nth-child(4)),
    .fluentform_wrapper_3 .ff-el-input--content:has(.ff-el-form-check:nth-child(4)),
    .ff-form-3 .ff-el-input--content:has(.ff-el-form-check:nth-child(4)) {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px 16px !important;
    }

    /* General form adjustments */
    #fluentform_3 .ff-el-form-control,
    .fluentform_wrapper_3 .ff-el-form-control,
    .ff-form-3 .ff-el-form-control {
        height: 52px !important;
        padding: 14px 16px !important;
        font-size: 16px !important;
    }
    
    #fluentform_3 .ff-btn-submit,
    .fluentform_wrapper_3 .ff-btn-submit,
    .ff-form-3 .ff-btn-submit {
        width: 100% !important;
        padding: 16px 24px !important;
        min-width: auto !important;
    }
    
    #fluentform_3 .ff-el-form-row,
    .fluentform_wrapper_3 .ff-el-form-row,
    .ff-form-3 .ff-el-form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    #fluentform_3 .ff-step-titles,
    .fluentform_wrapper_3 .ff-step-titles,
    .ff-form-3 .ff-step-titles {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    /* Enhanced checkbox labels for tablet */
    #fluentform_3 .ff-el-form-check-label,
    .fluentform_wrapper_3 .ff-el-form-check-label,
    .ff-form-3 .ff-el-form-check-label {
        font-size: 14px !important;
        padding: 6px 10px !important;
    }
}

/* Mobile Responsiveness - 1 column for checkboxes */
@media (max-width: 480px) {
    /* Checkbox layout - 1 column on mobile */
    #fluentform_3 .ff-el-input--content:has(.ff-el-form-check-input[type="checkbox"]),
    .fluentform_wrapper_3 .ff-el-input--content:has(.ff-el-form-check-input[type="checkbox"]),
    .ff-form-3 .ff-el-input--content:has(.ff-el-form-check-input[type="checkbox"]),
    #fluentform_3 .ff-el-group[data-type="checkbox"] .ff-el-input--content,
    .fluentform_wrapper_3 .ff-el-group[data-type="checkbox"] .ff-el-input--content,
    .ff-form-3 .ff-el-group[data-type="checkbox"] .ff-el-input--content,
    #fluentform_3 .ff-el-input--content[data-name*="player"],
    .fluentform_wrapper_3 .ff-el-input--content[data-name*="player"],
    .ff-form-3 .ff-el-input--content[data-name*="player"],
    #fluentform_3 .ff-el-input--content[data-name*="details"],
    .fluentform_wrapper_3 .ff-el-input--content[data-name*="details"],
    .ff-form-3 .ff-el-input--content[data-name*="details"],
    #fluentform_3 .ff-el-input--content:has(.ff-el-form-check:nth-child(4)),
    .fluentform_wrapper_3 .ff-el-input--content:has(.ff-el-form-check:nth-child(4)),
    .ff-form-3 .ff-el-input--content:has(.ff-el-form-check:nth-child(4)) {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
    }

    /* General mobile adjustments */
    #fluentform_3 .ff-el-section-title,
    .fluentform_wrapper_3 .ff-el-section-title,
    .ff-form-3 .ff-el-section-title {
        font-size: 20px;
        margin: 2rem 0 1.5rem 0;
    }

    #fluentform_3 .ff-el-form-control,
    .fluentform_wrapper_3 .ff-el-form-control,
    .ff-form-3 .ff-el-form-control {
        height: 50px !important;
        padding: 12px 16px !important;
    }

    #fluentform_3 .ff-btn-submit::before,
    .fluentform_wrapper_3 .ff-btn-submit::before,
    .ff-form-3 .ff-btn-submit::before {
        font-size: 14px !important;
    }

    /* Enhanced checkbox labels for mobile */
    #fluentform_3 .ff-el-form-check-label,
    .fluentform_wrapper_3 .ff-el-form-check-label,
    .ff-form-3 .ff-el-form-check-label {
        padding: 6px 8px !important;
        font-size: 14px !important;
    }

    /* Mobile phone field adjustments */
    #fluentform_3 input[type="tel"].ff-el-form-control,
    .fluentform_wrapper_3 input[type="tel"].ff-el-form-control,
    .ff-form-3 input[type="tel"].ff-el-form-control {
        padding-left: 60px !important;
        text-indent: 10px !important;
    }
}

/* Focus Accessibility */
#fluentform_3 *:focus-visible,
.fluentform_wrapper_3 *:focus-visible,
.ff-form-3 *:focus-visible {
    outline: 2px solid #f97316;
    outline-offset: 2px;
}

/*-----------------------------------
Footer Section CSS
------------------------------------*/
/* Footer specific styles */
.font-bebas { 
    font-family: 'Bebas Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; 
}

.gradient-text {
    background: linear-gradient(135deg, #f97316, #ea580c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Animation for pulse effect */
@keyframes footerPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

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

/* Smooth transitions for all interactive elements */
footer a, footer button {
    transition: all 0.3s ease;
}

/* Ensure footer stays at bottom */
footer {
    margin-top: auto;
}

/* Mobile responsiveness improvements */
@media (max-width: 768px) {
    footer .grid {
        gap: 2rem;
    }
    
    footer .lg\\:col-span-2 {
        grid-column: span 1;
    }
    
    /* Ensure floating buttons don't overlap footer */
    footer {
        padding-bottom: 80px;
    }
}

/* Prevent footer from overlapping content */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* Floating WhatsApp Button CSS */
.floating-whatsapp-container {
    position: fixed;
    z-index: 9999;
    right: 20px;
    bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    pointer-events: auto;
}

.whatsapp-text {
    background: white;
    color: #333333;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    border: 1px solid #e5e7eb;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.floating-whatsapp-container:hover .whatsapp-text {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-fab {
    fill: white;
    width: 56px;
    height: 56px;
    padding: 8px;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    display: block;
    text-decoration: none;
    pointer-events: auto;
}

.whatsapp-fab:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    transform: scale(1.05);
    text-decoration: none;
}

.whatsapp-ico {
    width: 100%;
    height: 100%;
}

/* Pulse animation */
@keyframes pulse-whatsapp {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

.whatsapp-fab.pulse {
    animation: pulse-whatsapp 2s ease-in-out infinite;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .floating-whatsapp-container {
        right: 15px;
        bottom: 15px;
        gap: 8px;
    }
    
    .whatsapp-fab {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-text {
        font-size: 13px;
        padding: 6px 12px;
    }
}

/* Very small mobile screens */
@media (max-width: 480px) {
    .whatsapp-text {
        display: none;
    }
    
    footer {
        padding-bottom: 70px;
    }
}

/* Floating buttons positioning */
.floating-whatsapp-container {
    z-index: 1000;
}

#scrollToTopBtn {
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 999;
}

/* Bottom Copyright Bar */
.bottom-copyright-bar {
    background: #111827;
}

.copyright-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.copyright-text {
    flex: 1;
    text-align: left;
}

.copyright-p {
    color: #9CA3AF;
    font-size: 13px;
    margin: 0;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.layood-link {
    color: #f97316;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.layood-link:hover {
    color: #ea580c;
}

.policy-link {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-link:hover {
    color: #f97316;
}

.scroll-top-btn {
    width: 44px;
    height: 44px;
    background-color: #f97316;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    flex-shrink: 0;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.scroll-top-btn.show {
    opacity: 0.9;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background-color: #ea580c;
    transform: scale(1.1);
    opacity: 1 !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* Mobile responsive for bottom bar */
@media (max-width: 768px) {
    .copyright-container {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    .copyright-text {
        text-align: center;
    }

    .copyright-p {
        font-size: 11px;
        white-space: normal;
        overflow: visible;
        text-overflow: initial;
    }

    .scroll-top-btn {
        width: 40px;
        height: 40px;
    }

    #scrollToTopBtn {
        bottom: 80px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .copyright-p {
        font-size: 10px;
    }

    #scrollToTopBtn {
        bottom: 75px;
        right: 15px;
    }
}