/* Extracted page styles — submit-salon-95d9748e.css (v110) */
/* Modern Breadcrumbs */
        .breadcrumbs-modern {
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
            padding: 0.5rem 1rem;
            background: linear-gradient(135deg, #ffffff, #f8f5f2);
            border-radius: 50px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
            margin-bottom: 1.5rem;
        }

        .breadcrumbs-modern a,
        .breadcrumbs-modern span {
            font-size: 0.85rem;
            text-decoration: none;
            color: #78716C;
            padding: 0.35rem 0.75rem;
            border-radius: 20px;
            transition: all 0.2s ease;
            font-weight: 500;
        }

        .breadcrumbs-modern a:hover {
            background: rgba(139, 92, 78, 0.1);
            color: #8B5C4E;
        }

        .breadcrumbs-modern .separator {
            color: #D4D4D4;
            padding: 0 0.25rem;
            font-size: 0.75rem;
        }

        .breadcrumbs-modern .current {
            background: linear-gradient(135deg, #8B5C4E, #8B5C4E);
            color: white;
        }

        /* Hero Banner */
        .submit-hero {
            background: linear-gradient(135deg, #4A1F40, #6B2D5B);
            color: white;
            padding: 3rem 0;
            text-align: center;
            margin-bottom: 2rem;
        }

        .submit-hero h1 {
            color: white;
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
        }

        .submit-hero p {
            color: rgba(255, 255, 255, 0.85);
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Benefits */
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0 3rem;
        }

        .benefit-card {
            text-align: center;
            padding: 1.5rem;
            background: white;
            border-radius: 16px;
            border: 1px solid #E7E5E4;
        }

        .benefit-card__icon {
            font-size: 2rem;
            margin-bottom: 0.75rem;
        }

        .benefit-card h3 {
            font-size: 1rem;
            margin-bottom: 0.5rem;
        }

        .benefit-card p {
            font-size: 0.9rem;
            color: #78716C;
            margin: 0;
        }

        /* Form Container */
        .form-container {
            max-width: 700px;
            margin: 0 auto 3rem;
            padding: 2.5rem;
            background: white;
            border-radius: 20px;
            border: 1px solid #E7E5E4;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
        }

        .form-section-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #1A1A2E;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #F5EBE0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        @media (max-width: 600px) {
            .form-row {
                grid-template-columns: 1fr;
            }

            .form-container {
                padding: 1.5rem;
                margin: 0 1rem 2rem;
            }
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #1A1A2E;
            font-size: 0.95rem;
        }

        .form-label .required {
            color: #E53E3E;
        }

        .form-input,
        .form-textarea,
        .form-select {
            width: 100%;
            padding: 0.875rem 1rem;
            border: 2px solid #E7E5E4;
            border-radius: 12px;
            font-family: inherit;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: #FAFAF9;
        }

        .form-input:focus,
        .form-textarea:focus,
        .form-select:focus {
            outline: none;
            border-color: #8B5C4E;
            background: white;
            box-shadow: 0 0 0 4px rgba(139, 92, 78, 0.1);
        }

        .form-textarea {
            resize: vertical;
            min-height: 120px;
        }

        /* Services Checkboxes */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 0.75rem;
            margin-top: 0.75rem;
        }

        .service-checkbox {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1rem;
            background: #FAFAF9;
            border: 2px solid #E7E5E4;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .service-checkbox:hover {
            border-color: #D4A855;
            background: #FFF8E8;
        }

        .service-checkbox input {
            width: 18px;
            height: 18px;
            accent-color: #8B5C4E;
        }

        .service-checkbox input:checked+span {
            color: #8B5C4E;
            font-weight: 600;
        }

        .service-checkbox span {
            font-size: 0.95rem;
            color: #44403C;
        }

        /* Privacy Consent */
        .form-checkbox {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            padding: 1rem;
            background: #F5EBE0;
            border-radius: 12px;
            margin-bottom: 1.5rem;
        }

        .form-checkbox input {
            width: 20px;
            height: 20px;
            margin-top: 2px;
            accent-color: #8B5C4E;
        }

        .form-checkbox label {
            font-size: 0.9rem;
            color: #44403C;
            line-height: 1.5;
        }

        .form-checkbox a {
            color: #8B5C4E;
        }

        /* Submit Button */
        .submit-btn {
            width: 100%;
            padding: 1rem 2rem;
            background: linear-gradient(135deg, #4A1F40, #6B2D5B);
            color: white;
            border: none;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(74, 31, 64, 0.4);
        }

        .submit-btn:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none;
        }

        .submit-btn .spinner {
            width: 20px;
            height: 20px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-top-color: white;
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
            display: none;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        /* Form Messages */
        .form-message {
            padding: 1rem 1.5rem;
            border-radius: 12px;
            margin-bottom: 1.5rem;
            display: none;
        }

        .form-message.success {
            background: #E8F5E9;
            color: #2E7D32;
            border: 1px solid #A5D6A7;
            display: block;
        }

        .form-message.error {
            background: #FFEBEE;
            color: #C62828;
            border: 1px solid #EF9A9A;
            display: block;
        }

        /* Featured CTA */
        .featured-cta {
            background: linear-gradient(135deg, #D4A855, #B8942E);
            padding: 2rem;
            border-radius: 16px;
            text-align: center;
            color: white;
            margin-top: 2rem;
        }

        .featured-cta h3 {
            color: white;
            margin-bottom: 0.5rem;
        }

        .featured-cta p {
            margin-bottom: 1rem;
            opacity: 0.9;
        }

        .featured-cta .btn {
            background: white;
            color: #B8942E;
            font-weight: 600;
        }

        /* Honeypot */
        .hp-field {
            position: absolute;
            left: -9999px;
        }
